X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e963d0f06ef9f5002bd3083cea62e7590323623f..10118a94647fab1466bf51f17c131ee34e3c0766:/Constructor/conduct.cpp diff --git a/Constructor/conduct.cpp b/Constructor/conduct.cpp index d10c0c5..aa1c092 100644 --- a/Constructor/conduct.cpp +++ b/Constructor/conduct.cpp @@ -8,16 +8,7 @@ Conduct::Conduct() imgActual = 0; image = imageN; set_size_request(image->get_width(), image->get_height()); - - Glib::RefPtr ref; - try { - ref = Gnome::Glade::Xml::create("constructor.glade", "conduct_pty_wnd"); - } - catch(const Gnome::Glade::XmlError &ex) { - std::cerr << ex.what() << std::endl; - } - //tengo que crear una clase para esta ventana..!!! - ref->get_widget_derived("conduct_pty_wnd",property_wnd); + property_wnd->set_title("Propiedades del Tubo"); } Conduct::~Conduct() @@ -49,7 +40,9 @@ bool Conduct::on_button_press_event(GdkEventButton *event) } if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){ - property_wnd->show(); + property_wnd->spin_caudal->set_value( caudal_max ); + property_wnd->txt_item_name->set_text (name); + property_wnd->show(); } return true; }