aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-gui.h
diff options
context:
space:
mode:
authorDavid Adam Bordoley <bordoley@msu.edu>2003-05-09 00:22:12 +0800
committerDave Bordoley <Bordoley@src.gnome.org>2003-05-09 00:22:12 +0800
commit6be59e74845e71b11e1ade1e7e8de2ad6d87f590 (patch)
tree5931e630f85581ed417fdbbf8a88f772c249ae93 /lib/ephy-gui.h
parent8de67d32c63ed75c7e4fa233bb4d1afd63770943 (diff)
downloadgsoc2013-epiphany-6be59e74845e71b11e1ade1e7e8de2ad6d87f590.tar
gsoc2013-epiphany-6be59e74845e71b11e1ade1e7e8de2ad6d87f590.tar.gz
gsoc2013-epiphany-6be59e74845e71b11e1ade1e7e8de2ad6d87f590.tar.bz2
gsoc2013-epiphany-6be59e74845e71b11e1ade1e7e8de2ad6d87f590.tar.lz
gsoc2013-epiphany-6be59e74845e71b11e1ade1e7e8de2ad6d87f590.tar.xz
gsoc2013-epiphany-6be59e74845e71b11e1ade1e7e8de2ad6d87f590.tar.zst
gsoc2013-epiphany-6be59e74845e71b11e1ade1e7e8de2ad6d87f590.zip
Convenience function for displaying help. Remove unneeded include of
2003-05-08 David Adam Bordoley <bordoley@msu.edu> * lib/ephy-gui.c: (ephy_gui_help): * lib/ephy-gui.h: Convenience function for displaying help. Remove unneeded include of gnome-dialog.h * src/ephy-history-window.c: (cmd_help_contents): * src/prefs-dialog.c: (prefs_dialog_show_help): * src/window-commands.c: (window_cmd_help_contents), (window_cmd_help_about): * src/bookmarks/ephy-bookmark-properties.c: (ephy_bookmark_properties_help), (bookmark_properties_response_cb): * src/bookmarks/ephy-bookmarks-editor.c: (cmd_help_contents): * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_help), (response_cb): Hook up help to windows/dialogs. Add the guilty parties to about. * help/C/epiphany.xml: Fixed the "To Create a New Bookmark" id.
Diffstat (limited to 'lib/ephy-gui.h')
-rw-r--r--lib/ephy-gui.h11
1 files changed, 7 insertions, 4 deletions
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