]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/workplace.h
hay pequenias modificaciones en el workplace, se cuelga por eso pero en un rato lo...
[z.facultad/75.42/plaqui.git] / Constructor / workplace.h
index 7054a354e43afdbc6c6bf1afa658ce5ed8aa3d28..2bb065318914f57221a27a0d2a582299affbe941 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef _H_WORKPLACE_
 #define _H_WORKPLACE_
 
 #ifndef _H_WORKPLACE_
 #define _H_WORKPLACE_
 
@@ -6,19 +5,23 @@
 #include <gdkmm/gc.h>
 #include <gtkmm.h>
 #include <libglademm.h>
 #include <gdkmm/gc.h>
 #include <gtkmm.h>
 #include <libglademm.h>
-#include "item.h"
 
 class CItem;
 
 
 class CItem;
 
+typedef struct {
+       CItem *logic, *store;
+}t_line;
+
 class WorkPlace:public Gtk::Fixed {
 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);
+               void delete_item(int _id);
+               void delete_line(int _id);      
+               CItem *get_logic_item(int _id);
+               std::list<CItem *> *listaItems, *lista_logic_Items;
+               std::list<t_line> lista_lineas;
 };
 
 #endif
 };
 
 #endif