Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-navigation-action.h
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2005-01-11 11:21:52 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-01-11 11:21:52 (GMT)
commitdbe299f7b2412d318f0eda7c401feba68c8663e3 (patch)
tree3f591b2a03498dc29e62335046c9f8f1d43f33a0 /shell/ev-navigation-action.h
parent2ab647bef73e49d2327172c7593a49887c60ff8f (diff)
Implement history dropdowns
2005-01-11 Marco Pesenti Gritti <marco@gnome.org> * shell/ev-history.c: (ev_history_get_property), (ev_history_set_property), (ev_history_class_init), (ev_history_add_page), (ev_history_set_current_index): * shell/ev-navigation-action.c: (ev_navigation_action_set_history), (activate_menu_item_cb), (new_history_menu_item), (build_menu), (ev_navigation_action_finalize): * shell/ev-navigation-action.h: * shell/ev-view.c: (ev_view_set_document), (ev_view_go_back), (ev_view_go_forward), (ev_view_get_find_status_message), (history_index_changed_cb), (ev_view_set_history): * shell/ev-view.h: * shell/ev-window.c: (update_total_pages), (ev_window_open), (update_current_page), (register_custom_actions): Implement history dropdowns
Diffstat (limited to 'shell/ev-navigation-action.h')
-rw-r--r--shell/ev-navigation-action.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/ev-navigation-action.h b/shell/ev-navigation-action.h
index 8bb7943..fe9b9d7 100644
--- a/shell/ev-navigation-action.h
+++ b/shell/ev-navigation-action.h
@@ -24,6 +24,8 @@
#include <gtk/gtkaction.h>
+#include "ev-history.h"
+
G_BEGIN_DECLS
#define EV_TYPE_NAVIGATION_ACTION (ev_navigation_action_get_type ())
@@ -56,7 +58,9 @@ struct _EvNavigationActionClass
GtkActionClass parent_class;
};
-GType ev_navigation_action_get_type (void);
+GType ev_navigation_action_get_type (void);
+void ev_navigation_action_set_history (EvNavigationAction *action,
+ EvHistory *history);
G_END_DECLS