]> 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 dd845d48099f689b52215e3d0d2fa6b937aa488d..fca3b79594c8478e0880584b78f9ef094cb3ee1e 100644 (file)
@@ -17,12 +17,20 @@ public:
        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;
        Gtk::Image image;
        int x, y;
-       float actual_flow;
+       float actual_flow, extra;
+       bool open;
 };
 
 #endif