imageO = Gdk::Pixbuf::create_from_file("codo_o.png");
null = Gdk::Pixbuf::create_from_file("null.png");
imgActual = 0;
- image = imageN;
+ image = imageO;
set_size_request(image->get_width(), image->get_height());
}
bool Codo::on_button_press_event(GdkEventButton *event)
{
- if (event->type == GDK_2BUTTON_PRESS){
- 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) {
imgActual = 0;
image = imageN;
}
+ set_size_request(image->get_width(),image->get_height());
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;
}