]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - 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
1
2 #include "item_exclusa.h"
3
4 ViewExclusa::ViewExclusa(Glib::ustring _name, int orientacion):ViewItem(_name)
5 {
6         switch (orientacion) {
7                 case 0:
8                         image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/exclusa_h.png");
9                 break;
10                 case 1:
11                         image.set(PACKAGE_DATA_DIR"/plaqui-client/pixmaps/exclusa_s.png");
12         }
13         m_or = orientacion;
14         image.show();
15         set_size_request();
16 }
17
18 ViewExclusa::~ViewExclusa()
19 {
20 }
21
22 bool ViewExclusa::on_image_expose_event(GdkEventExpose *e)
23 {
24         Glib::RefPtr<Gdk::Colormap> colormap = image.get_colormap();
25         colormap->alloc_color(color);
26         gc->set_foreground(color);
27         gc->set_background(color);
28         int w,h;
29         w = image.get_width();
30         h = image.get_height();
31         switch (m_or) {
32                 case 1: // Vertical
33                         image.get_window()->draw_rectangle(gc, 1, w/2-2, 0, 4, h);
34                 break;
35                 case 0: // Horizontal
36                         image.get_window()->draw_rectangle(gc, 1, 0, h/2-2, w, 4);
37         }
38 }
39