summaryrefslogtreecommitdiff
path: root/textscreen/txt_gui.h
diff options
context:
space:
mode:
authorSimon Howard2009-01-29 22:54:13 +0000
committerSimon Howard2009-01-29 22:54:13 +0000
commit5a122d591e8fdecd767f12e93f13974cfc86f75a (patch)
tree6bde3cbb3a8db2f6c18495248877306ce2744d02 /textscreen/txt_gui.h
parent63c1c6e6dbf7058c162b01a066759bb7b507af45 (diff)
downloadchocolate-doom-5a122d591e8fdecd767f12e93f13974cfc86f75a.tar.gz
chocolate-doom-5a122d591e8fdecd767f12e93f13974cfc86f75a.tar.bz2
chocolate-doom-5a122d591e8fdecd767f12e93f13974cfc86f75a.zip
Add scrollable pane widget to textscreen library.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1437
Diffstat (limited to 'textscreen/txt_gui.h')
-rw-r--r--textscreen/txt_gui.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/textscreen/txt_gui.h b/textscreen/txt_gui.h
index 5c120f6c..3795c65a 100644
--- a/textscreen/txt_gui.h
+++ b/textscreen/txt_gui.h
@@ -32,6 +32,9 @@ void TXT_DrawWindowFrame(char *title, int x, int y, int w, int h);
void TXT_DrawSeparator(int x, int y, int w);
void TXT_DrawString(char *s);
+void TXT_DrawHorizScrollbar(int x, int y, int w, int cursor, int range);
+void TXT_DrawVertScrollbar(int x, int y, int h, int cursor, int range);
+
void TXT_InitClipArea(void);
void TXT_PushClipArea(int x1, int x2, int y1, int y2);
void TXT_PopClipArea(void);