X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e5f9e15b59fc1ade287321c796ec7c4b9aa27600..67143e098c00b0ee414bde39a78441d8e11fed8b:/Constructor/workplace.h?ds=sidebyside diff --git a/Constructor/workplace.h b/Constructor/workplace.h index 8a26e1d..7054a35 100644 --- a/Constructor/workplace.h +++ b/Constructor/workplace.h @@ -6,12 +6,19 @@ #include #include #include +#include "item.h" + +class CItem; 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; }; #endif