From: Andrea Zagli Date: Mon, 3 Dec 2012 11:46:26 +0000 (+0100) Subject: Aggiunta la funzione Solipa::apri_collegamento. X-Git-Tag: 0.5.0~3^2~3 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=3f5bdea9601e86fadd35c22b07f9db05b4223fa3;p=solipa%2Flibsolipa Aggiunta la funzione Solipa::apri_collegamento. --- diff --git a/src/utils.c b/src/utils.c index dd73856..44ebb17 100644 --- a/src/utils.c +++ b/src/utils.c @@ -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. diff --git a/tests/Makefile.am b/tests/Makefile.am index d4ef0a3..1dc28b6 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -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 index 0000000..f6d1490 --- /dev/null +++ b/tests/utils_apri_collegamento.c @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2012 Andrea Zagli + * + * 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 +#include + +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; +}