]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/src/exclusa.cpp
agrego una barrita de estado para ver los datos con mas comodidad, se pueden hacer...
[z.facultad/75.42/plaqui.git] / Constructor / src / exclusa.cpp
index 680ce43b797dcf2bb4e461ae413c7b76bcc4c6ad..a7c4583c6806b1fb02e8b8ec4cf65dad8c6c8d49 100644 (file)
@@ -48,6 +48,7 @@ bool Exclusa::on_button_press_event(GdkEventButton *event)
                if (CItem::logic_connect && CItem::gate_id != -1) {
                        if ( detect_click_position((int)event->x, (int)event->y) == IN) {
                                tmp_line.logic_id =  workplace->get_logic_item(CItem::gate_id)->get_id();
+                               workplace->get_logic_item(CItem::gate_id)->set_out_connected(true);
                                tmp_line.store_id = ID;
                                workplace->lista_lineas_in.push_back(tmp_line);
                                workplace->queue_draw();        
@@ -57,7 +58,12 @@ bool Exclusa::on_button_press_event(GdkEventButton *event)
                                workplace->lista_lineas_out.push_back(tmp_line);
                                workplace->queue_draw();
                        }
+                       CItem::gate_id = -1;
                }
+               Glib::ustring text;
+               if(estado) text = name+"  Estado: ABIERTO";
+               else text = name+"  Estado: CERRADO";
+               status_bar->push ( text, 0);            
        }
        
        if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){