]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Client/include/item.h
* Cliente carga todos los widgets (falta exclusa!)
[z.facultad/75.42/plaqui.git] / Client / include / item.h
1 #ifndef _ITEM_H_
2 #define _ITEM_H_
3
4 #include <iostream>
5 #include <gtkmm/drawingarea.h>
6 #include <gtkmm.h>
7 #include <gdkmm.h>
8 #include <libglademm.h>
9 #include <gtkmm/entry.h>
10
11 class ViewItem:public Gtk::EventBox {
12 public:
13         ViewItem(Glib::ustring _name);
14         virtual ~ViewItem();
15 //      virtual bool on_expose_event(GdkEventExpose* event);
16         Glib::ustring get_name();
17         void set_position(int _x, int _y);
18         void set_name(Glib::ustring _name);
19 protected:
20         Glib::ustring name;
21         Gtk::Image image;
22         int x, y;
23 };
24
25 #endif
26