]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/src/item.cpp
- Se corrige el bug que hacia que no se deje de transmitir con el comando
[z.facultad/75.42/plaqui.git] / Client / src / item.cpp
index 418647ec589f1bccd80856d16504a7bd2e89af34..4ce5846dfa7d2904b2b4745e49977e42b0d45b26 100644 (file)
@@ -1,10 +1,12 @@
 #include "item.h"
 #include "item.h"
-
+#include <sstream>
+#include <string>
 
 ViewItem::ViewItem(Glib::ustring _name):Gtk::EventBox(),image()
 {
        name = _name;
        set_events(Gdk::BUTTON_PRESS_MASK);
 
 ViewItem::ViewItem(Glib::ustring _name):Gtk::EventBox(),image()
 {
        name = _name;
        set_events(Gdk::BUTTON_PRESS_MASK);
+       actual_flow = -1;
        add(image);
 }
 
        add(image);
 }
 
@@ -35,3 +37,13 @@ Glib::ustring ViewItem::get_name()
        return name;
 }
 
        return name;
 }
 
+std::string ViewItem::get_actual_flow()
+{
+       std::stringstream ss;
+       std::string s;
+
+       ss << actual_flow;
+       ss >> s;
+       return s;
+}
+