5 imageN = Gdk::Pixbuf::create_from_file("codo_n.png");
6 imageS = Gdk::Pixbuf::create_from_file("codo_s.png");
7 imageE = Gdk::Pixbuf::create_from_file("codo_e.png");
8 imageO = Gdk::Pixbuf::create_from_file("codo_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 Codo");
18 connect_vec.push_back(temp);
19 connect_vec.push_back(temp);
26 bool Splitter::on_button_press_event(GdkEventButton *event)
28 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1))
29 combo_entry->set_text(name);
31 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
33 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);
49 set_size_request(image->get_width(),image->get_height());
50 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);
52 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
53 menu_popup.popup(event->button, event->time);
54 return true; //It has been handled.
57 if ((event->type == GDK_2BUTTON_PRESS) && ( event->button == 1)){
58 property_wnd->spin_caudal->set_value( caudal_max );
59 property_wnd->txt_item_name->set_text( name );
64 void Splitter::on_menu_popup_rotar()
67 event.type = GDK_BUTTON_PRESS;
69 Splitter::on_button_press_event(&event);
72 void Splitter::on_menu_popup_propiedades()
75 event.type = GDK_2BUTTON_PRESS;
77 Splitter::on_button_press_event(&event);
80 void Splitter::save(FILE *archivo)
82 char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
83 sprintf(c_x,"\t\t<x>%d</x>\n",x);
84 sprintf(c_y,"\t\t<y>%d</y>\n",y);
85 sprintf(c_id,"%d",ID);
86 sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
87 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
89 dato = "\t<codo nombre=\""+name+"\" id=\"";
96 dato += "\t</codo>\n";
97 fprintf(archivo,dato.c_str());
100 bool Splitter::check_connection()
102 switch (get_img_actual()) {
104 connect_vec[0].type = is_other_connection_area( get_position_x()-5, get_position_y()+16); //arriba-izquierda h
105 connect_vec[1].type = is_other_connection_area( get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5);//abajo-derecha v
108 connect_vec[0].type = is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5);//arriba-derecha v
109 connect_vec[1].type = is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16);//abajo-izquierda h
112 connect_vec[1].type = is_other_connection_area( get_position_x() + 16, get_position_y() - 5);//arriba-izquierda v
113 connect_vec[0].type = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height() - 16); //abajo-derecha h
116 connect_vec[1].type = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16);//arriba-derecha h
117 connect_vec[0].type = is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5); //abajo-izquierda v
119 if (connect_vec[0].type != UNDEF && connect_vec[1].type != UNDEF)
120 return ( is_connected = (connect_vec[0].type == connect_vec[1].type) );
124 ConnectorType Splitter::get_connector_type(int _a, int _b)
126 if ( ! is_connected ) {
129 if ( (_a <= x+10)&&(_a > x) && (_b <=y+22)&&(_b>=y+10) ) // arriba - izquierda h
130 return is_other_connection_area (get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5);
131 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) )//abajo-derecha v
132 return is_other_connection_area( get_position_x()-5, get_position_y()+16);
135 if ( (_a <= x+image->get_width()-10)&&(_a >= x+image->get_width()-22) && (_b <=y+10)&&(_b > y) ) //arriba-derecha v
136 return is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16);
137 if ( (_a <= x+10)&&(_a > x)&&(_b<=y+image->get_height()-10)&&(_b>=y+image->get_height()-22) ) // abajo-izquierda h
138 return is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5);
141 if ( (_a <= x+22)&&(_a >= x+10) && (_b <=y+10)&&(_b > y) ) //arriba-izquierda v
142 return is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height() - 16);
143 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) ) // abajo-derecha h
144 return is_other_connection_area( get_position_x() + 16, get_position_y() - 5);
147 if ( (_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <=y+22)&&(_b>=y+10) ) //arriba-derecha h
148 return is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5);
149 if ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+image->get_height()-1)&&(_b>=y+image->get_height()-10) ) // abajo-izquierda v
150 return is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16);
155 if ( (_a <= x+10)&&(_a > x) && (_b <=y+22)&&(_b>=y+10) ) // arriba - izquierda h
156 return connect_vec[0].type;
157 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) )//abajo-derecha v
158 return connect_vec[1].type;
161 if ( (_a <= x+image->get_width()-10)&&(_a >= x+image->get_width()-22) && (_b <=y+10)&&(_b > y) ) //arriba-derecha v
162 return connect_vec[0].type;
163 if ( (_a <= x+10)&&(_a > x)&&(_b<=y+image->get_height()-10)&&(_b>=y+image->get_height()-22) ) // abajo-izquierda h
164 return connect_vec[1].type;
167 if ( (_a <= x+22)&&(_a >= x+10) && (_b <=y+10)&&(_b > y) ) //arriba-izquierda v
168 return connect_vec[1].type;
169 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) ) // abajo-derecha h
170 return connect_vec[0].type;
173 if ( (_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <=y+22)&&(_b>=y+10) ) //arriba-derecha h
174 return connect_vec[1].type;
175 if ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+image->get_height()-1)&&(_b>=y+image->get_height()-10) ) // abajo-izquierda v
176 return connect_vec[0].type;
182 void Splitter::set_default_connector()
184 connect_vec[0].type = UNDEF;
185 connect_vec[1].type = UNDEF;