X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/07f4e929e15451f6af8ec4d941bcee6742917d0d..d664a4c16bb56138b53e8d6dba92e199bd3ea6c7:/Constructor/workplace.h?ds=sidebyside diff --git a/Constructor/workplace.h b/Constructor/workplace.h index 0677da3..2bb0653 100644 --- a/Constructor/workplace.h +++ b/Constructor/workplace.h @@ -5,21 +5,23 @@ #include #include #include -#include "activezone.h" -#include "item.h" class CItem; -class ActiveZone; + +typedef struct { + CItem *logic, *store; +}t_line; class WorkPlace:public Gtk::Fixed { public: WorkPlace(BaseObjectType* cobject, const Glib::RefPtr &refGlade); virtual ~WorkPlace(); virtual bool on_expose_event(GdkEventExpose *event); - virtual bool on_button_press_event (GdkEventButton *event); - void delete_item(int _id); - std::list *listaItems; - ActiveZone *viewport; + void delete_item(int _id); + void delete_line(int _id); + CItem *get_logic_item(int _id); + std::list *listaItems, *lista_logic_Items; + std::list lista_lineas; }; #endif