X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/667418327423ba116d24751926a95a2f1235849c..f85e6b00bd29ddff6067db8c6d4c56f53bcf4c0b:/Constructor/src/exclusa.cpp diff --git a/Constructor/src/exclusa.cpp b/Constructor/src/exclusa.cpp index 69eef26..4d07994 100644 --- a/Constructor/src/exclusa.cpp +++ b/Constructor/src/exclusa.cpp @@ -1,13 +1,20 @@ #include "exclusa.h" #include "exclusaptywnd.h" -Exclusa::Exclusa() +Exclusa::Exclusa(int orientacion) { imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/exclusa_h.png"); imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/exclusa_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 = imageS; + break; + default: + imgActual = 0; + image = imageN; + } set_size_request(image->get_width(), image->get_height()); Glib::RefPtr ref = Gnome::Glade::Xml::create(PACKAGE_DATA_DIR"/plaqui-constructor/dialogs/constructor.glade", "exclusa_pty_wnd");