X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/ee2cb3d6c26ae319d20bde28f415393e96611ece..101179f2d7bcc4de75c326d3e9d01694c84d07ca:/Constructor/src/union.cpp diff --git a/Constructor/src/union.cpp b/Constructor/src/union.cpp index d9c36b9..3e98e6d 100644 --- a/Constructor/src/union.cpp +++ b/Constructor/src/union.cpp @@ -2,6 +2,7 @@ Union::Union(int orientacion) { + in_x = -1; imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/y_n.png"); imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/y_s.png"); imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/y_e.png"); @@ -44,7 +45,10 @@ Union::~Union() bool Union::on_button_press_event(GdkEventButton *event) { if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) { - combo_entry->set_text(name); + list_pointed->push_back(name); + combo_entry->set_popdown_strings(*list_pointed); + combo_entry->get_entry()->set_text (name); + workplace->queue_draw(); WorkPlace::pointed = ID; }