5 imageN = Gdk::Pixbuf::create_from_file("codo_n.png");
6 imageS = Gdk::Pixbuf::create_from_file("codo_s.png");
7 imageE = Gdk::Pixbuf::create_from_file("codo_e.png");
8 imageO = Gdk::Pixbuf::create_from_file("codo_o.png");
9 null = Gdk::Pixbuf::create_from_file("null.png");
12 set_size_request(image->get_width(), image->get_height());
13 property_wnd->set_title("Propiedades del Codo");
20 bool Splitter::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);
43 set_size_request(image->get_width(),image->get_height());
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);
46 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
47 menu_popup.popup(event->button, event->time);
48 return true; //It has been handled.
51 if ((event->type == GDK_2BUTTON_PRESS) && ( event->button == 1)){
52 property_wnd->spin_caudal->set_value( caudal_max );
53 property_wnd->txt_item_name->set_text( name );
58 void Splitter::on_menu_popup_rotar()
61 event.type = GDK_BUTTON_PRESS;
63 Splitter::on_button_press_event(&event);
66 void Splitter::on_menu_popup_propiedades()
69 event.type = GDK_2BUTTON_PRESS;
71 Splitter::on_button_press_event(&event);
74 void Splitter::save(FILE *archivo)
76 char c_id[50], c_caudal[50], c_x[50], c_y[50], c_img[50];
77 sprintf(c_x,"\t\t<x>%d</x>\n",x);
78 sprintf(c_y,"\t\t<y>%d</y>\n",y);
79 sprintf(c_id,"%d",ID);
80 sprintf(c_caudal,"\t\t<caudal>%.2f</caudal>\n", caudal_max);
81 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
83 dato = "\t<codo nombre=\""+name+"\" id=\"";
90 dato += "\t</codo>\n";
91 fprintf(archivo,dato.c_str());