summaryrefslogtreecommitdiff
path: root/desktop/browser_private.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-09-24 10:44:58 +0100
committerVincent Sanders <vince@kyllikki.org>2017-09-24 10:44:58 +0100
commite219d6f33ce5c319b0e33cda1c3338b000a40aff (patch)
treea155f272c6acb2833eec06300f318678b291933e /desktop/browser_private.h
parentf86e9e505dea633a893b3d2d3b73d4bb8cc3d02b (diff)
parent9ca33854bf35b46a7796b334ace870029d3e36b9 (diff)
downloadnetsurf-e219d6f33ce5c319b0e33cda1c3338b000a40aff.tar.gz
netsurf-e219d6f33ce5c319b0e33cda1c3338b000a40aff.tar.bz2
Merge remote-tracking branch 'origin/tlsa/dsilvers/scrolloffset'
Diffstat (limited to 'desktop/browser_private.h')
-rw-r--r--desktop/browser_private.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/desktop/browser_private.h b/desktop/browser_private.h
index 3cdef5c89..192d22bf0 100644
--- a/desktop/browser_private.h
+++ b/desktop/browser_private.h
@@ -46,6 +46,8 @@ struct history_page {
lwc_string *frag_id; /** Fragment identifier, or NULL. */
char *title; /**< Page title, never NULL. */
struct bitmap *bitmap; /**< Thumbnail bitmap, or NULL. */
+ float scroll_x; /**< Scroll X offset when visited */
+ float scroll_y; /**< Scroll Y offset when visited */
};
/**
@@ -325,7 +327,7 @@ nserror browser_window_history_add(struct browser_window *bw,
struct hlcache_handle *content, lwc_string *frag_id);
/**
- * Update the thumbnail for the current entry.
+ * Update the thumbnail and scroll offsets for the current entry.
*
* \param bw The browser window to update the history within.
* \param content content for current entry
@@ -335,6 +337,17 @@ nserror browser_window_history_update(struct browser_window *bw,
struct hlcache_handle *content);
/**
+ * Retrieve the stored scroll offsets for the current history entry
+ *
+ * \param bw The browser window to retrieve scroll offsets for.
+ * \param sx Pointer to a float for the X scroll offset
+ * \param sy Pointer to a float for the Y scroll offset
+ * \return NSERROR_OK or error code on failure.
+ */
+nserror browser_window_history_get_scroll(struct browser_window *bw,
+ float *sx, float *sy);
+
+/**
* Free a history structure.
*
* \param bw The browser window to destroy the history within.