]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/include/item.h
* Se completa el cliente. Ya muestra todas las propiedades y el ultimo item que
[z.facultad/75.42/plaqui.git] / Client / include / item.h
index 341039dedc4c8b32ae1192e7db083d5b4b9a7567..fca3b79594c8478e0880584b78f9ef094cb3ee1e 100644 (file)
@@ -8,18 +8,30 @@
 #include <libglademm.h>
 #include <gtkmm/entry.h>
 
 #include <libglademm.h>
 #include <gtkmm/entry.h>
 
-class Item:public Gtk::DrawingArea {
+class ViewItem:public Gtk::EventBox {
 public:
 public:
-       Item(Glib::ustring _name);
-       virtual ~Item();
-       virtual bool on_expose_event(GdkEventExpose* event);
+       ViewItem(Glib::ustring _name);
+       virtual ~ViewItem();
+//     virtual bool on_expose_event(GdkEventExpose* event);
        Glib::ustring get_name();
        void set_position(int _x, int _y);
        void set_name(Glib::ustring _name);
        Glib::ustring get_name();
        void set_position(int _x, int _y);
        void set_name(Glib::ustring _name);
+       void set_actual_flow(float f) { actual_flow = f; }
+       void set_open(bool b) { open = b; }
+       void set_extra(float f) { extra = f; }
+
+       
+       std::string get_actual_flow();
+       virtual std::string get_cap_flow() { return "Flujo Actual :"; }
+       virtual std::string get_cap_extra() { return ""; }
+       virtual std::string get_extra() { return ""; }
 protected:
        Glib::ustring name;
 protected:
        Glib::ustring name;
-       Glib::RefPtr<Gdk::Pixbuf> image;
+       Gtk::Image image;
        int x, y;
        int x, y;
+       float actual_flow, extra;
+       bool open;
 };
 
 #endif
 };
 
 #endif
+