#include "workplace.h"
#include "item.h"
+int WorkPlace::pointed = -1;
+
WorkPlace::WorkPlace( BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml> &refGlade):Gtk::Fixed(cobject)
{
}
color.set_rgb(255,0,0);
gc->set_rgb_bg_color(color);
get_style()->set_black(color);
+ int w, z;
std::list<t_line>::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());
+ temp.store->get_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;
void WorkPlace::delete_item(int _id)
{
+ CItem::logic_connect = false;
std::list<CItem*>::iterator i = listaItems->begin();
while ( i != listaItems->end() ){
CItem *temp = *i;
CItem *temp = *i;
if ( temp->get_id() == _id ){
delete_line(_id);
- listaItems->erase(i);
+ lista_logic_Items->erase(i);
delete temp;
break;
}
{
std::list<t_line>::iterator i = lista_lineas.begin();
while ( i != lista_lineas.end() ){
- if ( ((*i).logic->get_id() == _id) || ((*i).store->get_id() == _id) )
+ if ( (*i).store->get_id() == _id ) {
lista_lineas.erase(i);
+ i = lista_lineas.begin();
+ }
i++;
}
+ i = lista_lineas.begin();
+ while ( i != lista_lineas.end() ){
+ if ( (*i).logic->get_id() == _id ) {
+ lista_lineas.erase(i);
+ i = lista_lineas.begin();
+ }
+ i++;
+ }
}