summaryrefslogtreecommitdiff
path: root/framebuffer/fb_tk.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2009-03-22 14:34:56 +0000
committerVincent Sanders <vince@netsurf-browser.org>2009-03-22 14:34:56 +0000
commit8db32fc061dd4081dce43700db86eb7f6a7856b5 (patch)
tree0234ded268f14767c9f91f359a7b2f64f57595bb /framebuffer/fb_tk.h
parentc9fc91c6e4ced28336b3681a64a2a9fefaef2a4a (diff)
downloadnetsurf-8db32fc061dd4081dce43700db86eb7f6a7856b5.tar.gz
netsurf-8db32fc061dd4081dce43700db86eb7f6a7856b5.tar.bz2
add vertical scrollbar to freamebuffer
svn path=/trunk/netsurf/; revision=6817
Diffstat (limited to 'framebuffer/fb_tk.h')
-rw-r--r--framebuffer/fb_tk.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/framebuffer/fb_tk.h b/framebuffer/fb_tk.h
index a3b744b4f..965157b97 100644
--- a/framebuffer/fb_tk.h
+++ b/framebuffer/fb_tk.h
@@ -88,6 +88,16 @@ fbtk_create_fill(fbtk_widget_t *window, int x, int y, int width, int height, col
fbtk_widget_t *
fbtk_create_hscroll(fbtk_widget_t *window, int x, int y, int width, int height, colour fg, colour bg);
+/** Create a vertical scroll widget
+ *
+ * Create a vertical scroll widget.
+ *
+ * @param window The window to add the filled area widget to.
+ * @return new widget handle or NULL on error.
+ */
+fbtk_widget_t *
+fbtk_create_vscroll(fbtk_widget_t *window, int x, int y, int width, int height, colour fg, colour bg);
+
/** Create a user widget.
*
* Create a widget which is to be handled entirely by the calling application.