]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/y.cpp
Me vuelvo loco cd Constructor/cd Constructor/ pero hubo una regresion, para rotar...
[z.facultad/75.42/plaqui.git] / Constructor / y.cpp
index 71e2367a91c19ad51b03c3a8dae24307a867b117..9c4e19728eb83a8cbd094afdbb335b7d109f2c38 100644 (file)
@@ -19,8 +19,8 @@ Y::~Y()
 bool Y::on_button_press_event(GdkEventButton *event)
 {
        int w,h;
-       if ((event->type == GDK_BUTTON_PRESS) && (event->button == 3 )){
-               image = null;  //como hago para actualizar?????
+       if ((event->type == GDK_BUTTON_PRESS) && (event->button == 2 )){
+               image = null;   
                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);
                imgActual++;
                switch (imgActual) {
@@ -41,5 +41,9 @@ bool Y::on_button_press_event(GdkEventButton *event)
                set_size_request(h, w);         
                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);
        }
+       if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
+               menu_popup.popup(event->button, event->time);
+                return true; //It has been handled.
+       }
        return true;
 }