summaryrefslogtreecommitdiff
path: root/textscreen/txt_window.h
diff options
context:
space:
mode:
authorSimon Howard2006-05-18 18:48:24 +0000
committerSimon Howard2006-05-18 18:48:24 +0000
commit978ddf539803405ab8fed17e21014ee1ae69fac8 (patch)
tree6f9cf3fe29ec11b9d7b008227061934fededc590 /textscreen/txt_window.h
parentff6493e0efe1c7ea628d8a6b596f915d9c9764e1 (diff)
downloadchocolate-doom-978ddf539803405ab8fed17e21014ee1ae69fac8.tar.gz
chocolate-doom-978ddf539803405ab8fed17e21014ee1ae69fac8.tar.bz2
chocolate-doom-978ddf539803405ab8fed17e21014ee1ae69fac8.zip
Initial working text-mode GUI framework.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 480
Diffstat (limited to 'textscreen/txt_window.h')
-rw-r--r--textscreen/txt_window.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/textscreen/txt_window.h b/textscreen/txt_window.h
new file mode 100644
index 00000000..51610f47
--- /dev/null
+++ b/textscreen/txt_window.h
@@ -0,0 +1,60 @@
+// Emacs style mode select -*- C++ -*-
+//-----------------------------------------------------------------------------
+//
+// $Id$
+//
+// Copyright(C) 1993-1996 Id Software, Inc.
+// Copyright(C) 2006 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+
+#ifndef TXT_WINDOW_H
+#define TXT_WINDOW_H
+
+typedef struct txt_window_s txt_window_t;
+
+#include "txt_widget.h"
+
+struct txt_window_s
+{
+ // Window title
+
+ char *title;
+
+ // Screen coordinates of the centerpoint of the window
+
+ int x, y;
+
+ // Widgets in this window
+
+ txt_widget_t **widgets;
+ int num_widgets;
+
+ // Index of the current selected widget.
+
+ int selected;
+};
+
+txt_window_t *TXT_NewWindow(char *title, int x, int y);
+void TXT_CloseWindow(txt_window_t *window);
+void TXT_AddWidget(txt_window_t *window, txt_widget_t *widget);
+
+void TXT_DrawAllWindows(void);
+
+#endif /* #ifndef TXT_WINDOW_T */
+
+