]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/cistern.cpp
algunos cambios menores
[z.facultad/75.42/plaqui.git] / Constructor / cistern.cpp
1 #include "cistern.h"
2 #include "cisternptywnd.h"
3
4 Cistern::Cistern()
5 {
6         imageE = Gdk::Pixbuf::create_from_file("tanque_e.png");
7         imageO = Gdk::Pixbuf::create_from_file("tanque_o.png");
8         null = Gdk::Pixbuf::create_from_file("tanque_null.png");
9         imgActual = 0;
10         image = imageE;
11         set_size_request(image->get_width(), image->get_height());
12
13         Glib::RefPtr<Gnome::Glade::Xml> ref = Gnome::Glade::Xml::create("constructor.glade", "cistern_pty_wnd");
14         ref->get_widget_derived("cistern_pty_wnd",cistern_pty_wnd);
15         cistern_pty_wnd->cistern = this;
16         cistern_pty_wnd->set_title("Propiedades del Tanque");   
17 }
18
19 Cistern::~Cistern()
20 {
21 }
22
23 bool Cistern::on_button_press_event(GdkEventButton *event)
24 {
25         if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
26                 image = null; 
27                 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
28                 imgActual++;
29                 switch (imgActual) {
30                         case 1:
31                                 image = imageO;
32                                 break;
33                         default: 
34                                 imgActual = 0;
35                                 image = imageE;                 
36                 }
37                 set_size_request(image->get_width(),image->get_height());
38                 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
39         }
40         
41         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
42                 menu_popup.popup(event->button, event->time);
43                  return true; //It has been handled.
44         }
45         
46         if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
47                 cistern_pty_wnd->spin_capacidad->set_value( capacidad );
48                 cistern_pty_wnd->spin_inicial->set_value( contenido_inicial );
49                 cistern_pty_wnd->txt_cistern_name->set_text( name );
50                 cistern_pty_wnd->show();
51         }               
52         return true;
53 }
54
55 void Cistern::on_menu_popup_rotar()
56 {
57         GdkEventButton event; 
58                 event.type = GDK_BUTTON_PRESS;
59                 event.button = 2;
60         Cistern::on_button_press_event(&event);
61 }
62
63 void Cistern::on_menu_popup_propiedades()
64 {
65         GdkEventButton event; 
66                 event.type = GDK_2BUTTON_PRESS;
67                 event.button = 1;
68         Cistern::on_button_press_event(&event);
69 }
70
71 void Cistern::set_capacidad(double _cap)
72 {
73         capacidad = _cap;
74 }
75
76 double Cistern::get_capacidad()
77 {
78         return capacidad;
79 }
80
81 void Cistern::set_contenido_inicial(double _ini)
82 {
83         contenido_inicial = _ini;
84 }
85
86 double Cistern::get_contenido_inicial()
87 {
88         return contenido_inicial;
89 }