5 imageN = Gdk::Pixbuf::create_from_file("y_n.png");
6 imageS = Gdk::Pixbuf::create_from_file("y_s.png");
7 imageE = Gdk::Pixbuf::create_from_file("y_e.png");
8 imageO = Gdk::Pixbuf::create_from_file("y_o.png");
9 null = Gdk::Pixbuf::create_from_file("null.png");
12 set_size_request(image->get_width(), image->get_height());
13 property_wnd->set_title("Propiedades del Empalme");
14 property_wnd->rd_btn_division->property_visible() = true;
15 property_wnd->rd_btn_union->property_visible() = true;
16 property_wnd->lb_type->property_visible() = true;
21 connect_vec.push_back(temp); //izquierda
22 connect_vec.push_back(temp); //derecha
24 connect_vec.push_back(temp); //medio
31 bool Union::on_button_press_event(GdkEventButton *event)
33 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1))
34 combo_entry->set_text(name);
36 if ((event->type == GDK_BUTTON_PRESS) && (event->button == 2 )){
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);
54 set_size_request(image->get_width(), image->get_height());
55 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);
57 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
58 menu_popup.popup(event->button, event->time);
59 return true; //It has been handled.
62 if ((event->type == GDK_2BUTTON_PRESS) && ( event->button == 1)){
63 property_wnd->spin_caudal->set_value( caudal_max );
64 property_wnd->txt_item_name->set_text( name );
65 if (is_union) property_wnd->rd_btn_union->set_active(true);
71 void Union::on_menu_popup_rotar()
74 event.type = GDK_BUTTON_PRESS;
76 Union::on_button_press_event(&event);
79 void Union::on_menu_popup_propiedades()
82 event.type = GDK_2BUTTON_PRESS;
84 Union::on_button_press_event(&event);
87 void Union::save(FILE *archivo)
89 char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
91 if ( is_union ) c_type = "\t\t<tipo>union</tipo>\n";
92 else c_type = "\t\t<tipo>division</tipo>\n";
93 sprintf(c_x,"\t\t<x>%d</x>\n",x);
94 sprintf(c_y,"\t\t<y>%d</y>\n",y);
95 sprintf(c_id,"%d",ID);
96 sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
97 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
99 dato = "\t<empalme nombre=\""+name+"\" id=\"";
107 dato += "\t</empalme>\n";
108 fprintf(archivo,dato.c_str());
111 bool Union::check_connection()
113 ConnectorType temp0, temp1, temp2;
114 switch (get_img_actual()) {
116 temp0 = is_other_connection_area( get_position_x() - 5, get_position_y() +16);
117 temp1 = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+16);
118 temp2 = is_other_connection_area( get_position_x()+get_image()->get_width()/2, get_position_y()+get_image()->get_height()+5);
121 temp2 = is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()/2);
122 temp0 = is_other_connection_area( get_position_x()+get_image()->get_width()-16, get_position_y()-5);
123 temp1 = is_other_connection_area( get_position_x()+get_image()->get_width()-16, get_position_y()+get_image()->get_height()+5);
126 temp1 = is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16);
127 temp2 = is_other_connection_area( get_position_x()+get_image()->get_width()/2, get_position_y()-5);
128 temp0 = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16);
131 temp1 = is_other_connection_area( get_position_x()+16, get_position_y()-5);
132 temp2 = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()/2);
133 temp0 = is_other_connection_area( get_position_x()+16, get_position_y()+get_image()->get_height()+5);
136 if ( temp0 == OUT && temp1 == OUT && temp2 == IN )
137 return (is_connected = true);
139 if ( temp0 == IN && temp1 == IN && temp2 == OUT )
140 return (is_connected = true);
145 ConnectorType Union::get_connector_type(int _a, int _b)
147 switch ( imgActual) {
148 case 0: if ((_a <= x+10) && (_a > x+1) && (_b<= y + 22) && (_b >= y+10))
149 return connect_vec[0].type;
150 if ((_a <= x+image->get_width()-1) && (_a >= x+image->get_width()-10)&&(_b <= y+22) && (_b >= y+10))
151 return connect_vec[1].type;
152 if ((_a <= x+image->get_width()/2 + 5)&&( _a>= x+image->get_width()/2 - 5) && (_b<=y+image->get_height()-1)&&(_b >= y+image->get_height()-10))
153 return connect_vec[2].type;
155 case 1: if ((_a <= x+image->get_width()-10) && (_a >= x+image->get_width() -22) && (_b<= y + 10) && (_b > y ))
156 return connect_vec[0].type;
157 if ((_a <= x +10) && (_a > x )&&(_b <= y+image->get_height()/2+5 ) && (_b >= y+image->get_height()/2-5))
158 return connect_vec[2].type;
159 if ((_a <= x+image->get_width() - 10)&&( _a>= x+image->get_width()-22) && (_b<=y+image->get_height()-1)&&(_b >= y+image->get_height()-10))
160 return connect_vec[1].type;
162 case 2: if ((_a <= x+10) && (_a > x) && (_b<= y+image->get_height()-10) && (_b >= y+image->get_height()-22))
163 return connect_vec[1].type;
164 if ((_a <= x+image->get_width()-1) && (_a >= x+image->get_width()-10)&&(_b <= y+image->get_height()-10) && (_b >= y+image->get_height()-22))
165 return connect_vec[0].type;
166 if ((_a <= x+image->get_width()/2 + 5)&&( _a>= x+image->get_width()/2 - 5) && (_b<=y+10)&&(_b > y))
167 return connect_vec[2].type;
169 case 3: if ((_a <= x+22) && (_a >= x+10) && (_b<= y + 10) && (_b > y ))
170 return connect_vec[1].type;
171 if ((_a <= x+22) && (_a >= x+10 )&&(_b <= y+image->get_height()-1 ) && (_b >= y+image->get_height()-10))
172 return connect_vec[0].type;
173 if ((_a <= x+image->get_width() -1)&&( _a>= x+image->get_width()-10) && (_b<=y+image->get_height()/2+5)&&(_b >= y+image->get_height()/2-5))
174 return connect_vec[2].type;
180 ConnectorType Union::is_connection_area(int _a, int _b)
182 switch ( imgActual) {
183 case 0: if ( ((_a <= x+10) && (_a > x+1) && (_b<= y + 22) && (_b >= y+10))
185 ((_a <= x+image->get_width()-1) && (_a >= x+image->get_width()-10)&&(_b <= y+22) && (_b >= y+10)) ||
186 ((_a <= x+image->get_width()/2 + 5)&&( _a>= x+image->get_width()/2 - 5) && (_b<=y+image->get_height()-1)&&(_b >= y+image->get_height()-10)) )
188 case 1: if ( ((_a <= x+image->get_width()-10) && (_a >= x+image->get_width() -22) && (_b<= y + 10) && (_b > y )) ||
189 ((_a <= x +10) && (_a > x )&&(_b <= y+image->get_height()/2+5 ) && (_b >= y+image->get_height()/2-5)) ||
190 ((_a <= x+image->get_width() - 10)&&( _a>= x+image->get_width()-22) && (_b<=y+image->get_height()-1)&&(_b >= y+image->get_height()-10)) )
192 case 2: if ( ((_a <= x+10) && (_a > x) && (_b<= y+image->get_height()-10) && (_b >= y+image->get_height()-22)) ||
193 ((_a <= x+image->get_width()-1) && (_a >= x+image->get_width()-10)&&(_b <= y+image->get_height()-10) && (_b >= y+image->get_height()-22)) ||
194 ((_a <= x+image->get_width()/2 + 5)&&( _a>= x+image->get_width()/2 - 5) && (_b<=y+10)&&(_b > y)) )
196 case 3: if ( ((_a <= x+22) && (_a >= x+10) && (_b<= y + 10) && (_b > y )) ||
197 ((_a <= x+22) && (_a >= x+10 )&&(_b <= y+image->get_height()-1 ) && (_b >= y+image->get_height()-10)) ||
198 ((_a <= x+image->get_width() -1)&&( _a>= x+image->get_width()-10) && (_b<=y+image->get_height()/2+5)&&(_b >= y+image->get_height()/2-5)) )