]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/src/item_union.cpp
* Se agrega dialogo de propiedades para setear la velocidad de actualizacion
[z.facultad/75.42/plaqui.git] / Client / src / item_union.cpp
index 814bb2b7593deb06bf7f75de68a217448279f8e6..08bad4ed80fa04d59b7e7e85b47eca2826fb9ab5 100644 (file)
@@ -6,17 +6,18 @@ ViewUnion::ViewUnion(Glib::ustring _name, int orientacion):ViewItem(_name)
 {
        switch (orientacion) {
                case 0:
 {
        switch (orientacion) {
                case 0:
-                       image.set("y_n.png");
+                       image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_n.png");
                break;
                case 1:
                break;
                case 1:
-                       image.set("y_e.png");
+                       image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_e.png");
                break;
                case 2:
                break;
                case 2:
-                       image.set("y_s.png");
+                       image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_s.png");
                break;
                case 3:
                break;
                case 3:
-                       image.set("y_o.png");
+                       image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/y_o.png");
        }
        }
+       m_or = orientacion;
        image.show();
        set_size_request();
 }
        image.show();
        set_size_request();
 }
@@ -25,3 +26,31 @@ ViewUnion::~ViewUnion()
 {
 }
 
 {
 }
 
+bool ViewUnion::on_image_expose_event(GdkEventExpose *e)
+{
+       Glib::RefPtr<Gdk::Colormap> colormap = image.get_colormap();
+       Gdk::Color blanco = Gdk::Color("white");
+       colormap->alloc_color(color);
+       colormap->alloc_color(blanco);
+       gc->set_foreground(color);
+       gc->set_background(color);
+       int w,h;
+       w = image.get_width();
+       h = image.get_height();
+       switch (m_or) {
+               case 0:
+                       image.get_window()->draw_rectangle(gc, 1, w/2-2, h/2, 4, h/2);
+                       gc->set_foreground(blanco);
+                       image.get_window()->draw_rectangle(gc, 0, w/2-3, h/2-1, 6, h/2);
+               break;
+               case 1:
+                       image.get_window()->draw_rectangle(gc, 1, 0, h/2-2, w/2, 4);
+               break;
+               case 2:
+                       image.get_window()->draw_rectangle(gc, 1, w/2-2, 0, 4, h/2);
+               break;
+               case 3:
+                       image.get_window()->draw_rectangle(gc, 1, w/2, h/2-2, w/2, 4);
+       }
+}
+