2 #include "item_union.h"
5 ViewUnion::ViewUnion(Glib::ustring _name, int orientacion):ViewItem(_name)
9 image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_n.png");
12 image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_e.png");
15 image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_s.png");
18 image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_o.png");
25 ViewUnion::~ViewUnion()
29 bool ViewUnion::on_image_expose_event(GdkEventExpose *e)
31 Glib::RefPtr<Gdk::Colormap> colormap = image.get_colormap();
32 Gdk::Color blanco = Gdk::Color("white");
33 colormap->alloc_color(color);
34 colormap->alloc_color(blanco);
35 gc->set_foreground(color);
36 gc->set_background(color);
38 w = image.get_width();
39 h = image.get_height();
42 image.get_window()->draw_rectangle(gc, 1, w/2-2, h/2, 4, h/2);
43 gc->set_foreground(blanco);
44 image.get_window()->draw_rectangle(gc, 0, w/2-3, h/2-1, 6, h/2);
47 image.get_window()->draw_rectangle(gc, 1, 0, h/2-2, w/2, 4);
50 image.get_window()->draw_rectangle(gc, 1, w/2-2, 0, 4, h/2);
53 image.get_window()->draw_rectangle(gc, 1, w/2, h/2-2, w/2, 4);