3 Conduct::Conduct(int orientacion)
6 imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_n.png");
7 imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_s.png");
8 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
9 imgActual = orientacion;
18 set_size_request(image->get_width(), image->get_height());
19 property_wnd->set_title("Propiedades del Tubo");
24 connect_vec.push_back(temp);
25 connect_vec.push_back(temp);
32 bool Conduct::on_button_press_event(GdkEventButton *event)
34 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
35 list_pointed->push_back(name);
36 combo_entry->set_popdown_strings(*list_pointed);
37 WorkPlace::pointed = ID;
38 combo_entry->get_entry()->set_text (name);
39 workplace->queue_draw();
42 if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
44 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);
70 void Conduct::on_menu_popup_rotar()
73 event.type = GDK_BUTTON_PRESS;
75 Conduct::on_button_press_event(&event);
78 void Conduct::on_menu_popup_propiedades()
81 event.type = GDK_2BUTTON_PRESS;
83 Conduct::on_button_press_event(&event);
86 void Conduct::save(FILE *archivo)
88 char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
89 Glib::ustring con0, con1;
90 if (connect_vec[0].type == IN)
91 con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
93 con0 = "\t\t\t<salida>"+get_other_name(connect_vec[0].id_dest)+"</salida>\n";
94 if (connect_vec[1].type == IN)
95 con1 = "\t\t\t<entrada>"+get_other_name(connect_vec[1].id_dest)+"</entrada>\n";
97 con1 = "\t\t\t<salida>"+get_other_name(connect_vec[1].id_dest)+"</salida>\n";
98 sprintf(c_x,"\t\t<x>%d</x>\n",x);
99 sprintf(c_y,"\t\t<y>%d</y>\n",y);
100 sprintf(c_id,"%d",ID);
101 sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
102 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
104 dato = "\t<tubo nombre=\""+name+"\" id=\"";
108 dato += "\t\t<conector>\n"+con0 + con1+"\t\t</conector>\n";
112 dato += "\t</tubo>\n";
113 fprintf(archivo,dato.c_str());
116 bool Conduct::check_connection()
119 CItem *_item0, *_item1;
122 switch (get_img_actual()) {
124 connect_vec[0].type = is_other_connection_area( get_position_x()+16, get_position_y()-5, &_item0);
125 connect_vec[1].type = is_other_connection_area( get_position_x()+16, get_position_y()+get_image()->get_height() +5,& _item1);
128 connect_vec[0].type = is_other_connection_area( get_position_x()-5, get_position_y()+16, &_item0);
129 connect_vec[1].type = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item1);
131 if ( connect_vec[0].type != UNDEF && connect_vec[1].type != UNDEF ) {
132 aux = connect_vec[0].type;
133 connect_vec[0].type = connect_vec[1].type;
134 connect_vec[1].type = aux;
135 connect_vec[0].id_dest = _item0->get_id();
136 connect_vec[1].id_dest = _item1->get_id();
137 return ( is_connected = (connect_vec[0].type != connect_vec[1].type) );
139 else return is_connected;
142 /*si no estoy conectado pregunto por el del otro lado, y ahi puedo setear los dos
143 *si ya estoy devuelvo.
145 ConnectorType Conduct::get_connector_type(int _a, int _b)
150 if ( (_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 ) ){ //arriba
151 if ( is_connected ) return connect_vec[0].type;
152 connect_vec[1].type = is_other_connection_area(get_position_x()+16, get_position_y()+get_image()->get_height() +5, &_item); //pregunto que hay abajo
153 switch ( connect_vec[1].type ) {
155 connect_vec[1] = OUT;
160 connect_vec[0] = OUT;
165 return connect_vec[0].type;
168 if ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 )) {//abajo
169 if ( is_connected ) return connect_vec[1].type;
170 connect_vec[0].type = is_other_connection_area( get_position_x()+16, get_position_y()-5,& _item);//pregunto que hay arriba.
171 switch ( connect_vec[0].type ) {
173 connect_vec[0] = OUT;
178 connect_vec[1] = OUT;
183 return connect_vec[1].type;
187 if ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )){ //izquierda
188 if ( is_connected ) return connect_vec[0].type;
189 connect_vec[1].type = is_other_connection_area(get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item);//pregunto por la derecha
190 switch ( connect_vec[1].type ) {
192 connect_vec[1] = OUT;
197 connect_vec[0] = OUT;
203 return connect_vec[0].type;
205 if ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) {//derecha
206 if ( is_connected ) return connect_vec[1].type;
207 connect_vec[0].type = is_other_connection_area(get_position_x()-5, get_position_y()+16, &_item); //pregunto por la izquierda.
208 switch ( connect_vec[0].type ) {
210 connect_vec[0] = OUT;
215 connect_vec[1] = OUT;
221 return connect_vec[1].type;
228 void Conduct::set_default_connector()
230 connect_vec[0].type = UNDEF;
231 connect_vec[1].type = UNDEF;