]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/cistern.cpp
ya no me acuerdo ni que cambie, pero va tomando forma esto, si el circuito que se...
[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 == 1))
26                 combo_entry->set_text(name);
27         
28         if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
29                 image = null; 
30                 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);
31                 imgActual++;
32                 switch (imgActual) {
33                         case 1:
34                                 image = imageO;
35                                 break;
36                         default: 
37                                 imgActual = 0;
38                                 image = imageE;                 
39                 }
40                 set_size_request(image->get_width(),image->get_height());
41                 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);
42         }
43         
44         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
45                 menu_popup.popup(event->button, event->time);
46                  return true; //It has been handled.
47         }
48         
49         if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
50                 cistern_pty_wnd->spin_capacidad->set_value( capacidad );
51                 cistern_pty_wnd->spin_inicial->set_value( contenido_inicial );
52                 cistern_pty_wnd->txt_cistern_name->set_text( name );
53                 cistern_pty_wnd->show();
54         }               
55         return true;
56 }
57
58 void Cistern::on_menu_popup_rotar()
59 {
60         GdkEventButton event; 
61                 event.type = GDK_BUTTON_PRESS;
62                 event.button = 2;
63         Cistern::on_button_press_event(&event);
64 }
65
66 void Cistern::on_menu_popup_propiedades()
67 {
68         GdkEventButton event; 
69                 event.type = GDK_2BUTTON_PRESS;
70                 event.button = 1;
71         Cistern::on_button_press_event(&event);
72 }
73
74 void Cistern::set_capacidad(double _cap)
75 {
76         capacidad = _cap;
77 }
78
79 double Cistern::get_capacidad()
80 {
81         return capacidad;
82 }
83
84 void Cistern::set_contenido_inicial(double _ini)
85 {
86         contenido_inicial = _ini;
87 }
88
89 double Cistern::get_contenido_inicial()
90 {
91         return contenido_inicial;
92 }
93
94 void Cistern::save(FILE *archivo)
95 {
96         char c_id[50], c_cap[50], c_x[50], c_y[50], c_img[50], c_ini[50];
97         sprintf(c_x,"\t\t<x>%d</x>\n",x);
98         sprintf(c_y,"\t\t<y>%d</y>\n",y);
99         sprintf(c_id,"%d",ID);
100         sprintf(c_cap,"\t\t<capacidad>%.2f</capacidad>\n", capacidad);
101         sprintf(c_ini,"\t\t<inicial>%.2f</inicial>\n", contenido_inicial);
102         sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
103         Glib::ustring dato;
104         dato = "\t<tanque nombre=\""+name+"\" id=\"";
105         dato += c_id;
106         dato += "\">\n";
107         dato += c_cap;
108         dato += c_ini;
109         dato += c_img;
110         dato += c_x; 
111         dato += c_y;
112         dato += "\t</tanque>\n";
113         fprintf(archivo,dato.c_str());  
114 }
115
116 bool Cistern::check_connection()
117 {
118         switch (get_img_actual()) {
119                 case 0:
120                         if ( is_other_occupied_area( get_position_x()+get_image()->get_width()+10 , get_position_y()+get_image()->get_height() -10) )
121                                 return true;                            
122                         break;
123                 case 1:
124                         if ( is_other_occupied_area( get_position_x() -10, get_position_y()+get_image()->get_height()-10) )
125                                 return true;
126         }
127         return false;
128 }