1 /*
2  *	xtrojka (c) 1994,1995,1996 Maarten Los
3  *
4  *	#include "COPYRIGHT"
5  *
6  *	created:	12.iii.1996
7  *	modified:
8  *
9  *
10  */
11 
12 #ifndef _window_h_
13 #define _window_h_
14 
15 /*
16  * dimensions of the various windows (those are fixed!)
17  */
18 
19 #define WIN_XSIZE	182		/* width + height of trojka window */
20 #define WIN_YSIZE	380
21 
22 /*
23  * dimensions of a pillar
24  */
25 #define PILLAR_XSIZE	51
26 #define PILLAR_YSIZE	WIN_YSIZE
27 
28 
29 /*
30  * dimensions of a block
31  */
32 #define BLOCK_XSIZE	36
33 #define BLOCK_YSIZE	19
34 
35 
36 /*
37  *	TODO: read these from the application environment!!!!!!!!!!
38  */
39 #define MBARHEIGHT	24
40 #define BORDER		4
41 
42 
43 /*
44  *	function prototypes
45  */
46 void init_windows(void);
47 void fix_dimensions(Widget);
48 void clear_window(Widget);
49 
50 #endif /* _window_h_ */
51