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.
--- /dev/null
+/*
+ * 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;
+}