]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/src/item_exclusa.cpp
Se mejora el codo (para que el color siga la curva).
[z.facultad/75.42/plaqui.git] / Client / src / item_exclusa.cpp
index aac6a1dba77270c9328522668a153cd5aa3b3357..39f2a880b2ca8d9f866697feb7d996899e8a8b6f 100644 (file)
@@ -5,11 +5,12 @@ ViewExclusa::ViewExclusa(Glib::ustring _name, int orientacion):ViewItem(_name)
 {
        switch (orientacion) {
                case 0:
-                       image.set("exclusa_h.png");
+                       image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/exclusa_h.png");
                break;
                case 1:
-                       image.set("exclusa_s.png");
+                       image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/exclusa_s.png");
        }
+       m_or = orientacion;
        image.show();
        set_size_request();
 }
@@ -18,3 +19,21 @@ ViewExclusa::~ViewExclusa()
 {
 }
 
+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);
+       }
+}
+