5 imageN = Gdk::Pixbuf::create_from_file("codo_n.png");
6 imageS = Gdk::Pixbuf::create_from_file("codo_s.png");
7 imageE = Gdk::Pixbuf::create_from_file("codo_e.png");
8 imageO = Gdk::Pixbuf::create_from_file("codo_o.png");
9 null = Gdk::Pixbuf::create_from_file("null.png");
12 set_size_request(image->get_width(), image->get_height());
19 bool Codo::on_button_press_event(GdkEventButton *event)
21 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
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);
39 set_size_request(image->get_width(),image->get_height());
40 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);
42 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
43 menu_popup.popup(event->button, event->time);
44 return true; //It has been handled.
48 void Codo::on_menu_popup_generic()
51 event.type = GDK_BUTTON_PRESS;
53 Codo::on_button_press_event(&event);