-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.h
285 lines (262 loc) · 12.2 KB
/
default.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
* default.h --
*
* This file defines the defaults for all options for all widgets.
*
* Copyright (c) 1995 Christian Werner.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#define DEF_FRAME_ATTRIB "normal"
#define DEF_FRAME_BG_COLOR "black"
#define DEF_FRAME_BG_MONO "black"
#define DEF_FRAME_FG_COLOR "white"
#define DEF_FRAME_FG_MONO "white"
#define DEF_FRAME_BORDER NULL
#define DEF_FRAME_HEIGHT "0"
#define DEF_FRAME_TAKE_FOCUS "0"
#define DEF_FRAME_WIDTH "0"
#define DEF_SPINBOX_ATTRIB "normal"
#define DEF_SPINBOX_BG_COLOR "black"
#define DEF_SPINBOX_BG_MONO "black"
#define DEF_SPINBOX_FG_COLOR "white"
#define DEF_SPINBOX_FG_MONO "white"
#define DEF_SPINBOX_BORDER NULL
#define DEF_SPINBOX_HEIGHT "0"
#define DEF_SPINBOX_TAKE_FOCUS "0"
#define DEF_SPINBOX_WIDTH "0"
#define DEF_PLAYCARD_ATTRIB "normal"
#define DEF_PLAYCARD_BG_COLOR "black"
#define DEF_PLAYCARD_BG_MONO "black"
#define DEF_PLAYCARD_FG_COLOR "white"
#define DEF_PLAYCARD_FG_MONO "white"
#define DEF_PLAYCARD_BORDER NULL
#define DEF_PLAYCARD_HEIGHT "7"
#define DEF_PLAYCARD_TAKE_FOCUS "0"
#define DEF_PLAYCARD_WIDTH "9"
#define DEF_PLAYCARD_SUIT "spade"
#define DEF_PLAYCARD_RANK "ace"
#define DEF_PLAYCARD_SIDE "front"
#define DEF_PROGRESS_ATTRIB "normal"
#define DEF_PROGRESS_BG_COLOR "black"
#define DEF_PROGRESS_BG_MONO "black"
#define DEF_PROGRESS_FG_COLOR "white"
#define DEF_PROGRESS_FG_MONO "white"
#define DEF_PROGRESS_BORDER NULL
#define DEF_PROGRESS_HEIGHT "0"
#define DEF_PROGRESS_TAKE_FOCUS "0"
#define DEF_PROGRESS_WIDTH "0"
#define DEF_PROGRESS_ORIENT "horizontal"
#define DEF_PROGRESS_VARIABLE NULL
#define DEF_PROGRESS_MAXIMUM "100"
#define DEF_PROGRESS_MODE "determinate"
#define DEF_PROGRESS_STEP "1"
#define DEF_PROGRESS_VALUE "0"
#define DEF_PROGRESS_INTERVAL "50"
#define DEF_TERMINAL_ATTRIB "normal"
#define DEF_TERMINAL_BG_COLOR "black"
#define DEF_TERMINAL_BG_MONO "black"
#define DEF_TERMINAL_FG_COLOR "white"
#define DEF_TERMINAL_FG_MONO "white"
#define DEF_TERMINAL_BORDER NULL
#define DEF_TERMINAL_HEIGHT "25"
#define DEF_TERMINAL_TAKE_FOCUS "0"
#define DEF_TERMINAL_WIDTH "80"
#define DEF_TERMINAL_SCROLLBACK "1000"
#define DEF_TERMINAL_EXEC NULL
#define DEF_TERMINAL_TERM "xterm"
#define DEF_TERMINAL_REDISPLAY "line"
#define DEF_TERMINAL_COMMANDKEY "b"
#define DEF_TERMINAL_BANNER NULL
#define DEF_BUTTON_ACTIVE_ATTR_COLOR "normal"
#define DEF_BUTTON_ACTIVE_ATTR_MONO "reverse"
#define DEF_BUTTON_ACTIVE_BG_COLOR "white"
#define DEF_BUTTON_ACTIVE_BG_MONO "black"
#define DEF_BUTTON_ACTIVE_FG_COLOR "black"
#define DEF_BUTTON_ACTIVE_FG_MONO "white"
#define DEF_BUTTON_ATTR "normal"
#define DEF_LABEL_ATTR "normal"
#define DEF_BUTTON_ANCHOR "center"
#define DEF_BUTTON_BG_COLOR "black"
#define DEF_BUTTON_BG_MONO "black"
#define DEF_BUTTON_COMMAND NULL
#define DEF_BUTTON_DISABLED_ATTR "dim"
#define DEF_BUTTON_DISABLED_BG_COLOR "black"
#define DEF_BUTTON_DISABLED_BG_MONO "black"
#define DEF_BUTTON_DISABLED_FG_COLOR "white"
#define DEF_BUTTON_DISABLED_FG_MONO "white"
#define DEF_BUTTON_FG "white"
#define DEF_BUTTON_HEIGHT "0"
#define DEF_BUTTON_OFF_VALUE "0"
#define DEF_BUTTON_ON_VALUE "1"
#define DEF_BUTTON_SELECT_COLOR "red"
#define DEF_BUTTON_SELECT_MONO "white"
#define DEF_BUTTON_STATE "normal"
#define DEF_BUTTON_TAKE_FOCUS "1"
#define DEF_LABEL_TAKE_FOCUS "0"
#define DEF_BUTTON_TEXT NULL
#define DEF_BUTTON_TEXT_VARIABLE NULL
#define DEF_BUTTON_UNDERLINE "-1"
#define DEF_BUTTON_UNDERLINE_ATTR "bold"
#define DEF_BUTTON_UNDERLINE_FG_COLOR "white"
#define DEF_BUTTON_UNDERLINE_FG_MONO "white"
#define DEF_BUTTON_VALUE NULL
#define DEF_RADIOBUTTON_VARIABLE NULL
#define DEF_CHECKBUTTON_VARIABLE NULL
#define DEF_BUTTON_WIDTH "0"
#define DEF_ENTRY_BG_COLOR "black"
#define DEF_ENTRY_BG_MONO "black"
#define DEF_ENTRY_ATTR "normal"
#define DEF_ENTRY_FG "white"
#define DEF_ENTRY_JUSTIFY "left"
#define DEF_ENTRY_SELECT_ATTR_COLOR "normal"
#define DEF_ENTRY_SELECT_ATTR_MONO "reverse"
#define DEF_ENTRY_SELECT_FG_COLOR "black"
#define DEF_ENTRY_SELECT_FG_MONO "black"
#define DEF_ENTRY_SELECT_BG_COLOR "white"
#define DEF_ENTRY_SELECT_BG_MONO "black"
#define DEF_ENTRY_SHOW NULL
#define DEF_ENTRY_STATE "normal"
#define DEF_ENTRY_TAKE_FOCUS "1"
#define DEF_ENTRY_TEXT_VARIABLE NULL
#define DEF_ENTRY_WIDTH "16"
#define DEF_ENTRY_SCROLL_COMMAND NULL
#define DEF_LISTBOX_ACTIVE_ATTR_COLOR "normal"
#define DEF_LISTBOX_ACTIVE_ATTR_MONO "reverse"
#define DEF_LISTBOX_ACTIVE_BG_COLOR "white"
#define DEF_LISTBOX_ACTIVE_BG_MONO "black"
#define DEF_LISTBOX_ACTIVE_FG_COLOR "black"
#define DEF_LISTBOX_ACTIVE_FG_MONO "white"
#define DEF_LISTBOX_BG_COLOR "black"
#define DEF_LISTBOX_BG_MONO "black"
#define DEF_LISTBOX_FG "white"
#define DEF_LISTBOX_ATTR "normal"
#define DEF_LISTBOX_HEIGHT "10"
#define DEF_LISTBOX_SELECT_ATTR_COLOR "bold"
#define DEF_LISTBOX_SELECT_ATTR_MONO "bold"
#define DEF_LISTBOX_SELECT_BG_COLOR "black"
#define DEF_LISTBOX_SELECT_BG_MONO "black"
#define DEF_LISTBOX_SELECT_FG_COLOR "white"
#define DEF_LISTBOX_SELECT_FG_MONO "white"
#define DEF_LISTBOX_SELECT_MODE "browse"
#define DEF_LISTBOX_TAKE_FOCUS "1"
#define DEF_LISTBOX_WIDTH "20"
#define DEF_LISTBOX_SCROLL_COMMAND NULL
#define DEF_LISTBOX_SCROLL_COMMAND NULL
#define DEF_SCROLLBAR_ACTIVE_ATTR_COLOR "normal"
#define DEF_SCROLLBAR_ACTIVE_ATTR_MONO "reverse"
#define DEF_SCROLLBAR_ACTIVE_BG_COLOR "white"
#define DEF_SCROLLBAR_ACTIVE_BG_MONO "black"
#define DEF_SCROLLBAR_ACTIVE_FG_COLOR "black"
#define DEF_SCROLLBAR_ACTIVE_FG_MONO "white"
#define DEF_SCROLLBAR_ATTR "normal"
#define DEF_SCROLLBAR_BG_COLOR "black"
#define DEF_SCROLLBAR_BG_MONO "black"
#define DEF_SCROLLBAR_COMMAND NULL
#define DEF_SCROLLBAR_FG_COLOR "white"
#define DEF_SCROLLBAR_FG_MONO "white"
#define DEF_SCROLLBAR_ORIENT "vertical"
#define DEF_SCROLLBAR_TAKE_FOCUS "1"
#define DEF_MESSAGE_ANCHOR "center"
#define DEF_MESSAGE_ASPECT "320"
#define DEF_MESSAGE_ATTR "normal"
#define DEF_MESSAGE_BG_COLOR "black"
#define DEF_MESSAGE_BG_MONO "black"
#define DEF_MESSAGE_FG_COLOR "white"
#define DEF_MESSAGE_FG_MONO "white"
#define DEF_MESSAGE_JUSTIFY "left"
#define DEF_MESSAGE_TAKE_FOCUS "0"
#define DEF_MESSAGE_TEXT NULL
#define DEF_MESSAGE_TEXT_VARIABLE NULL
#define DEF_MESSAGE_WIDTH "0"
#define DEF_TEXT_ATTR "normal"
#define DEF_TEXT_BG_COLOR "black"
#define DEF_TEXT_BG_MONO "black"
#define DEF_TEXT_FG "white"
#define DEF_TEXT_HEIGHT "10"
#define DEF_TEXT_SELECT_ATTR_COLOR "normal"
#define DEF_TEXT_SELECT_ATTR_MONO "reverse"
#define DEF_TEXT_SELECT_BG_COLOR "white"
#define DEF_TEXT_SELECT_BG_MONO "black"
#define DEF_TEXT_SELECT_FG_COLOR "black"
#define DEF_TEXT_SELECT_FG_MONO "white"
#define DEF_TEXT_STATE "normal"
#define DEF_TEXT_TABS ""
#define DEF_TEXT_TAKE_FOCUS "1"
#define DEF_TEXT_WIDTH "40"
#define DEF_TEXT_WRAP "char"
#define DEF_TEXT_XSCROLL_COMMAND NULL
#define DEF_TEXT_YSCROLL_COMMAND NULL
#define DEF_MENUBUTTON_ATTR "normal"
#define DEF_MENUBUTTON_ACTIVE_ATTR_COLOR "normal"
#define DEF_MENUBUTTON_ACTIVE_ATTR_MONO "reverse"
#define DEF_MENUBUTTON_ACTIVE_BG_COLOR "white"
#define DEF_MENUBUTTON_ACTIVE_BG_MONO "black"
#define DEF_MENUBUTTON_ACTIVE_FG_COLOR "black"
#define DEF_MENUBUTTON_ACTIVE_FG_MONO "white"
#define DEF_MENUBUTTON_ANCHOR "center"
#define DEF_MENUBUTTON_BG_COLOR "black"
#define DEF_MENUBUTTON_BG_MONO "black"
#define DEF_MENUBUTTON_DISABLED_ATTR "dim"
#define DEF_MENUBUTTON_DISABLED_BG_COLOR "black"
#define DEF_MENUBUTTON_DISABLED_BG_MONO "black"
#define DEF_MENUBUTTON_DISABLED_FG_COLOR "white"
#define DEF_MENUBUTTON_DISABLED_FG_MONO "white"
#define DEF_MENUBUTTON_FG "white"
#define DEF_MENUBUTTON_HEIGHT "0"
#define DEF_MENUBUTTON_INDICATOR "0"
#define DEF_MENUBUTTON_INDICATOR_FG_COLOR "red"
#define DEF_MENUBUTTON_INDICATOR_FG_MONO "white"
#define DEF_MENUBUTTON_MENU NULL
#define DEF_MENUBUTTON_STATE "normal"
#define DEF_MENUBUTTON_TAKE_FOCUS "0"
#define DEF_MENUBUTTON_TEXT NULL
#define DEF_MENUBUTTON_TEXT_VARIABLE NULL
#define DEF_MENUBUTTON_UNDERLINE "-1"
#define DEF_MENUBUTTON_UNDERLINE_ATTR "reverse"
#define DEF_MENUBUTTON_UNDERLINE_FG_COLOR "white"
#define DEF_MENUBUTTON_UNDERLINE_FG_MONO "white"
#define DEF_MENUBUTTON_WIDTH "0"
#define DEF_MENU_ENTRY_ACTIVE_ATTR NULL
#define DEF_MENU_ENTRY_ACTIVE_BG NULL
#define DEF_MENU_ENTRY_ACTIVE_FG NULL
#define DEF_MENU_ENTRY_ACCELERATOR NULL
#define DEF_MENU_ENTRY_ATTR NULL
#define DEF_MENU_ENTRY_BG NULL
#define DEF_MENU_ENTRY_COMMAND NULL
#define DEF_MENU_ENTRY_FG NULL
#define DEF_MENU_ENTRY_INDICATOR "1"
#define DEF_MENU_ENTRY_LABEL NULL
#define DEF_MENU_ENTRY_MENU NULL
#define DEF_MENU_ENTRY_OFF_VALUE "0"
#define DEF_MENU_ENTRY_ON_VALUE "1"
#define DEF_MENU_ENTRY_SELECT NULL
#define DEF_MENU_ENTRY_STATE "normal"
#define DEF_MENU_ENTRY_VALUE NULL
#define DEF_MENU_ENTRY_CHECK_VARIABLE NULL
#define DEF_MENU_ENTRY_RADIO_VARIABLE "selectedButton"
#define DEF_MENU_ENTRY_UNDERLINE "-1"
#define DEF_MENU_ACTIVE_ATTR_COLOR "normal"
#define DEF_MENU_ACTIVE_ATTR_MONO "reverse"
#define DEF_MENU_ACTIVE_BG_COLOR "white"
#define DEF_MENU_ACTIVE_BG_MONO "black"
#define DEF_MENU_ACTIVE_FG_COLOR "black"
#define DEF_MENU_ACTIVE_FG_MONO "white"
#define DEF_MENU_ATTR "normal"
#define DEF_MENU_BG_COLOR "black"
#define DEF_MENU_BG_MONO "black"
#define DEF_MENU_BORDER NULL
#define DEF_MENU_DISABLED_ATTR "dim"
#define DEF_MENU_DISABLED_BG_COLOR "black"
#define DEF_MENU_DISABLED_BG_MONO "black"
#define DEF_MENU_DISABLED_FG_COLOR "white"
#define DEF_MENU_DISABLED_FG_MONO "white"
#define DEF_MENU_FG "white"
#define DEF_MENU_POST_COMMAND ""
#define DEF_MENU_SELECT_COLOR "red"
#define DEF_MENU_SELECT_MONO "white"
#define DEF_MENU_TAKE_FOCUS "0"
#define DEF_MENU_UNDERLINE_ATTR "reverse"
#define DEF_MENU_UNDERLINE_FG_COLOR "white"
#define DEF_MENU_UNDERLINE_FG_MONO "white"