]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Client/src/item_codo.cpp
despues de estar como un pelotudo buscando el error, lo encontre, era un == ( yo...
[z.facultad/75.42/plaqui.git] / Client / src / item_codo.cpp
1
2 #include "item_codo.h"
3
4 ViewCodo::ViewCodo(Glib::ustring _name, int orientacion):ViewItem(_name)
5 {
6         switch (orientacion) {
7                 case 0:
8                         image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/codo_o.png");
9                 break;
10                 case 1:
11                         image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/codo_n.png");
12                 break;
13                 case 2:
14                         image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/codo_e.png");
15                 break;
16                 case 3:
17                         image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/codo_s.png");
18         }
19         m_or = orientacion;
20         image.show();
21         set_size_request();
22 }
23
24 ViewCodo::~ViewCodo()
25 {
26 }
27
28 bool ViewCodo::on_image_expose_event(GdkEventExpose *e)
29 {
30         Glib::RefPtr<Gdk::Colormap> colormap = Gtk::Widget::get_default_colormap();
31         Gdk::Color blanco = Gdk::Color("white");
32         colormap->alloc_color(color);
33         gc->set_foreground(color);
34         gc->set_background(color);
35         gc->set_line_attributes(6, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER);
36         int w,h;
37         w = image.get_width();
38         h = image.get_height();
39         // TODO : hacer que dibuje arcos en el sentido del codo!
40         if (actual_flow == 0) return true;
41         switch (m_or) {
42                 case 0:
43                         image.get_window()->draw_arc(gc, 0, -16, 16, w, h, 0, 90*64);
44                         image.get_window()->draw_line(gc, 0, 16, 16, 16);
45                         image.get_window()->draw_line(gc, 64-16, 64-16, 64-16, 64);
46                 break;
47                 case 1:
48                         image.get_window()->draw_arc(gc, 0, -16, -16, w, h, 0*64, -90*64);
49                         image.get_window()->draw_line(gc, 64-16, 0, 64-16, 16);
50                         image.get_window()->draw_line(gc, 0, 64-16, 16, 64-16);
51                 break;
52                 case 2:
53                         image.get_window()->draw_arc(gc, 0, 16, -16, w, h, -90*64, -90*64);
54                         image.get_window()->draw_line(gc, 16, 0, 16, 16);
55                         image.get_window()->draw_line(gc, 64-16, 64-16, 64, 64-16);
56                 break;
57                 case 3:
58                         image.get_window()->draw_arc(gc, 0, 16, 16, w, h, 90*64, 90*64);
59                         image.get_window()->draw_line(gc, 16, 64-16, 16, 64);
60                         image.get_window()->draw_line(gc, 64-16, 16, 64, 16);
61         }
62         return true;
63 }
64