forked from markjessell/functionNoddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbgcolwin.c
290 lines (283 loc) · 5.17 KB
/
bgcolwin.c
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
286
287
288
289
290
/*
This file was generated by XVT-Design 4.5, a product of:
XVT Software Inc.
4900 Pearl East Circle
Boulder, CO USA 80301
303-443-4223, fax 303-443-0969
Generated on Tue Sep 02 10:35:00 1997
*/
/* TAG BEGIN SPCL:Pre_Header */
/* TAG END SPCL:Pre_Header */
#include "xvt.h"
#include "xvtcm.h"
#include "nodInc.h"
/*
Information about the window
*/
#define WIN_RES_ID BACKGROUND_WINDOW
#define WIN_FLAGS 0x810L
#define WIN_CLASS ""
#define WIN_BORDER W_DOC
/* TAG BEGIN SPCL:Obj_Decl */
/* TAG END SPCL:Obj_Decl */
/*
Handler for window BACKGROUND_WINDOW ("Background Color")
*/
long XVT_CALLCONV1
#if XVT_CC_PROTO
BACKGROUND_WINDOW_eh XVT_CALLCONV2 (WINDOW xdWindow, EVENT *xdEvent)
#else
BACKGROUND_WINDOW_eh XVT_CALLCONV2 (xdWindow, xdEvent)
WINDOW xdWindow;
EVENT *xdEvent;
#endif
{
short xdControlId = xdEvent->v.ctl.id;
/* TAG BEGIN SPCL:Var_Decl */
/* TAG END SPCL:Var_Decl */
switch (xdEvent->type) {
case E_CREATE:
/*
Window has been created; first event sent to newly-created
window.
*/
{
/* TAG BEGIN EVNT:Create */
/* TAG END EVNT:Create */
}
break;
case E_DESTROY:
/*
Window has been closed; last event sent to window.
*/
xdRemoveHelpAssoc( xdWindow );
{
/* TAG BEGIN EVNT:Destroy */
/* TAG END EVNT:Destroy */
}
break;
case E_FOCUS:
{
/* TAG BEGIN EVNT:Focus */
/*
Window has lost or gained focus.
*/
if (xdEvent->v.active) {
/*
Window has gained focus
*/
} else {
/*
Window has lost focus
*/
}
/* TAG END EVNT:Focus */
}
break;
case E_SIZE:
/*
Size of window has been set or changed; sent when window is
created or subsequently resized by user or via xvt_vobj_move.
*/
{
/* TAG BEGIN EVNT:Size */
/* TAG END EVNT:Size */
}
break;
case E_UPDATE:
/*
Window requires updating.
*/
{
/* TAG BEGIN EVNT:Update */
xvt_dwin_clear(xdWindow, (COLOR)xvt_vobj_get_attr(xdWindow, ATTR_BACK_COLOR));
/* TAG END EVNT:Update */
}
break;
case E_CLOSE:
/*
Request to close window; user operated "close" menu item on
window system menu, or operated "close" control on window
frame. Not sent if Close on File menu is issued. Window not
closed unless xvt_vobj_destroy is called.
*/
{
/* TAG BEGIN EVNT:Close */
xvt_vobj_destroy(xdWindow);
/* TAG END EVNT:Close */
}
break;
case E_CHAR:
/*
Character typed.
*/
{
/* TAG BEGIN EVNT:Char */
/* TAG END EVNT:Char */
}
break;
case E_MOUSE_UP:
/*
Mouse was released
*/
{
/* TAG BEGIN EVNT:Mouse_Up */
/* TAG END EVNT:Mouse_Up */
}
break;
case E_MOUSE_DOWN:
/*
Mouse was pressed
*/
{
/* TAG BEGIN EVNT:Mouse_Down */
/* TAG END EVNT:Mouse_Down */
}
break;
case E_MOUSE_DBL:
/*
Mouse was double clicked
*/
{
/* TAG BEGIN EVNT:Mouse_Dbl */
/* TAG END EVNT:Mouse_Dbl */
}
break;
case E_MOUSE_MOVE:
/*
Mouse was moved
*/
{
/* TAG BEGIN EVNT:Mouse_Move */
/* TAG END EVNT:Mouse_Move */
}
break;
case E_HSCROLL:
{
/* TAG BEGIN EVNT:Hscroll */
/*
Horizontal scrollbar on frame was operated
*/
switch (xdEvent->v.scroll.what) {
case SC_LINE_UP:
break;
case SC_LINE_DOWN:
break;
case SC_PAGE_UP:
break;
case SC_PAGE_DOWN:
break;
case SC_THUMB:
break;
case SC_THUMBTRACK:
break;
default:
break;
}
/* TAG END EVNT:Hscroll */
}
break;
case E_VSCROLL:
{
/* TAG BEGIN EVNT:Vscroll */
/*
Vertical scrollbar on frame was operated
*/
switch (xdEvent->v.scroll.what) {
case SC_LINE_UP:
break;
case SC_LINE_DOWN:
break;
case SC_PAGE_UP:
break;
case SC_PAGE_DOWN:
break;
case SC_THUMB:
break;
case SC_THUMBTRACK:
break;
default:
break;
}
/* TAG END EVNT:Vscroll */
}
break;
case E_COMMAND:
/*
User issued command on window menu bar (menu bar at top of
screen for Mac/CH).
*/
{
/* TAG BEGIN EVNT:Command */
/*
No menubar was associated with this window
*/
/* TAG END EVNT:Command */
}
break;
case E_CONTROL:
/*
User operated control in window.
*/
{
/* TAG BEGIN SPCL:Control_Decl */
/* TAG END SPCL:Control_Decl */
switch(xdControlId) {
case BACKGROUND_BUTTON: /* "Background Color..." */
{
/* TAG BEGIN BACKGROUND_BUTTON EVNT:Control */
WINDOW win;
if (!(win = createCenteredWindow(DEFINE_COLOUR_WINDOW, TASK_WIN, EM_ALL,
DEFINE_COLOUR_WINDOW_eh, 0L)))
xvt_dm_post_error("Can't open window");
/* TAG END BACKGROUND_BUTTON EVNT:Control */
}
break;
default:
break;
}
}
break;
case E_FONT:
/*
User issued font command on window menu bar (menu bar at top of
screen for Mac/CH).
*/
{
/* TAG BEGIN EVNT:Font */
/* TAG END EVNT:Font */
}
break;
case E_TIMER:
/*
Timer associated with window went off.
*/
{
/* TAG BEGIN EVNT:Timer */
/* TAG END EVNT:Timer */
}
break;
case E_USER:
/*
Application initiated.
*/
{
/* TAG BEGIN EVNT:User */
switch (xdEvent->v.user.id) {
case -1:
default:
break;
}
/* TAG END EVNT:User */
}
break;
default:
break;
}
/* TAG BEGIN SPCL:Bottom */
#ifdef XVT_R40_TXEDIT_BEHAVIOR
xvt_tx_process_event(xdWindow, xdEvent);
#endif
/* TAG END SPCL:Bottom */
return 0L;
}