* Se agregan verificaciones varias para conexion != NULL (se sigue colgando el desconectar)
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
public:
ViewExclusa(Glib::ustring _name, int orientacion);
virtual ~ViewExclusa();
+
+ virtual std::string get_cap_flow() { return "Flujo Actual :"; }
+ virtual std::string get_cap_extra() { return "Estado : "; }
+ virtual std::string get_extra() { return (open)?"Abierta":"Cerrada"; }
};
#endif
public:
ViewTank(Glib::ustring _name, int orientacion);
virtual ~ViewTank();
+
+ virtual std::string get_cap_flow() { return "Capacidad :"; }
+ virtual std::string get_cap_extra() { return "Liquido :"; }
+ virtual std::string get_extra();
};
#endif
// Actualiza el estado de una planta
void read_status_xml(const std::string &frame);
float get_float_from_xml(xmlNodePtr nodo);
+ bool get_bool_from_xml(xmlNodePtr nodo);
+
// Funciones de carga del XML
bool is_xml_loaded;
void loadXML();
Gtk::Entry *txt_target, *txt_command, *txt_args;
Gtk::TextView *txt_view;
Gtk::Fixed *work_place;
- Gtk::Label *lbl_nombre, *lbl_color, *lbl_flujo;
+ Gtk::Label *lbl_nombre, *lbl_color, *lbl_flujo, *lbl_extra, *lbl_cap_flujo, *lbl_cap_extra;
Gtk::Image *ico_conected;
// Callbacks del menu y la barra
<child>
<widget class="GtkTable" id="table3">
<property name="visible">True</property>
- <property name="n_rows">3</property>
+ <property name="n_rows">4</property>
<property name="n_columns">2</property>
<property name="homogeneous">False</property>
<property name="row_spacing">0</property>
<property name="column_spacing">0</property>
<child>
- <widget class="GtkLabel" id="label19">
+ <widget class="GtkLabel" id="lbl_cap_nombre">
<property name="visible">True</property>
<property name="label" translatable="yes">Nombre : </property>
<property name="use_underline">False</property>
</child>
<child>
- <widget class="GtkLabel" id="label20">
+ <widget class="GtkLabel" id="lbl_cap_flujo">
<property name="visible">True</property>
<property name="label" translatable="yes">Flujo Actual : </property>
<property name="use_underline">False</property>
</child>
<child>
- <widget class="GtkLabel" id="label21">
+ <widget class="GtkLabel" id="lbl_cap_color">
<property name="visible">True</property>
<property name="label" translatable="yes">Color : </property>
<property name="use_underline">False</property>
<property name="y_options"></property>
</packing>
</child>
+
+ <child>
+ <widget class="GtkLabel" id="lbl_cap_extra">
+ <property name="visible">True</property>
+ <property name="label" translatable="yes">Extra : </property>
+ <property name="use_underline">False</property>
+ <property name="use_markup">False</property>
+ <property name="justify">GTK_JUSTIFY_LEFT</property>
+ <property name="wrap">False</property>
+ <property name="selectable">False</property>
+ <property name="xalign">0</property>
+ <property name="yalign">0.5</property>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
+ </widget>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="right_attach">1</property>
+ <property name="top_attach">3</property>
+ <property name="bottom_attach">4</property>
+ <property name="x_options">fill</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
+
+ <child>
+ <widget class="GtkLabel" id="lbl_extra">
+ <property name="visible">True</property>
+ <property name="label" translatable="yes">...</property>
+ <property name="use_underline">False</property>
+ <property name="use_markup">False</property>
+ <property name="justify">GTK_JUSTIFY_LEFT</property>
+ <property name="wrap">False</property>
+ <property name="selectable">False</property>
+ <property name="xalign">0</property>
+ <property name="yalign">0.5</property>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
+ </widget>
+ <packing>
+ <property name="left_attach">1</property>
+ <property name="right_attach">2</property>
+ <property name="top_attach">3</property>
+ <property name="bottom_attach">4</property>
+ <property name="x_options">fill</property>
+ <property name="y_options"></property>
+ </packing>
+ </child>
</widget>
</child>
#include "item_tank.h"
+#include <sstream>
ViewTank::ViewTank(Glib::ustring _name, int orientacion):ViewItem(_name)
{
{
}
+std::string ViewTank::get_extra()
+{
+ std::stringstream ss;
+ std::string s;
+ ss << extra;
+ ss >> s;
+ return s;
+}
+
txt_view = 0;
txt_target = txt_command = txt_args = 0;
work_place = 0;
- lbl_nombre = lbl_color = lbl_flujo = 0;
+ lbl_cap_flujo = lbl_cap_extra = lbl_extra = lbl_nombre = lbl_color = lbl_flujo = 0;
rg->get_widget("lbl_nombre", lbl_nombre);
+ rg->get_widget("lbl_extra", lbl_extra);
+ rg->get_widget("lbl_cap_extra", lbl_cap_extra);
+ rg->get_widget("lbl_cap_flujo", lbl_cap_flujo);
rg->get_widget("lbl_flujo", lbl_flujo);
rg->get_widget("mnu_file_connect", conect);
rg->get_widget("mnu_file_disconnect", mnu_disconnect);
Principal::~Principal()
{
- delete conexion;
+ if (conexion != NULL)
+ delete conexion;
}
void Principal::on_dlg_connect_ok()
{
if (conexion == NULL) return;
+ PlaQui::Server::Command c("transmission", "stop");
+ c.add_arg(conexion->get_host());
+ c.add_arg("7528");
+ conexion->send(c);
conexion->finish();
}
{
lbl_nombre->set_text(i->get_name());
lbl_flujo->set_text(i->get_actual_flow());
+ lbl_extra->set_text(i->get_extra());
+
+ lbl_cap_flujo->set_text(i->get_cap_flow());
+ lbl_cap_extra->set_text(i->get_cap_extra());
+
txt_view->get_buffer()->insert_at_cursor("Selecciono ");
txt_view->get_buffer()->insert_at_cursor(i->get_name());
txt_view->get_buffer()->insert_at_cursor("\n");
ico_conected->set( Gtk::Stock::YES , Gtk::IconSize(Gtk::ICON_SIZE_LARGE_TOOLBAR));
// Pido la planta por defecto
- PlaQui::Server::Command c("plant", "get");
- c.add_arg("default");
- conexion->send(c);
+ if (conexion != NULL) {
+ PlaQui::Server::Command c("plant", "get");
+ c.add_arg("default");
+ conexion->send(c);
+ }
}
void Principal::on_conexion_frame(const std::string &frame)
{
- std::cout << "FRAME" << std::endl;
read_status_xml(frame);
}
xmlNodePtr nodo, items, props;
nodo = document->children;
float tmp;
+ bool tmp_b;
if (strcmp((char *)nodo->name, "plantstatus") == 0) {
std::cout << "LEGO EL XML!" << std::endl;
if (xmlStrcmp(items->name, BAD_CAST"float")==0) {
tmp = get_float_from_xml(items->children);
item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_actual_flow(tmp);
+ } else if (xmlStrcmp(items->name, BAD_CAST"exclusa")==0) {
+ tmp_b = get_bool_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_open(tmp_b);
}
- if (item_name != "")
- mapItems[item_name]->set_actual_flow(tmp);
}
items = items->next;
}
}
nodo = nodo->next;
}
- std::cout << "get_float == " << tmp << std::endl;
return tmp;
}
+bool Principal::get_bool_from_xml(xmlNodePtr nodo)
+{
+ std::string tmp;
+ while (nodo != NULL) {
+ if (nodo->type == XML_ELEMENT_NODE) {
+ if (xmlStrcmp(nodo->name, BAD_CAST"active")==0) {
+ tmp = (char *)XML_GET_CONTENT(nodo->children);
+ break;
+ }
+ }
+ nodo = nodo->next;
+ }
+ return tmp == "true";
+}
+