X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/ea7708f0d91b00a54cc5f136a67e9f9bd272329d..fe35ed0badc6a1a01237027effb74b82acbdb9e5:/Constructor/src/or.cpp?ds=sidebyside diff --git a/Constructor/src/or.cpp b/Constructor/src/or.cpp index d7e8a78..5c63e70 100644 --- a/Constructor/src/or.cpp +++ b/Constructor/src/or.cpp @@ -2,6 +2,7 @@ Or::Or() { + out_connected = false; in_x = x; in_y = y+16; out_x = x+32; @@ -26,9 +27,14 @@ bool Or::on_button_press_event(GdkEventButton *event) { if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) { if ( CItem::logic_connect ) { - CItem::gate_id = ID; - WorkPlace::pointed = ID; - workplace->queue_draw(); + if ( detect_click_position((int)event->x, (int)event->y ) == OUT && !out_connected) { + CItem::gate_id = ID; + WorkPlace::pointed = ID; + } + if ( detect_click_position((int)event->x, (int)event->y ) == IN ) { + CItem::gate_id = ID; + WorkPlace::pointed = ID; + } } list_pointed->push_back(name); combo_entry->set_popdown_strings(*list_pointed); @@ -217,3 +223,8 @@ void Or::get_out_logic_connect_position(int& _a, int& _b) _a =out_x; _b =out_y; } + +void Or::set_out_connected(bool _o) +{ + out_connected = _o; +}