summaryrefslogtreecommitdiff
path: root/textscreen/txt_gui.h
diff options
context:
space:
mode:
authorSimon Howard2006-10-23 07:13:16 +0000
committerSimon Howard2006-10-23 07:13:16 +0000
commit9ee3b53c8ea0b4d731cd7dbdb876a5422e144b82 (patch)
tree1536d2b0ed3c6457235ee9cc052dc0a676fa6923 /textscreen/txt_gui.h
parentc4c79440c404fabc7a77e1d4561ff707e223233a (diff)
downloadchocolate-doom-9ee3b53c8ea0b4d731cd7dbdb876a5422e144b82.tar.gz
chocolate-doom-9ee3b53c8ea0b4d731cd7dbdb876a5422e144b82.tar.bz2
chocolate-doom-9ee3b53c8ea0b4d731cd7dbdb876a5422e144b82.zip
Stackable clip areas (useful for a future implementation of scrollable
panes). Subversion-branch: /trunk/chocolate-doom Subversion-revision: 713
Diffstat (limited to 'textscreen/txt_gui.h')
-rw-r--r--textscreen/txt_gui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/textscreen/txt_gui.h b/textscreen/txt_gui.h
index 65c97c66..5c120f6c 100644
--- a/textscreen/txt_gui.h
+++ b/textscreen/txt_gui.h
@@ -32,5 +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_InitClipArea(void);
+void TXT_PushClipArea(int x1, int x2, int y1, int y2);
+void TXT_PopClipArea(void);
+
#endif /* #ifndef TXT_GUI_H */