X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/667418327423ba116d24751926a95a2f1235849c..57ae549a3b51ba148315ff4e64da089203cc7c02:/Constructor/src/splitter.cpp diff --git a/Constructor/src/splitter.cpp b/Constructor/src/splitter.cpp index 0ca5af6..c228408 100644 --- a/Constructor/src/splitter.cpp +++ b/Constructor/src/splitter.cpp @@ -1,14 +1,27 @@ #include "splitter.h" -Splitter::Splitter() +Splitter::Splitter(int orientacion) { imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/codo_n.png"); imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/codo_s.png"); imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/codo_e.png"); imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/codo_o.png"); null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png"); - imgActual = 0; - image = imageO; + imgActual = orientacion; + switch (imgActual) { + case 1: + image = imageN; + break; + case 2: + image = imageE; + break; + case 3: + image = imageS; + break; + default: + imgActual = 0; + image = imageO; + } set_size_request(image->get_width(), image->get_height()); property_wnd->set_title("Propiedades del Codo"); name = "codo"; @@ -25,8 +38,10 @@ Splitter::~Splitter() bool Splitter::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;