3 Conduct::Conduct(int orientacion)
5 imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_n.png");
6 imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_s.png");
7 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
8 imgActual = orientacion;
17 set_size_request(image->get_width(), image->get_height());
18 property_wnd->set_title("Propiedades del Tubo");
23 connect_vec.push_back(temp);
24 connect_vec.push_back(temp);
31 bool Conduct::on_button_press_event(GdkEventButton *event)
33 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
34 combo_entry->set_text(name);
35 WorkPlace::pointed = ID;
38 if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
40 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);
50 set_size_request(image->get_width(), image->get_height());
51 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);
53 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
54 menu_popup.popup(event->button, event->time);
55 return true; //It has been handled.
58 if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
59 property_wnd->spin_caudal->set_value( caudal_max );
60 property_wnd->txt_item_name->set_text (name);
66 void Conduct::on_menu_popup_rotar()
69 event.type = GDK_BUTTON_PRESS;
71 Conduct::on_button_press_event(&event);
74 void Conduct::on_menu_popup_propiedades()
77 event.type = GDK_2BUTTON_PRESS;
79 Conduct::on_button_press_event(&event);
82 void Conduct::save(FILE *archivo)
84 char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
85 Glib::ustring con0, con1;
86 if (connect_vec[0].type == IN)
87 con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
89 con0 = "\t\t\t<salida>"+get_other_name(connect_vec[0].id_dest)+"</salida>\n";
90 if (connect_vec[1].type == IN)
91 con1 = "\t\t\t<entrada>"+get_other_name(connect_vec[1].id_dest)+"</entrada>\n";
93 con1 = "\t\t\t<salida>"+get_other_name(connect_vec[1].id_dest)+"</salida>\n";
94 sprintf(c_x,"\t\t<x>%d</x>\n",x);
95 sprintf(c_y,"\t\t<y>%d</y>\n",y);
96 sprintf(c_id,"%d",ID);
97 sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
98 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
100 dato = "\t<tubo nombre=\""+name+"\" id=\"";
104 dato += "\t\t<conector>\n"+con0 + con1+"\t\t</conector>\n";
108 dato += "\t</tubo>\n";
109 fprintf(archivo,dato.c_str());
112 bool Conduct::check_connection()
115 CItem *_item0, *_item1;
116 switch (get_img_actual()) {
118 connect_vec[0].type = is_other_connection_area( get_position_x()+16, get_position_y()-5, &_item0);
119 connect_vec[1].type = is_other_connection_area( get_position_x()+16, get_position_y()+get_image()->get_height() +5,& _item1);
122 connect_vec[0].type = is_other_connection_area( get_position_x()-5, get_position_y()+16, &_item0);
123 connect_vec[1].type = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item1);
125 if ( connect_vec[0].type != UNDEF && connect_vec[1].type != UNDEF ) {
126 aux = connect_vec[0].type;
127 connect_vec[0].type = connect_vec[1].type;
128 connect_vec[1].type = aux;
129 connect_vec[0].id_dest = _item0->get_id();
130 connect_vec[1].id_dest = _item1->get_id();
131 return ( is_connected = (connect_vec[0].type != connect_vec[1].type) );
133 else return is_connected;
136 ConnectorType Conduct::get_connector_type(int _a, int _b)
139 if ( ! is_connected ) {
142 if ( (_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 ) ) //arriba
143 return is_other_connection_area(get_position_x()+16, get_position_y()+get_image()->get_height() +5, &_item); //pregunto que hay abajo
144 if ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 ))//abajo
145 return is_other_connection_area( get_position_x()+16, get_position_y()-5,& _item);//pregunto que hay arriba.
148 if ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )) //izquierda
149 return is_other_connection_area(get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item);//pregunto por la derecha
150 if ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) //derecha
151 return is_other_connection_area(get_position_x()-5, get_position_y()+16, &_item); //pregunto por la izquierda.
156 if ( (_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 ) ) //arriba
157 return connect_vec[0].type;
158 if ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 )) //abajo
159 return connect_vec[1].type;
162 if ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )) //izquierda
163 return connect_vec[0].type;
164 if ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) //derecha
165 return connect_vec[1].type;
170 /*si no estoy conectado pregunto por el del otro lado, y ahi puedo setear los dos
171 *si ya estoy devuelvo.
174 void Conduct::set_default_connector()
176 connect_vec[0].type = UNDEF;
177 connect_vec[1].type = UNDEF;