X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/29987afb9486f382802e6f607ce24dcd558ab7dc..d940cfcd9606fbf7fc82376260f3a63573fd3795:/Constructor/cistern.cpp?ds=sidebyside diff --git a/Constructor/cistern.cpp b/Constructor/cistern.cpp index ef12915..1495443 100644 --- a/Constructor/cistern.cpp +++ b/Constructor/cistern.cpp @@ -2,12 +2,23 @@ Cistern::Cistern() { + caudal = 56; + fluido_max = 23; imageE = Gdk::Pixbuf::create_from_file("tanque_e.png"); imageO = Gdk::Pixbuf::create_from_file("tanque_o.png"); null = Gdk::Pixbuf::create_from_file("tanque_null.png"); imgActual = 0; image = imageE; set_size_request(image->get_width(), image->get_height()); + + Glib::RefPtr ref; + try { + ref = Gnome::Glade::Xml::create("constructor.glade", "cistern_pty_wnd"); + } + catch(const Gnome::Glade::XmlError &ex) { + std::cerr << ex.what() << std::endl; + } + ref->get_widget_derived("cistern_pty_wnd",cistern_pty_wnd); } Cistern::~Cistern() @@ -31,10 +42,17 @@ bool Cistern::on_button_press_event(GdkEventButton *event) set_size_request(image->get_width(),image->get_height()); 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); } + if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){ menu_popup.popup(event->button, event->time); return true; //It has been handled. } + + if ((event->type == GDK_2BUTTON_PRESS) && (event->button ==1)){ + cistern_pty_wnd->spin_caudal->set_value((double)x); + cistern_pty_wnd->spin_fluido_max->set_value((double)y); + cistern_pty_wnd->show(); + } return true; } @@ -45,3 +63,14 @@ void Cistern::on_menu_popup_rotar() event.button = 2; Cistern::on_button_press_event(&event); } + +void Cistern::on_menu_popup_propiedades() +{ +// cistern_pty_wnd->spin_caudal->set_value(caudal); +// cistern_pty_wnd->spin_fluido_max->set_value(fluido_max); + std::cout<< "posicion = "<< x <<" "<< y <