]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/or.cpp
para que lo vean
[z.facultad/75.42/plaqui.git] / Constructor / or.cpp
1 #include "or.h"
2
3 Or::Or()
4 {
5         imageN = Gdk::Pixbuf::create_from_file("or_n.png");
6         imageS = Gdk::Pixbuf::create_from_file("or_s.png");
7         imageE = Gdk::Pixbuf::create_from_file("or_e.png");
8         imageO = Gdk::Pixbuf::create_from_file("or_o.png");
9         null = Gdk::Pixbuf::create_from_file("null.png");
10         imgActual = 0;
11         image = imageE;
12         set_size_request(image->get_width(), image->get_height());
13         name = "or";
14         menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
15 }
16
17 Or::~Or()
18 {
19 }
20
21 bool Or::on_button_press_event(GdkEventButton *event)
22 {
23         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
24                 std::cout<<ID<<std::endl;
25                 combo_entry->set_text(name);
26         }
27         
28         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
29                 image = null;   
30                 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);
31                 imgActual++;
32                 switch (imgActual) {
33                         case 1:
34                                 image = imageS;
35                                 break;
36                         case 2:
37                                 image = imageO;
38                                 break;
39                         case 3:
40                                 image = imageN;
41                                 break;
42                         default: 
43                                 imgActual = 0;
44                                 image = imageE;                 
45                 }
46                 set_size_request(image->get_width(),image->get_height());
47                 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);
48         }
49         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
50                 menu_popup.popup(event->button, event->time);
51                  return true; //It has been handled.
52         }
53         return true;
54 }
55
56 void Or::on_menu_popup_rotar()
57 {
58         GdkEventButton event; 
59         event.type = GDK_BUTTON_PRESS;
60         event.button = 2;
61         Or::on_button_press_event(&event);
62 }
63
64 void Or::on_menu_popup_conectar()
65 {
66         CItem::logic_connect = true;
67         CItem::quien = ID;      
68 }
69
70 void Or::save(FILE *archivo)
71 {
72
73 }
74
75 bool Or::check_connection()
76 {
77         return true;
78 }