switch (orientacion) {
case 0:
image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/exclusa_h.png");
+ in_x = 32;
+ in_y = 0;
+ out_x = 32;
+ out_y = 32;
+ offset_x = 0;
+ offset_y = 0;
+ item_offset_x = 0;
+ item_offset_y = -15;
break;
case 1:
image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/exclusa_s.png");
+ in_x = 32;
+ in_y = 32;
+ out_x = 0;
+ out_y = 32;
+ offset_x = 0;
+ offset_y = 0;
+ item_offset_x = 0;
+ item_offset_y = 15;
}
+ m_or = orientacion;
image.show();
set_size_request();
}
{
}
+bool ViewExclusa::on_image_expose_event(GdkEventExpose *e)
+{
+ Glib::RefPtr<Gdk::Colormap> colormap = image.get_colormap();
+ colormap->alloc_color(color);
+ gc->set_foreground(color);
+ gc->set_background(color);
+ int w,h;
+ w = image.get_width();
+ h = image.get_height();
+ switch (m_or) {
+ case 1: // Vertical
+ image.get_window()->draw_rectangle(gc, 1, w/2-2, 0, 4, h);
+ break;
+ case 0: // Horizontal
+ image.get_window()->draw_rectangle(gc, 1, 0, h/2-2, w, 4);
+ }
+}
+