X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e5f9e15b59fc1ade287321c796ec7c4b9aa27600..6983220ff84632481c1628720fe15b8f3ac1c9cb:/Constructor/workplace.cpp diff --git a/Constructor/workplace.cpp b/Constructor/workplace.cpp index f3874e3..e1fa47d 100644 --- a/Constructor/workplace.cpp +++ b/Constructor/workplace.cpp @@ -1,13 +1,15 @@ - - #include "workplace.h" #include "item.h" + WorkPlace::WorkPlace( BaseObjectType* cobject, const Glib::RefPtr &refGlade):Gtk::Fixed(cobject) { - } -bool WorkPlace::on_expose_event(GdkEventExpose *e) +WorkPlace::~WorkPlace() +{ +} + +bool WorkPlace::on_expose_event(GdkEventExpose *event) { int x, y; for(x=0; xdraw_point (get_style()->get_black_gc(), x+1,y); get_window()->draw_point (get_style()->get_black_gc(), x-1,y); } + + std::list::iterator i = lista_lineas.begin(); + while ( i != lista_lineas.end() ) { + t_line temp = *i; + get_window()->draw_line (get_style()->get_black_gc(), temp.logic->get_position_x(),temp.logic->get_position_y(), temp.store->get_position_x(),temp.store->get_position_y()); + i++; + } return true; } + +void WorkPlace::delete_item(int _id) +{ + std::list::iterator i = listaItems->begin(); + while ( i != listaItems->end() ){ + CItem *temp = *i; + if ( temp->get_id() == _id ){ + listaItems->erase(i); + delete temp; + break; + } + i++; + } +} + +CItem* WorkPlace::get_logic_item(int _id) +{ + std::list::iterator i = lista_logic_Items->begin(); + while ( i != lista_logic_Items->end() ){ + CItem *temp = *i; + if ( temp->get_id() == _id ) + return temp; + i++; + } + return NULL; +}