]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/union.cpp
le cambie el nombre a las clases y a los archivos y ahora el popup anda bien, rotar...
[z.facultad/75.42/plaqui.git] / Constructor / union.cpp
1 #include "union.h"
2
3 Union::Union()
4 {
5         imageN = Gdk::Pixbuf::create_from_file("y_n.png");
6         imageS = Gdk::Pixbuf::create_from_file("y_s.png");
7         imageE = Gdk::Pixbuf::create_from_file("y_e.png");
8         imageO = Gdk::Pixbuf::create_from_file("y_o.png");
9         null = Gdk::Pixbuf::create_from_file("null.png");
10         imgActual = 0;
11         image = imageN;
12         set_size_request(image->get_width(), image->get_height());
13 }
14
15 Union::~Union()
16 {
17 }
18
19 bool Union::on_button_press_event(GdkEventButton *event)
20 {
21         int w,h;
22         if ((event->type == GDK_BUTTON_PRESS) && (event->button == 2 )){
23                 image = null;   
24                 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);
25                 imgActual++;
26                 switch (imgActual) {
27                         case 1:
28                                 image = imageE;
29                                 break;
30                         case 2:
31                                 image = imageS;
32                                 break;
33                         case 3:
34                                 image = imageO;
35                                 break;
36                         default: 
37                                 imgActual = 0;
38                                 image = imageN;                 
39                 }
40                 get_size_request(w, h);
41                 set_size_request(h, w);         
42                 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);
43         }
44         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
45                 menu_popup.popup(event->button, event->time);
46                  return true; //It has been handled.
47         }
48         return true;
49 }
50
51 void Union::on_menu_popup_rotar()
52 {
53         GdkEventButton event; 
54                 event.type = GDK_BUTTON_PRESS;
55                 event.button = 2;
56         Union::on_button_press_event(&event);
57 }
58
59 void Union::on_menu_popup_eliminar()
60 {
61 }