aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-gui.c28
-rw-r--r--lib/ephy-gui.h11
2 files changed, 35 insertions, 4 deletions
diff --git a/lib/ephy-gui.c b/lib/ephy-gui.c
index ead789762..431b1cea2 100644
--- a/lib/ephy-gui.c
+++ b/lib/ephy-gui.c
@@ -22,7 +22,9 @@
#include <ctype.h>
#include <string.h>
#include <libgnome/gnome-i18n.h>
+#include <libgnome/gnome-help.h>
#include <gtk/gtktreemodel.h>
+#include <gtk/gtkmessagedialog.h>
/* Styles for tab labels */
GtkStyle *loading_text_style = NULL;
@@ -146,3 +148,29 @@ ephy_gui_confirm_overwrite_file (GtkWidget *parent, const char *filename)
return res;
}
+
+void
+ephy_gui_help (GtkWindow *parent,
+ const char *file_name,
+ const char *link_id)
+{
+ GError *err = NULL;
+
+ gnome_help_display (file_name, link_id, &err);
+
+ if (err != NULL)
+ {
+ GtkWidget *dialog;
+ dialog = gtk_message_dialog_new (parent,
+ GTK_DIALOG_DESTROY_WITH_PARENT,
+ GTK_MESSAGE_ERROR,
+ GTK_BUTTONS_OK,
+ _("Could not display help: %s"), err->message);
+ g_signal_connect (G_OBJECT (dialog), "response",
+ G_CALLBACK (gtk_widget_destroy),
+ NULL);
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
+ gtk_widget_show (dialog);
+ g_error_free (err);
+ }
+}
diff --git a/lib/ephy-gui.h b/lib/ephy-gui.h
index 903f6e5bb..4db9caffb 100644
--- a/lib/ephy-gui.h
+++ b/lib/ephy-gui.h
@@ -22,24 +22,27 @@
/* system includes */
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
-#include <libgnomeui/gnome-dialog.h>
#include <gnome.h>
G_BEGIN_DECLS
-void ephy_gui_menu_position_under_widget (GtkMenu *menu,
+void ephy_gui_menu_position_under_widget (GtkMenu *menu,
gint *x,
gint *y,
gboolean *push_in,
gpointer user_data);
-gint ephy_gui_gtk_radio_button_get (GtkRadioButton *radio_button);
+gint ephy_gui_gtk_radio_button_get (GtkRadioButton *radio_button);
-void ephy_gui_gtk_radio_button_set (GtkRadioButton *radio_button,
+void ephy_gui_gtk_radio_button_set (GtkRadioButton *radio_button,
gint index);
gboolean ephy_gui_confirm_overwrite_file (GtkWidget *parent,
const char *filename);
+
+void ephy_gui_help (GtkWindow *parent,
+ const char *file_name,
+ const char *link_id);
G_END_DECLS
#endif