5 #include <gtkmm/drawingarea.h>
8 #include <libglademm.h>
9 #include <gtkmm/entry.h>
11 class Item:public Gtk::DrawingArea {
13 Item(Glib::ustring _name);
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);
21 Glib::RefPtr<Gdk::Pixbuf> image;