X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/667418327423ba116d24751926a95a2f1235849c..ca892569659649f00dee51624d31bced690751f3:/Constructor/src/drain.cpp diff --git a/Constructor/src/drain.cpp b/Constructor/src/drain.cpp index 1fe84eb..afd71ec 100644 --- a/Constructor/src/drain.cpp +++ b/Constructor/src/drain.cpp @@ -1,14 +1,27 @@ #include "drain.h" -Drain::Drain() +Drain::Drain(int orientacion) { imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_e.png"); imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_o.png"); imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_n.png"); imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/drain_s.png"); null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png"); - imgActual = 0; - image = imageN; + imgActual = orientacion; + switch (imgActual) { + case 1: + image = imageE; + break; + case 2: + image = imageS; + break; + case 3: + image = imageO; + break; + default: + imgActual = 0; + image = imageN; + } set_size_request(image->get_width(), image->get_height()); property_wnd->item = this; property_wnd->lb_max_fluid->property_visible() = false; @@ -27,8 +40,10 @@ Drain::~Drain() bool Drain::on_button_press_event(GdkEventButton *event) { - if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) + if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) { combo_entry->set_text(name); + WorkPlace::pointed = ID; + } if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){ image = null;