conexion = NULL;
is_xml_loaded = false;
-
+ last_selected = NULL;
+ update_ui.connect( SigC::slot(*this, &Principal::update_items_prop ) );
load_xml_dispatch.connect( SigC::slot(*this, &Principal::loadXML ) );
}
bool Principal::on_item_clicked(GdkEventButton *e, ViewItem *i)
{
- 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");
+
+ last_selected = i;
+ update_items_prop();
+}
+
+void Principal::update_items_prop()
+{
+ if (last_selected == NULL) return;
+
+ lbl_nombre->set_text(last_selected->get_name());
+ lbl_flujo->set_text(last_selected->get_actual_flow());
+ lbl_extra->set_text(last_selected->get_extra());
+
+ lbl_cap_flujo->set_text(last_selected->get_cap_flow());
+ lbl_cap_extra->set_text(last_selected->get_cap_extra());
}
void Principal::on_conexion_connected()
void Principal::on_conexion_frame(const std::string &frame)
{
- read_status_xml(frame);
+ if (conexion != NULL) {
+ read_status_xml(frame);
+ }
}
void Principal::on_conexion_finished()
bool tmp_b;
if (strcmp((char *)nodo->name, "plantstatus") == 0) {
- std::cout << "LEGO EL XML!" << std::endl;
items = nodo->children;
while (items != NULL) {
if (items->type == XML_ELEMENT_NODE) {
tmp_b = get_bool_from_xml(items->children);
item_name = (char *)xmlGetProp(items, BAD_CAST"name");
mapItems[item_name]->set_open(tmp_b);
+ } else if (xmlStrcmp(items->name, BAD_CAST"pump")==0) {
+ tmp_b = get_bool_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_open(tmp_b);
+ } else if (xmlStrcmp(items->name, BAD_CAST"tank")==0) {
+ xmlNodePtr nodo_tmp = items->children;
+ float cap, lit;
+ cap = lit = -1;
+ while (nodo_tmp != NULL) {
+ if (nodo_tmp->type == XML_ELEMENT_NODE) {
+ if (xmlStrcmp(nodo_tmp->name, BAD_CAST"capacity")==0)
+ cap = atof( (char *)XML_GET_CONTENT(nodo_tmp->children) );
+ else if (xmlStrcmp(nodo_tmp->name, BAD_CAST"litros")==0)
+ lit= atof( (char *)XML_GET_CONTENT(nodo_tmp->children) );
+ }
+ nodo_tmp = nodo_tmp->next;
+ }
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_actual_flow(cap);
+ mapItems[item_name]->set_extra(lit);
}
-
}
items = items->next;
}
+
+ // Actualizo la UI
+ update_ui();
}
}