gnome-games r8013 - trunk/gnotravex
- From: thomashpa svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-games r8013 - trunk/gnotravex
- Date: Mon, 13 Oct 2008 15:54:06 +0000 (UTC)
Author: thomashpa
Date: Mon Oct 13 15:54:06 2008
New Revision: 8013
URL: http://svn.gnome.org/viewvc/gnome-games?rev=8013&view=rev
Log:
replace gnome_help_display with gtk_show_uri
Modified:
trunk/gnotravex/gnotravex.c
Modified: trunk/gnotravex/gnotravex.c
==============================================================================
--- trunk/gnotravex/gnotravex.c (original)
+++ trunk/gnotravex/gnotravex.c Mon Oct 13 15:54:06 2008
@@ -1884,11 +1884,26 @@
void
help_cb (GtkAction * action, gpointer data)
{
-#ifdef HAVE_GNOME
- gnome_help_display ("gnotravex.xml", NULL, NULL);
-#else
-#warning need to port help to gtk-only!
-#endif /* HAVE_GNOME */
+ GdkScreen *screen;
+ GError *error = NULL;
+
+ screen = gtk_widget_get_screen (GTK_WIDGET (window));
+ gtk_show_uri (screen, "ghelp:gnotravex", gtk_get_current_event_time (), &error);
+
+ if (error != NULL)
+ {
+ GtkWidget *d;
+ d = gtk_message_dialog_new (GTK_WINDOW (window),
+ GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
+ GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
+ "%s", _("Unable to open help file"));
+ gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (d),
+ " %s", error->message);
+ g_signal_connect (d, "response", G_CALLBACK (gtk_widget_destroy), NULL);
+ gtk_window_present (GTK_WINDOW (d));
+
+ g_error_free (error);
+ }
}
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]