]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/exclusa.cpp
ahora si se verifica que esten conectados, aunque esto lo tengo que arreglar porque...
[z.facultad/75.42/plaqui.git] / Constructor / exclusa.cpp
1 #include "exclusa.h"
2 #include "exclusaptywnd.h"
3
4 Exclusa::Exclusa()
5 {
6         imageN = Gdk::Pixbuf::create_from_file("exclusa_h.png");
7         imageS = Gdk::Pixbuf::create_from_file("exclusa_s.png");
8         null = Gdk::Pixbuf::create_from_file("null.png");
9         imgActual = 0;
10         image = imageN;
11         set_size_request(image->get_width(), image->get_height());
12         
13         Glib::RefPtr<Gnome::Glade::Xml> ref = Gnome::Glade::Xml::create("constructor.glade", "exclusa_pty_wnd");
14         ref->get_widget_derived("exclusa_pty_wnd",exclusa_pty_wnd);
15         exclusa_pty_wnd->exclusa = this;
16         name = "exclusa";
17 }
18
19 Exclusa::~Exclusa()
20 {
21 }
22
23 bool Exclusa::on_button_press_event(GdkEventButton *event)
24 {
25         int w, h;
26         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1))
27                 combo_entry->set_text(name);
28         
29         if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
30                 image = null; 
31                 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);
32                 imgActual++;
33                 switch (imgActual) {
34                         case 1:
35                                 image = imageS;
36                                 break;
37                         default: 
38                                 imgActual = 0;
39                                 image = imageN;                 
40                 }
41                 get_size_request(w, h);
42                 set_size_request(h, w);         
43                 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);
44         }
45         if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
46                 menu_popup.popup(event->button, event->time);
47                  return true; //It has been handled.
48         }
49         
50         if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
51                 exclusa_pty_wnd->txt_exclusa_name->set_text( name);
52                 if (estado) exclusa_pty_wnd->rd_btn_open->set_active(true);
53                 exclusa_pty_wnd->show();
54         }
55         return true;
56 }
57
58 void Exclusa::on_menu_popup_rotar()
59 {
60         GdkEventButton event; 
61                 event.type = GDK_BUTTON_PRESS;
62                 event.button = 2;
63         Exclusa::on_button_press_event(&event);
64 }
65
66 void Exclusa::on_menu_popup_propiedades()
67 {
68         GdkEventButton event;
69         event.type = GDK_2BUTTON_PRESS;
70         event.button = 1;
71         Exclusa::on_button_press_event(&event);
72 }
73
74 void Exclusa::save(FILE *archivo)
75 {
76         char c_id[50], c_est[50], c_x[50], c_y[50], c_img[50];
77         int est;
78         sprintf(c_x,"\t\t<x>%d</x>\n",x);
79         sprintf(c_y,"\t\t<y>%d</y>\n",y);
80         sprintf(c_id,"%d",ID);
81         if (estado) est = 1;
82         else est = 0;
83         sprintf(c_est,"\t\t<estado>%d</estado>\n", est);
84         sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
85         Glib::ustring dato;
86         dato = "\t<exclusa nombre=\""+name+"\" id=\"";
87         dato += c_id;
88         dato += "\">\n";
89         dato += c_img;
90         dato += c_est;
91         dato += c_x; 
92         dato += c_y;
93         dato += "\t</exclusa>\n";
94         fprintf(archivo,dato.c_str());  
95 }
96
97 bool Exclusa::check_connection()
98 {
99         switch (get_img_actual()) {
100                         case 0:
101                                 if ( is_other_occupied_area( get_position_x()+get_image()->get_width()+10, get_position_y()+10) && 
102                                          is_other_occupied_area( get_position_x()-10, get_position_y() + 10) )
103                                         return true;                            
104                                 break;
105                         case 1:
106                                 if ( is_other_occupied_area( get_position_x()+10, get_position_y()-10 ) && 
107                                          is_other_occupied_area( get_position_x()+get_image()->get_width()-10, get_position_y()+get_image()->get_height()+10) )
108                                 return true;
109         }
110         return false;
111 }
112
113 void Exclusa::set_estado(bool _state)
114 {
115         estado = _state;
116 }
117
118 bool Exclusa::get_estado()
119 {
120         return estado;
121 }