]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/src/union.cpp
por fin el boton find hace algo
[z.facultad/75.42/plaqui.git] / Constructor / src / union.cpp
index b10ea1287ef6d25d53f6aef7eda66ce056f4f064..d9c36b9f6e437df5cdf09bfc7f56830ecd4fad75 100644 (file)
@@ -1,14 +1,27 @@
 #include "union.h"
 
-Union::Union()
+Union::Union(int orientacion)
 {
        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");
        imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/y_o.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->set_title("Propiedades del Empalme");
        property_wnd->rd_btn_division->property_visible() = true;
@@ -30,8 +43,10 @@ Union::~Union()
 
 bool Union::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;