summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-07-05 20:13:28 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-07-05 20:13:28 +0000
commit9f2ea3be4c50f0e30153fc648f3219b5bd7f3fa3 (patch)
tree60fd512f5e4d78697342ecf0891f31c2367abeea /desktop/browser.h
parent1f9b970f57d50f5fe3f812c7ada63fe3f66478b5 (diff)
downloadnetsurf-9f2ea3be4c50f0e30153fc648f3219b5bd7f3fa3.tar.gz
netsurf-9f2ea3be4c50f0e30153fc648f3219b5bd7f3fa3.tar.bz2
Iframe scrollbars.
svn path=/trunk/netsurf/; revision=12571
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index 0949e856e..ced12af49 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -60,6 +60,8 @@ typedef enum {
DRAGGING_SELECTION,
DRAGGING_PAGE_SCROLL,
DRAGGING_FRAME,
+ DRAGGING_SCR_X,
+ DRAGGING_SCR_Y,
DRAGGING_OTHER
} browser_drag_type;
@@ -135,6 +137,9 @@ struct browser_window {
int width;
int height;
+ struct scrollbar *scroll_x; /**< Horizontal scroll. */
+ struct scrollbar *scroll_y; /**< Vertical scroll. */
+
/** scale of window contents */
float scale;