]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/src/principal.cpp
- Se agrega el metodo Model::Simulator::set_open() para abrir y cerrar bombas y
[z.facultad/75.42/plaqui.git] / Client / src / principal.cpp
index 5c53e35c56f1261597ac3bafb572c0b21394e6a1..2b04e38ed2260a4a972cdf2ddf8361365e6ee446 100644 (file)
@@ -50,6 +50,8 @@ Principal::Principal(BaseObjectType *co, const Glib::RefPtr<Gnome::Glade::Xml> &
 
        conexion = NULL;
        is_xml_loaded = false;
 
        conexion = NULL;
        is_xml_loaded = false;
+
+       load_xml_dispatch.connect( SigC::slot(*this, &Principal::loadXML ) );
 }
 
 Principal::~Principal()
 }
 
 Principal::~Principal()
@@ -173,12 +175,16 @@ void Principal::on_conexion_finished()
        conexion = NULL;
 }
 
        conexion = NULL;
 }
 
+#include <gdk/gdk.h>
+
 void Principal::on_conexion_ok(const std::string &body)
 {
        /* lo paso a la carga del XML */
        /* verifico que body este completo */
        if ((body.find("</planta>")>0) && (body.find("<planta>")>0)) {
 void Principal::on_conexion_ok(const std::string &body)
 {
        /* lo paso a la carga del XML */
        /* verifico que body este completo */
        if ((body.find("</planta>")>0) && (body.find("<planta>")>0)) {
-               loadXML(body);
+               //loadXML(body);
+               xml_body = body;
+               load_xml_dispatch();
        } else {
                txt_view->get_buffer()->insert_at_cursor("<IN>\n");
                txt_view->get_buffer()->insert_at_cursor(Glib::locale_to_utf8(body));
        } else {
                txt_view->get_buffer()->insert_at_cursor("<IN>\n");
                txt_view->get_buffer()->insert_at_cursor(Glib::locale_to_utf8(body));
@@ -218,15 +224,14 @@ void Principal::on_get_clicked()
 
 }
 
 
 }
 
-void Principal::loadXML(const std::string &s)
+void Principal::loadXML()
 {
        // ya lo cargue
        if (is_xml_loaded) return;
 
        /* Parseo de ejemplo de un XML desde archivo */
        xmlDocPtr document;
 {
        // ya lo cargue
        if (is_xml_loaded) return;
 
        /* Parseo de ejemplo de un XML desde archivo */
        xmlDocPtr document;
-       std::cout << s.c_str() << std::endl;
-       document = xmlParseMemory(s.c_str(),s.size());
+       document = xmlParseMemory(xml_body.c_str(),xml_body.size());
        if (document == NULL) {
                std::cout << "EEERRRRRRROOOOOOOOOO" << std::endl;
                return;
        if (document == NULL) {
                std::cout << "EEERRRRRRROOOOOOOOOO" << std::endl;
                return;
@@ -257,7 +262,6 @@ void Principal::loadXML(const std::string &s)
                                }
 
                        }
                                }
 
                        }
-                       sleep(2);
                        items = items->next;
                }
        }
                        items = items->next;
                }
        }