+{
+ Glib::ustring name;
+ if ( ! check_connection(name) ) {
+ dlg_connect->set_title("Error");
+ dlg_label->set_text("El elemento "+name+" no esta conectado\n\t\tcorrectamente");
+ dlg_connect->show();
+ } else {
+ dlg_connect->set_title("Conexion");
+ dlg_label->set_text("Los elementos estan conectados\n\t\tcorrectamente");
+ dlg_connect->show();
+ }
+}
+
+
+bool Constructor::check_connection(Glib::ustring& name)