X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f85e6b00bd29ddff6067db8c6d4c56f53bcf4c0b..ee2cb3d6c26ae319d20bde28f415393e96611ece:/Constructor/src/exclusa.cpp?ds=sidebyside diff --git a/Constructor/src/exclusa.cpp b/Constructor/src/exclusa.cpp index 4d07994..ea152b3 100644 --- a/Constructor/src/exclusa.cpp +++ b/Constructor/src/exclusa.cpp @@ -39,13 +39,13 @@ bool Exclusa::on_button_press_event(GdkEventButton *event) t_line tmp_line; if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) { combo_entry->set_text(name); + WorkPlace::pointed = ID; if (CItem::logic_connect) { tmp_line.logic = workplace->get_logic_item(CItem::quien); tmp_line.store = this; workplace->lista_lineas.push_back(tmp_line); workplace->on_expose_event(&e); - } - CItem::logic_connect = false; + } } if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){ @@ -73,6 +73,7 @@ bool Exclusa::on_button_press_event(GdkEventButton *event) if (estado) exclusa_pty_wnd->rd_btn_open->set_active(true); exclusa_pty_wnd->show(); } + workplace->on_expose_event(&e); return true; } @@ -194,6 +195,19 @@ ConnectorType Exclusa::get_connector_type(int _a, int _b) return UNDEF; } +void Exclusa::get_logic_connect_position(int& _a, int& _b) +{ + switch (imgActual) { + case 0: + _a = x + image->get_width()/2; + _b = y; + break; + case 1: + _a = x + image->get_width(); + _b = y + image->get_height()/2; + } +} + void Exclusa::set_default_connector() { connect_vec[0].type = UNDEF;