X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/ee2cb3d6c26ae319d20bde28f415393e96611ece..fc802b7aea75e90b19cd22d3e5e752620a416af8:/Constructor/src/workplace.cpp diff --git a/Constructor/src/workplace.cpp b/Constructor/src/workplace.cpp index 46b1bcd..e19ae3b 100644 --- a/Constructor/src/workplace.cpp +++ b/Constructor/src/workplace.cpp @@ -30,13 +30,21 @@ bool WorkPlace::on_expose_event(GdkEventExpose *event) gc->set_rgb_bg_color(color); get_style()->set_black(color); int w, z; - std::list::iterator i = lista_lineas.begin(); - while ( i != lista_lineas.end() ) { + std::list::iterator i = lista_lineas_in.begin(); + while ( i != lista_lineas_in.end() ) { t_line temp = *i; - temp.store->get_logic_connect_position(w,z); + temp.store->get_in_logic_connect_position(w,z); get_window()->draw_line (get_style()->get_black_gc(), temp.logic->get_position_x(),temp.logic->get_position_y(), w,z); i++; } + i = lista_lineas_out.begin(); + while ( i != lista_lineas_out.end() ) { + t_line temp = *i; + temp.store->get_out_logic_connect_position(w,z); + get_window()->draw_line (get_style()->get_black_gc(), temp.logic->get_position_x(),temp.logic->get_position_y(), w,z); + i++; + } + return true; } @@ -82,20 +90,48 @@ CItem* WorkPlace::get_logic_item(int _id) void WorkPlace::delete_line(int _id) { - std::list::iterator i = lista_lineas.begin(); - while ( i != lista_lineas.end() ){ + std::list::iterator i = lista_lineas_in.begin(); + while ( i != lista_lineas_in.end() ){ if ( (*i).store->get_id() == _id ) { - lista_lineas.erase(i); - i = lista_lineas.begin(); + lista_lineas_in.erase(i); + i = lista_lineas_in.begin(); } i++; } - i = lista_lineas.begin(); - while ( i != lista_lineas.end() ){ + + i = lista_lineas_in.begin(); + while ( i != lista_lineas_in.end() ){ if ( (*i).logic->get_id() == _id ) { - lista_lineas.erase(i); - i = lista_lineas.begin(); + lista_lineas_in.erase(i); + i = lista_lineas_in.begin(); + } + i++; + } + + i = lista_lineas_out.begin(); + while ( i != lista_lineas_out.end() ){ + if ( (*i).store->get_id() == _id ) { + lista_lineas_out.erase(i); + i = lista_lineas_out.begin(); } i++; } + i = lista_lineas_out.begin(); + while ( i != lista_lineas_out.end() ){ + if ( (*i).logic->get_id() == _id ) { + lista_lineas_out.erase(i); + i = lista_lineas_out.begin(); + } + i++; + } + +} + +void WorkPlace::update_logic_position() +{ + std::list::iterator i = listaItems->begin(); + while ( i != listaItems->end() ){ + (*i)->update_logic_position(); + i++; + } }