]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/src/not.cpp
-se pueden tirar cables de una manera mas comoda pero como diria TU SAM puede fallar...
[z.facultad/75.42/plaqui.git] / Constructor / src / not.cpp
1 #include "not.h"
2
3 Not::Not()
4 {
5         imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_n.png");
6         imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_s.png");
7         imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_e.png");
8         imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_o.png");
9         null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
10         imgActual = 0;
11         image = imageE;
12         set_size_request(image->get_width(), image->get_height());
13         name = "not";
14         menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
15 }
16
17 Not::~Not()
18 {
19 }
20
21 bool Not::on_button_press_event(GdkEventButton *event)
22 {
23         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
24                 if (CItem::logic_connect)
25                         CItem::gate_id = ID;
26                 combo_entry->set_text(name);
27                 WorkPlace::pointed = ID;
28         }
29         
30         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
31                 image = null;   
32                 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
33                 imgActual++;
34                 switch (imgActual) {
35                         case 1:
36                                 image = imageS;
37                                 break;
38                         case 2:
39                                 image = imageO;
40                                 break;
41                         case 3:
42                                 image = imageN;
43                                 break;
44                         default: 
45                                 imgActual = 0;
46                                 image = imageE;                 
47                 }
48                 set_size_request(image->get_width(),image->get_height());
49                 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
50         }
51         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
52                 menu_popup.popup(event->button, event->time);
53                  return true; //It has been handled.
54         }
55         workplace->queue_draw();
56         return true;
57 }
58 void Not::on_menu_popup_rotar()
59 {
60         GdkEventButton event; 
61         event.type = GDK_BUTTON_PRESS;
62         event.button = 2;
63         Not::on_button_press_event(&event);
64 }
65
66 void Not::save(FILE *archivo)
67 {
68
69 }
70
71
72 // CAMBIAR TODO ESTO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
73 bool Not::check_connection()
74 {
75 /*      switch (get_img_actual()) {
76                         case 0:
77                                 if ( is_other_connection_area( get_position_x()-5, get_position_y()+16) && 
78                                          is_other_connection_area( get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5) )
79                                         return true;                            
80                                 break;  
81                         case 1:
82                                 if ( is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5) && 
83                                          is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16) )
84                                         return true;
85                                 break;
86                         case 2:
87                                 if ( is_other_connection_area( get_position_x() + 16, get_position_y() -5) &&
88                                          is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16) )
89                                         return true;
90                                 break;
91                         case 3:
92                                 if ( is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16) &&
93                                          is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5) )
94                                         return true;
95         }
96         return false;*/
97         return true;
98 }