X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e5f9e15b59fc1ade287321c796ec7c4b9aa27600..60d025bd1152960ac9131128c7cea2b7af8a406e:/Constructor/y.cpp diff --git a/Constructor/y.cpp b/Constructor/y.cpp index 3d84582..9c4e197 100644 --- a/Constructor/y.cpp +++ b/Constructor/y.cpp @@ -18,8 +18,9 @@ Y::~Y() bool Y::on_button_press_event(GdkEventButton *event) { - if (event->type == GDK_2BUTTON_PRESS){ - image = null; //como hago para actualizar????? + int w,h; + 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) { @@ -36,7 +37,13 @@ bool Y::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); } + if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){ + menu_popup.popup(event->button, event->time); + return true; //It has been handled. + } return true; }