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 combo_entry->set_text(name);
36 WorkPlace::pointed = ID;
39 if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
41 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);
51 set_size_request(image->get_width(), image->get_height());
52 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 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
55 menu_popup.popup(event->button, event->time);
56 return true; //It has been handled.
59 if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
60 property_wnd->spin_caudal->set_value( caudal_max );
61 property_wnd->txt_item_name->set_text (name);
67 void Conduct::on_menu_popup_rotar()
70 event.type = GDK_BUTTON_PRESS;
72 Conduct::on_button_press_event(&event);
75 void Conduct::on_menu_popup_propiedades()
78 event.type = GDK_2BUTTON_PRESS;
80 Conduct::on_button_press_event(&event);
83 void Conduct::save(FILE *archivo)
85 char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
86 Glib::ustring con0, con1;
87 if (connect_vec[0].type == IN)
88 con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
90 con0 = "\t\t\t<salida>"+get_other_name(connect_vec[0].id_dest)+"</salida>\n";
91 if (connect_vec[1].type == IN)
92 con1 = "\t\t\t<entrada>"+get_other_name(connect_vec[1].id_dest)+"</entrada>\n";
94 con1 = "\t\t\t<salida>"+get_other_name(connect_vec[1].id_dest)+"</salida>\n";
95 sprintf(c_x,"\t\t<x>%d</x>\n",x);
96 sprintf(c_y,"\t\t<y>%d</y>\n",y);
97 sprintf(c_id,"%d",ID);
98 sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
99 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
101 dato = "\t<tubo nombre=\""+name+"\" id=\"";
105 dato += "\t\t<conector>\n"+con0 + con1+"\t\t</conector>\n";
109 dato += "\t</tubo>\n";
110 fprintf(archivo,dato.c_str());
113 bool Conduct::check_connection()
116 CItem *_item0, *_item1;
117 switch (get_img_actual()) {
119 connect_vec[0].type = is_other_connection_area( get_position_x()+16, get_position_y()-5, &_item0);
120 connect_vec[1].type = is_other_connection_area( get_position_x()+16, get_position_y()+get_image()->get_height() +5,& _item1);
123 connect_vec[0].type = is_other_connection_area( get_position_x()-5, get_position_y()+16, &_item0);
124 connect_vec[1].type = is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item1);
126 if ( connect_vec[0].type != UNDEF && connect_vec[1].type != UNDEF ) {
127 aux = connect_vec[0].type;
128 connect_vec[0].type = connect_vec[1].type;
129 connect_vec[1].type = aux;
130 connect_vec[0].id_dest = _item0->get_id();
131 connect_vec[1].id_dest = _item1->get_id();
132 return ( is_connected = (connect_vec[0].type != connect_vec[1].type) );
134 else return is_connected;
137 /*si no estoy conectado pregunto por el del otro lado, y ahi puedo setear los dos
138 *si ya estoy devuelvo.
140 ConnectorType Conduct::get_connector_type(int _a, int _b)
143 if ( ! is_connected ) {
146 if ( (_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 ) ) //arriba
147 return is_other_connection_area(get_position_x()+16, get_position_y()+get_image()->get_height() +5, &_item); //pregunto que hay abajo
148 if ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 ))//abajo
149 return is_other_connection_area( get_position_x()+16, get_position_y()-5,& _item);//pregunto que hay arriba.
152 if ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )) //izquierda
153 return is_other_connection_area(get_position_x()+get_image()->get_width()+5, get_position_y()+16, &_item);//pregunto por la derecha
154 if ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) //derecha
155 return is_other_connection_area(get_position_x()-5, get_position_y()+16, &_item); //pregunto por la izquierda.
160 if ( (_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 ) ) //arriba
161 return connect_vec[0].type;
162 if ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 )) //abajo
163 return connect_vec[1].type;
166 if ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )) //izquierda
167 return connect_vec[0].type;
168 if ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) //derecha
169 return connect_vec[1].type;
176 void Conduct::set_default_connector()
178 connect_vec[0].type = UNDEF;
179 connect_vec[1].type = UNDEF;