3 Drain::Drain(int orientacion)
6 imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_e.png");
7 imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_o.png");
8 imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_n.png");
9 imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_s.png");
10 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
11 imgActual = orientacion;
26 set_size_request(image->get_width(), image->get_height());
27 property_wnd->item = this;
28 property_wnd->lb_max_fluid->property_visible() = false;
29 property_wnd->spin_caudal->property_visible() = false;
30 property_wnd->set_title("Propiedades del Drenaje");
35 connect_vec.push_back(temp);
42 bool Drain::on_button_press_event(GdkEventButton *event)
44 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
45 combo_entry->set_text(name);
46 WorkPlace::pointed = ID;
49 if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
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);
67 set_size_request(image->get_width(),image->get_height());
68 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);
71 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
72 menu_popup.popup(event->button, event->time);
73 return true; //It has been handled.
76 if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
77 property_wnd->txt_item_name->set_text( name );
83 void Drain::on_menu_popup_rotar()
86 event.type = GDK_BUTTON_PRESS;
88 Drain::on_button_press_event(&event);
91 void Drain::on_menu_popup_propiedades()
94 event.type = GDK_2BUTTON_PRESS;
96 Drain::on_button_press_event(&event);
99 void Drain::save(FILE *archivo)
101 char c_id[50], c_x[50], c_y[50], c_img[50];
103 con0 = "\t\t\t<entrada>"+get_other_name(connect_vec[0].id_dest)+"</entrada>\n";
104 sprintf(c_x,"\t\t<x>%d</x>\n",x);
105 sprintf(c_y,"\t\t<y>%d</y>\n",y);
106 sprintf(c_id,"%d",ID);
107 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
109 dato = "\t<drenaje nombre=\""+name+"\" id=\"";
112 dato += "\t\t<conector>\n"+con0+"\t\t</conector>\n";
116 dato += "\t</drenaje>\n";
117 fprintf(archivo,dato.c_str());
120 bool Drain::check_connection()
124 switch (get_img_actual()) {
126 temp = is_other_connection_area( get_position_x()+16 , get_position_y() -5,& _item0);
129 temp = is_other_connection_area( get_position_x()+image->get_width() + 5, get_position_y()+16,& _item0);
132 temp = is_other_connection_area( get_position_x()+16, get_position_y()+image->get_height()+5, &_item0);
135 temp = is_other_connection_area( get_position_x()-5, get_position_y()+16,& _item0);
137 if ( is_connected = (temp == OUT) ) {
138 connect_vec[0].id_dest = _item0->get_id();
141 std::cout<<"conector dest ="<<temp<<std::endl;
145 ConnectorType Drain::get_connector_type(int _a, int _b)
149 if ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+10)&&(_b > y) )
150 return connect_vec[0].type;
153 if ( (_a <= x+image->get_width() -1)&&(_a>=x+image->get_width()-10)&&(_b<=y+22)&&(_b >= y+10) )
154 return connect_vec[0].type;
157 if ( (_a <= x +22)&&(_a >= x+10)&&(_b<=y+image->get_height() -1)&&(_b >=y+image->get_height()-10) )
158 return connect_vec[0].type;
161 if ( (_a <= x+10)&&(_a >x)&&(_b<=y+22)&&(_b >=y+10) )
162 return connect_vec[0].type;
167 void Drain::set_default_connector()
169 connect_vec[0].type = IN;