]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/canio.cpp
ahi creo que sale andando
[z.facultad/75.42/plaqui.git] / Constructor / canio.cpp
index 387ce3101e6ad36d248548e16d82576ca26b728f..47c1450d72f0fc332ba2709339be30b952b5b539 100644 (file)
@@ -16,7 +16,8 @@ Canio::~Canio()
 
 bool Canio::on_button_press_event(GdkEventButton *event)
 {
-       if (event->type == GDK_2BUTTON_PRESS){
+       int w, h;
+       if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==3)){
                image = null;  //como hago para actualizar?????
                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++;
@@ -28,6 +29,8 @@ bool Canio::on_button_press_event(GdkEventButton *event)
                                imgActual = 0;
                                image = imageN;                 
                }
+               get_size_request(w, h);
+               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);
        }
        return true;