+ PlaQui::Server::Command command(txt_target->get_text(), txt_command->get_text());
+ command.add_arg( txt_args->get_text() );
+ txt_view->get_buffer()->insert_at_cursor("Enviando comando\n");
+ try {
+ conexion->send(command);
+ }
+ catch (...) {
+ txt_view->get_buffer()->insert_at_cursor("EXCEPTION EN conexion->send !!\n");
+ }
+
+}
+
+void Principal::on_mnu_prop()
+{
+ /* Parseo de ejemplo de un XML desde archivo */
+ xmlDocPtr document;
+ document = xmlParseFile("test.xml");
+ if (document == NULL) {
+ printf("Error al parsear test.xml\n");
+ return;
+ }
+
+ /* bien, el archivo se parseo bien! */
+ xmlNodePtr nodo, items;
+ nodo = document->children;
+
+ if (strcmp((char *)nodo->name, "planta") == 0) {
+ items = nodo->children;
+ while (items != NULL) {
+ if (items->type == XML_ELEMENT_NODE) {
+ if (strcmp((char *)items->name, "bomba")==0) {
+ loadBomba(items);
+ } else if (strcmp((char *)items->name, "codo")==0) {
+ loadCodo(items);
+ }
+ }
+ items = items->next;
+ }
+ } else {
+ printf("NO ES UNA PLANTA\n");
+ }
+
+
+ printf("Fin parseo!!\n");
+}
+
+void Principal::loadBomba(xmlNodePtr nodo)
+{
+ Glib::ustring name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
+ int orientacion=0, x, y;
+
+ nodo = nodo->children;
+ while (nodo != NULL) {
+ if (nodo->type == XML_ELEMENT_NODE) {
+ if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
+ orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
+ x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
+ y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ }
+ }
+ nodo = nodo->next;
+ }
+
+ // listo, ya recolecte todos los datos, ahora creo el objeto!
+ Bomba *b = Gtk::manage( new Bomba(name, orientacion) );
+ b->set_position(x,y);
+ work_place->put(*b, x, y);
+ b->show();
+}
+
+void Principal::loadCodo(xmlNodePtr nodo)
+{
+ Glib::ustring name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
+ int orientacion=0, x, y;
+
+ nodo = nodo->children;
+ while (nodo != NULL) {
+ if (nodo->type == XML_ELEMENT_NODE) {
+ if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
+ orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
+ x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
+ y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
+ }
+ }
+ nodo = nodo->next;
+ }