From 4b10485de13d5ba23ab496092184c15d4d4bc9a1 Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Mon, 28 Feb 2011 15:24:30 +0000 Subject: Publishing 'history_go' function and creating API to enumerate all history items reachable by the forward or back buttons. svn path=/trunk/netsurf/; revision=11856 --- desktop/history_core.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'desktop/history_core.h') diff --git a/desktop/history_core.h b/desktop/history_core.h index 4f4cf0c2a..be09fb1cb 100644 --- a/desktop/history_core.h +++ b/desktop/history_core.h @@ -70,6 +70,26 @@ typedef bool (*history_enumerate_cb)(const struct history *history, int x0, int */ void history_enumerate(const struct history *history, history_enumerate_cb cb, void *user_data); +/** + * Enumerate all entries that will be reached by the 'forward' button + * + * \param history The history object to enumerate in + * \param cb The callback function + * \param user_data Data passed to the callback + */ +void history_enumerate_forward( struct history *history, + history_enumerate_cb cb, void *user_data ); + +/** + * Enumerate all entries that will be reached by the 'back' button + * + * \param history The history object to enumerate in + * \param cb The callback function + * \param user_data Data passed to the callback + */ +void history_enumerate_back( struct history *history, + history_enumerate_cb cb, void *user_data ); + /** * Returns the URL to a history entry * @@ -94,4 +114,15 @@ const char *history_entry_get_fragment_id(const struct history_entry *entry); */ const char *history_entry_get_title(const struct history_entry *entry); +/** + * Open a history entry in the specified browser window + * + * \param bw browser window + * \param history history containing entry + * \param entry entry to open + * \param new_window open entry in new window + */ +void history_go(struct browser_window *bw, struct history *history, + struct history_entry *entry, bool new_window); + #endif -- cgit v1.2.3