X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/43fc1b3f57852f2af098fa7411e83220015aaa6f..179b67ed3b055a4c0b9014928724f34480bd03e7:/Client/src/item_conduct.cpp diff --git a/Client/src/item_conduct.cpp b/Client/src/item_conduct.cpp index a5dd59d..8f070a2 100644 --- a/Client/src/item_conduct.cpp +++ b/Client/src/item_conduct.cpp @@ -4,12 +4,13 @@ ViewConduct::ViewConduct(Glib::ustring _name, int orientacion):ViewItem(_name) { switch (orientacion) { - case 0: - image.set("canio_n.png"); + case 0: // Caño vertical + image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/canio_n.png"); break; - case 1: - image.set("canio_s.png"); + case 1: // Caño horizontal + image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/canio_s.png"); } + m_or = orientacion; image.show(); set_size_request(); } @@ -18,3 +19,26 @@ ViewConduct::~ViewConduct() { } +bool ViewConduct::on_image_expose_event(GdkEventExpose *e) +{ + Glib::RefPtr colormap = image.get_colormap(); + Gdk::Color blanco = Gdk::Color("white"); + colormap->alloc_color(blanco); + colormap->alloc_color(color); + gc->set_foreground(color); + gc->set_background(color); + int w,h; + w = image.get_width(); + h = image.get_height(); + if (actual_flow == 0) return true; + switch (m_or) { + case 0: // Vertical + image.get_window()->draw_rectangle(gc, 1, w/2-3, 0, 6, h); + break; + case 1: // Horizontal + image.get_window()->draw_rectangle(gc, 1, 0, h/2-3, w, 6); + } + return true; +} + +