X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/67143e098c00b0ee414bde39a78441d8e11fed8b..34fb46485db0fb44f8dcc532866d988f8e54caa2:/Constructor/workplace.h diff --git a/Constructor/workplace.h b/Constructor/workplace.h index 7054a35..c3e2901 100644 --- a/Constructor/workplace.h +++ b/Constructor/workplace.h @@ -1,4 +1,3 @@ - #ifndef _H_WORKPLACE_ #define _H_WORKPLACE_ @@ -6,19 +5,21 @@ #include #include #include +#include "activezone.h" #include "item.h" class CItem; +class ActiveZone; class WorkPlace:public Gtk::Fixed { -public: - WorkPlace(BaseObjectType* cobject, const Glib::RefPtr &refGlade); - virtual ~WorkPlace() {} - virtual bool on_expose_event(GdkEventExpose *); - virtual bool on_button_pressed(GdkEventButton *); - void delete_item(int); - - std::list *listaItems; + public: + WorkPlace(BaseObjectType* cobject, const Glib::RefPtr &refGlade); + virtual ~WorkPlace(); + virtual bool on_expose_event(GdkEventExpose *event); + void delete_item(int _id); + std::list *listaItems; + std::list lista_lineas; + ActiveZone *viewport; }; #endif