]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/src/not.cpp
2a4b277e2f9ce09103ffbacbb98a23544cd4d51d
[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
24         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
25                 CItem::logic_connect = true;
26                 CItem::gate_id = ID;
27                 combo_entry->set_text(name);
28                 WorkPlace::pointed = ID;
29         }
30         
31         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
32                 image = null;   
33                 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);
34                 imgActual++;
35                 switch (imgActual) {
36                         case 1:
37                                 image = imageS;
38                                 break;
39                         case 2:
40                                 image = imageO;
41                                 break;
42                         case 3:
43                                 image = imageN;
44                                 break;
45                         default: 
46                                 imgActual = 0;
47                                 image = imageE;                 
48                 }
49                 set_size_request(image->get_width(),image->get_height());
50                 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);
51         }
52         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
53                 menu_popup.popup(event->button, event->time);
54                  return true; //It has been handled.
55         }
56         workplace->queue_draw();
57         return true;
58 }
59 void Not::on_menu_popup_rotar()
60 {
61         GdkEventButton event; 
62         event.type = GDK_BUTTON_PRESS;
63         event.button = 2;
64         Not::on_button_press_event(&event);
65 }
66
67 void Not::save(FILE *archivo)
68 {
69
70 }
71
72
73 // CAMBIAR TODO ESTO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
74 bool Not::check_connection()
75 {
76 /*      switch (get_img_actual()) {
77                         case 0:
78                                 if ( is_other_connection_area( get_position_x()-5, get_position_y()+16) && 
79                                          is_other_connection_area( get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5) )
80                                         return true;                            
81                                 break;  
82                         case 1:
83                                 if ( is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5) && 
84                                          is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16) )
85                                         return true;
86                                 break;
87                         case 2:
88                                 if ( is_other_connection_area( get_position_x() + 16, get_position_y() -5) &&
89                                          is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16) )
90                                         return true;
91                                 break;
92                         case 3:
93                                 if ( is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16) &&
94                                          is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5) )
95                                         return true;
96         }
97         return false;*/
98         return true;
99 }