]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Aggiunta la funzione Solipa::apri_collegamento. apri_collegamento
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Mon, 3 Dec 2012 11:46:26 +0000 (12:46 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Mon, 3 Dec 2012 11:46:26 +0000 (12:46 +0100)
src/utils.c
tests/Makefile.am
tests/utils_apri_collegamento.c [new file with mode: 0644]

index dd7385652067a6434f84469ab52134188497462a..44ebb1739842cd0af804423418906eec5b6d18c7 100644 (file)
@@ -1877,6 +1877,24 @@ solipa_gstring_initial_capital (GString *gstring)
        g_string_free (tmp, TRUE);
 }
 
+void
+solipa_apri_collegamento (GtkWindow *transient, const gchar *indirizzo)
+{
+       GAppInfo *gappinfo;
+       GError *error;
+
+       error = NULL;
+       if (!g_app_info_launch_default_for_uri (indirizzo, NULL, &error) || error != NULL)
+               {
+                       solipa_message_dialog (GTK_WIDGET (transient),
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              g_strdup_printf ("Impossibile aprire il collegamento selezionato (%s): %s.",
+                                                               indirizzo,
+                                                               error != NULL && error->message != NULL ? error->message : "nessun dettaglio"));
+               }
+}
+
 /**
  * This function is copied from
  * http://bugzilla.gnome.org/show_bug.cgi?id=524831.
index d4ef0a3554c1ad7000655ef902a5ee7678ae6aaf..1dc28b68388e216810dd413c90a6291a281ad909 100644 (file)
@@ -21,6 +21,7 @@ noinst_PROGRAMS = allegato \
                   ooo \
                   progresswindow \
                   utils \
+                  utils_apri_collegamento \
                   utils_codfisc_piva \
                   utils_format_money \
                   utils_gdatetime \
diff --git a/tests/utils_apri_collegamento.c b/tests/utils_apri_collegamento.c
new file mode 100644 (file)
index 0000000..f6d1490
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * Copyright (C) 2012 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
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <solipa.h>
+#include <utils.h>
+
+GtkWidget *w;
+
+gboolean
+on_w_delete_event (GtkWidget *widget,
+                   GdkEvent *event,
+                   gpointer user_data)
+{
+       return FALSE;
+}
+
+int
+main (int argc, char *argv[])
+{
+
+       gtk_init (&argc, &argv);
+
+       w = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+
+       g_signal_connect (w, "delete-event", G_CALLBACK (on_w_delete_event), NULL);
+       g_signal_connect (w, "destroy", gtk_main_quit, NULL);
+
+       gtk_widget_show (w);
+
+       solipa_apri_collegamento (GTK_WINDOW (w), argv[1]);
+
+       gtk_main ();
+
+       return 0;
+}