]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/workplace.h
-ahi borre lo que se me escapo
[z.facultad/75.42/plaqui.git] / Constructor / workplace.h
index 7054a354e43afdbc6c6bf1afa658ce5ed8aa3d28..0677da3011a0414e48357d31c98765ee092499b5 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef _H_WORKPLACE_
 #define _H_WORKPLACE_
 
@@ -6,19 +5,21 @@
 #include <gdkmm/gc.h>
 #include <gtkmm.h>
 #include <libglademm.h>
+#include "activezone.h"
 #include "item.h"
 
 class CItem;
+class ActiveZone;
 
 class WorkPlace:public Gtk::Fixed {
-public:
-       WorkPlace(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml> &refGlade);
-       virtual ~WorkPlace() {}
-       virtual bool on_expose_event(GdkEventExpose *);
-       virtual bool on_button_pressed(GdkEventButton *);
-       void delete_item(int);  
-               
-       std::list<CItem *> *listaItems;
+       public:
+               WorkPlace(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml> &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<CItem *> *listaItems;
+               ActiveZone *viewport;
 };
 
 #endif