]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/y.cpp
3d845823460b0b2c678cdbb72536a80fa94b5247
[z.facultad/75.42/plaqui.git] / Constructor / y.cpp
1 #include "y.h"
2
3 Y::Y()
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 Y::~Y()
16 {
17 }
18
19 bool Y::on_button_press_event(GdkEventButton *event)
20 {
21         if (event->type == GDK_2BUTTON_PRESS){
22                 image = null;  //como hago para actualizar?????
23                 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);
24                 imgActual++;
25                 switch (imgActual) {
26                         case 1:
27                                 image = imageE;
28                                 break;
29                         case 2:
30                                 image = imageS;
31                                 break;
32                         case 3:
33                                 image = imageO;
34                                 break;
35                         default: 
36                                 imgActual = 0;
37                                 image = imageN;                 
38                 }
39                 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);
40         }
41         return true;
42 }