]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/workplace.h
- Ya anda el Receiver (falta meterlo en el ControlClient).
[z.facultad/75.42/plaqui.git] / Constructor / workplace.h
index 67ba45ec2fac202e42f50196d16700d612a4300d..896e908f68d577e213ec53f516f3d85423428071 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef _H_WORKPLACE_
 #define _H_WORKPLACE_
 
@@ -6,25 +5,22 @@
 #include <gdkmm/gc.h>
 #include <gtkmm.h>
 #include <libglademm.h>
-#include "item.h"
+
+class CItem;
 
 typedef struct {
-       int x,y,w,z;
+       CItem *logic, *store;
 }t_line;
 
-class CItem;
-
 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_press_event(GdkEventButton *event);
-               virtual bool on_button_release_event(GdkEventButton *event);
-               void delete_item(int);  
-               std::list<CItem *> *listaItems;
+               virtual ~WorkPlace();
+               virtual bool on_expose_event(GdkEventExpose *event);
+               void delete_item(int _id);      
+               CItem *get_logic_item(int _id);
+               std::list<CItem *> *listaItems, *lista_logic_Items;
                std::list<t_line> lista_lineas;
-               t_line temp;
 };
 
 #endif