]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/src/item_codo.cpp
* Se agrega dialogo de propiedades para setear la velocidad de actualizacion
[z.facultad/75.42/plaqui.git] / Client / src / item_codo.cpp
index 639e63566cc37df869f9d728a95e9d32470287b2..ce0f2b5ce4dfde7e1b2f27297c1cb42c0f1ab1bf 100644 (file)
@@ -16,6 +16,7 @@ ViewCodo::ViewCodo(Glib::ustring _name, int orientacion):ViewItem(_name)
                case 3:
                        image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/codo_s.png");
        }
+       m_or = orientacion;
        image.show();
        set_size_request();
 }
@@ -24,3 +25,43 @@ ViewCodo::~ViewCodo()
 {
 }
 
+bool ViewCodo::on_image_expose_event(GdkEventExpose *e)
+{
+       Glib::RefPtr<Gdk::Colormap> colormap = image.get_colormap();
+       Gdk::Color blanco = Gdk::Color("white");
+       colormap->alloc_color(blanco);
+       colormap->alloc_color(color);
+       gc->set_foreground(blanco);
+       gc->set_background(blanco);
+       gc->set_line_attributes(6, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
+       int w,h;
+       w = image.get_width();
+       h = image.get_height();
+       // TODO : hacer que dibuje arcos en el sentido del codo!
+       switch (m_or) {
+               case 0:
+                       image.get_window()->draw_arc(gc, 0, -16, 16, w, h, 0, 90*64);
+                       gc->set_line_attributes(4, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
+                       gc->set_foreground(color);
+                       image.get_window()->draw_arc(gc, 0, -16, 16, w, h, 0, 90*64);
+               break;
+               case 1:
+                       image.get_window()->draw_arc(gc, 0, -16, -16, w, h, 0*64, -90*64);
+                       gc->set_line_attributes(4, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
+                       gc->set_foreground(color);
+                       image.get_window()->draw_arc(gc, 0, -16, -16, w, h, 0*64, -90*64);
+               break;
+               case 2:
+                       image.get_window()->draw_arc(gc, 0, 16, -16, w, h, -90*64, -90*64);
+                       gc->set_line_attributes(4, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
+                       gc->set_foreground(color);
+                       image.get_window()->draw_arc(gc, 0, 16, -16, w, h, -90*64, -90*64);
+               break;
+               case 3:
+                       image.get_window()->draw_arc(gc, 0, 16, 16, w, h, 90*64, 90*64);
+                       gc->set_line_attributes(4, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
+                       gc->set_foreground(color);
+                       image.get_window()->draw_arc(gc, 0, 16, 16, w, h, 90*64, 90*64);
+       }
+}
+