From: Ricardo Markiewicz Date: Thu, 20 Nov 2003 05:29:39 +0000 (+0000) Subject: * Se completa el cliente. Ya muestra todas las propiedades y el ultimo item que X-Git-Tag: svn_import~230 X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/commitdiff_plain/2bfad376fbc5a10a08ee8f18267234126d34e0bc?ds=sidebyside * Se completa el cliente. Ya muestra todas las propiedades y el ultimo item que se selecciono se va actualizando automaticamente * Se pone por default el puero 7522 en el Cliente * Se modifica el XML de prueba para llegar a ver como se actualiza el tanque. Hay un bug en la Division (maldita sea!), vere si llego a encontrar que es antes de maƱana. --- diff --git a/Client/include/principal.h b/Client/include/principal.h index 9b92e09..868f6f4 100644 --- a/Client/include/principal.h +++ b/Client/include/principal.h @@ -39,12 +39,14 @@ protected: void loadUnion(xmlNodePtr nodo); void loadDrain(xmlNodePtr nodo); - Glib::Dispatcher load_xml_dispatch; + Glib::Dispatcher load_xml_dispatch, update_ui; std::string xml_body; // Archivo XML del Padre Glib::RefPtr refXml; + // Para la actualizacion automatica + ViewItem *last_selected; // Dialogo de Conectar DlgConectar *dlg_conectar; Gtk::Entry *txt_target, *txt_command, *txt_args; @@ -53,6 +55,9 @@ protected: Gtk::Label *lbl_nombre, *lbl_color, *lbl_flujo, *lbl_extra, *lbl_cap_flujo, *lbl_cap_extra; Gtk::Image *ico_conected; + // Actualiza las propiedades en la ventana del item actual + void update_items_prop(); + // Callbacks del menu y la barra virtual void on_mnu_file_exit(); virtual void on_mnu_file_connect(); diff --git a/Client/src/client.glade b/Client/src/client.glade index 5ddebe1..05dcc58 100644 --- a/Client/src/client.glade +++ b/Client/src/client.glade @@ -1128,7 +1128,7 @@ GTK_UPDATE_ALWAYS False False - 1234 1 65535 1 10 10 + 7522 1 65535 1 10 10 1 diff --git a/Client/src/principal.cpp b/Client/src/principal.cpp index 2e8d708..868e050 100644 --- a/Client/src/principal.cpp +++ b/Client/src/principal.cpp @@ -54,7 +54,8 @@ Principal::Principal(BaseObjectType *co, const Glib::RefPtr & 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 ) ); } @@ -147,16 +148,25 @@ void Principal::on_mnu_help_about() 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() @@ -174,7 +184,9 @@ 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() @@ -499,7 +511,6 @@ void Principal::read_status_xml(const std::string &frame) 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) { @@ -513,11 +524,33 @@ void Principal::read_status_xml(const std::string &frame) 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(); } } diff --git a/Server/tests/prueba.xml b/Server/tests/prueba.xml index 6b4e36c..00880ec 100644 --- a/Server/tests/prueba.xml +++ b/Server/tests/prueba.xml @@ -83,7 +83,7 @@ 416 - 40,00 + 4,00 exclusa18 drenaje8