Name: @PACKAGE_NAME@
Description: Libreria con l'interfaccia per la gestione del territorio.
Version: @PACKAGE_VERSION@
-Requires: libgdaex >= 0.5.0 libgtkform >= 0.5.0 libgtkformui >= 0.5.0 libzakauthe >= 0.2.0 libzakautho >= 0.0.5 libsolipa >= 0.5.0 libgda-ui-5.0 >= 5.0.0 libzakconfi >= 0.10.0
+Requires: libgdaex >= 0.5.0 libgtkform >= 0.5.0 libgtkformui >= 0.5.0 libzakauthe >= 0.2.0 libzakautho >= 0.0.5 libsolipa >= 0.5.0 libzakconfi >= 0.10.0
Libs: -L${libdir} -lterritorio
Cflags: -I${includedir}
all-no:
$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES)
- $(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) \
+ $(XGETTEXT) --default-domain=$(GETTEXT_PACKAGE) --from-code=UTF-8 \
--msgid-bugs-address='http://bugzilla.gnome.org/enter_bug.cgi?product=glib&keywords=I18N+L10N&component=general' \
--add-comments --keyword=_ --keyword=N_ \
--keyword=C_:1c,2 \
/*
- * Copyright (C) 2011-2016 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2017 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libgda-ui/libgda-ui.h>
#include <libzakutils/libzakutils.h>
#include <libsolipa/libsolipa.h>
GdaDataModel *dm_territorio;
- const GdaDsnInfo *dsn;
-
GString *tmp;
guint id_vie;
TerritorioImportaVieCiviliaPrivate *priv = TERRITORIO_IMPORTA_VIECIVILIA_GET_PRIVATE (a);
- gdaui_init ();
-
priv->commons = commons;
w_main = GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main"));
carea = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
- connection = gdaui_login_new (NULL);
- gdaui_login_set_mode (GDAUI_LOGIN (connection), GDA_UI_LOGIN_HIDE_DSN_SELECTION_MODE);
+ connection = gtk_entry_new ();
gtk_container_add (GTK_CONTAINER (carea), connection);
gtk_widget_show (connection);
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
{
- dsn = gdaui_login_get_connection_information (GDAUI_LOGIN (connection));
- gdaex = gdaex_new_from_string (g_strdup_printf ("%s://%s;%s", dsn->provider, dsn->cnc_string, dsn->auth_string));
+ gdaex = gdaex_new_from_string (gtk_entry_get_text (GTK_ENTRY (connection)));
gtk_widget_destroy (dialog);
if (gdaex == NULL)
{