5 imageN = Gdk::Pixbuf::create_from_file("canio_n.png");
6 imageS = Gdk::Pixbuf::create_from_file("canio_s.png");
7 null = Gdk::Pixbuf::create_from_file("null.png");
10 set_size_request(image->get_width(), image->get_height());
11 property_wnd->set_title("Propiedades del Tubo");
19 bool Conduct::on_button_press_event(GdkEventButton *event)
22 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1))
23 combo_entry->set_text(name);
25 if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
27 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);
37 get_size_request(w, h);
38 set_size_request(h, w);
39 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);
41 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
42 menu_popup.popup(event->button, event->time);
43 return true; //It has been handled.
46 if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){
47 property_wnd->spin_caudal->set_value( caudal_max );
48 property_wnd->txt_item_name->set_text (name);
54 void Conduct::on_menu_popup_rotar()
57 event.type = GDK_BUTTON_PRESS;
59 Conduct::on_button_press_event(&event);
62 void Conduct::on_menu_popup_propiedades()
65 event.type = GDK_2BUTTON_PRESS;
67 Conduct::on_button_press_event(&event);
70 void Conduct::save(FILE *archivo)
72 char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
73 sprintf(c_x,"\t\t<x>%d</x>\n",x);
74 sprintf(c_y,"\t\t<y>%d</y>\n",y);
75 sprintf(c_id,"%d",ID);
76 sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
77 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
79 dato = "\t<tubo nombre=\""+name+"\" id=\"";
86 dato += "\t</tubo>\n";
87 fprintf(archivo,dato.c_str());
90 bool Conduct::check_connection()
92 switch (get_img_actual()) {
94 if ( is_other_connection_area( get_position_x()+16, get_position_y()-5) &&
95 is_other_connection_area( get_position_x()+16, get_position_y()+get_image()->get_height() +5) )
99 if ( is_other_connection_area( get_position_x()-5, get_position_y()+16) &&
100 is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+16) )
106 bool Conduct::is_connection_area(int _a, int _b)
110 if ( ((_a <= x+image->get_width()-10 )&&(_a >= x + 10) && (_b <= y+10) &&(_b > 0 )) ||
111 ((_a <= x+22 )&&(_a >= x + 10) && (_b <= y+image->get_height()-1) &&(_b >= y+image->get_height()-10 )) )
114 if ( ((_a <= x+10 )&&(_a > 0) && (_b <= y+image->get_height()-10) &&(_b >= y+10 )) ||
115 ((_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <= y+image->get_height()-10) &&(_b >= y +10 )) )