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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
|
/*
* TESTSUBS.C
*
* String formatting class, window procedure and helper functions
*/
#define UNICODE
#include <windows.h>
#include <windowsx.h>
#include <stdio.h>
#include <string.h>
#include "ddespy.h"
#include "globals.h"
#define OFF2P(psw, off) ((TCHAR *)psw + off)
#define BOUND(n, min, max) ((n) < (min) ? (min) : ((n) > (max) ? (max) : n))
INT cyChar; /* Height of a line */
INT cxChar;
INT cyDescent;
/***************************** Public Function ****************************\
* BOOL InitTestSubs( )
*
* This routine MUST be called before using anything in this file. Registers
* window classes, loads brushes, etc. Returns TRUE if successful, FALSE
* otherwise.
*
\***************************************************************************/
BOOL InitTestSubs()
{
WNDCLASS cls;
cls.style = 0;
cls.lpfnWndProc = (WNDPROC)StrWndProc;
cls.cbClsExtra = 0;
cls.cbWndExtra = sizeof(HANDLE);
cls.hInstance = hInst;
cls.hIcon = NULL;
cls.hCursor = LoadCursor(NULL, IDC_ARROW);
cls.hbrBackground = (HBRUSH)COLOR_WINDOW;
cls.lpszMenuName = NULL;
cls.lpszClassName = (LPCTSTR) RefString(IDS_STRINGCLASS);
if (!RegisterClass((WNDCLASS FAR * ) & cls))
return(FALSE);
return(TRUE);
}
VOID CloseTestSubs(
HANDLE hInst)
{
UnregisterClass((LPCTSTR) RefString(IDS_STRINGCLASS), hInst);
}
VOID NextLine( STRWND *psw)
{
psw->offBottomLine += psw->cchLine;
if (psw->offBottomLine == psw->offBufferMax)
psw->offBottomLine = psw->offBuffer;
psw->offOutput = psw->offBottomLine;
*OFF2P(psw, psw->offOutput) = TEXT('\0');
}
/***************************** Public Function ****************************\
* VOID DrawString(hwnd, sz)
*
* This routine prints a string in the specified StringWindow class window.
* sz is a NEAR pointer to a zero-terminated string, which can be produced
* with wsprintf().
\***************************************************************************/
VOID DrawString( HWND hwnd, TCHAR *sz)
{
register STRWND *psw;
INT cLines = 1;
HANDLE hpsw;
hpsw = (HANDLE)GetWindowLong(hwnd, 0);
psw = (STRWND *)LocalLock(hpsw);
NextLine(psw);
while (*sz) {
switch (*sz) {
case TEXT('\r'):
break;
case TEXT('\n'):
*OFF2P(psw, psw->offOutput++) = TEXT('\0');
NextLine(psw);
cLines++;
break;
default:
*OFF2P(psw, psw->offOutput++) = *sz;
}
sz++;
}
*OFF2P(psw, psw->offOutput++) = TEXT('\0');
LocalUnlock(hpsw);
ScrollWindow(hwnd, 0, -((cyChar + cyDescent) * cLines), (LPRECT)NULL,
(LPRECT)NULL);
UpdateWindow(hwnd);
}
/***************************** Public Function ****************************\
* "StringWindow" window class
*
* Windows of the "StringWindow" window class are simple scrolling text output
* windows that are refreshed properly as windows are rearranged. A text buffer
* is maintained to store the characters as they are drawn.
*
* When creating a StringWindow window, lpCreateParams is actually a UINT
* containing the dimensions of the text buffer to be created, if 0L, then
* a 80 by 25 buffer is created.
*
\***************************************************************************/
LONG CALLBACK StrWndProc(HWND hwnd, UINT msg, WPARAM wParam, UINT lParam)
{
HANDLE hpsw;
PAINTSTRUCT ps;
RECT rc;
switch (msg) {
case WM_CREATE:
cyChar = 14;
cxChar = 8;
cyDescent = 2;
if (*(PUINT)lParam == 0L) {
*(PUINT)lParam = MAKELONG(80, 50);
}
if (!StrWndCreate(hwnd, LOWORD(*(PUINT)lParam), HIWORD(*(PUINT)lParam)))
return(TRUE);
break;
case WM_SIZE:
InvalidateRect(hwnd, NULL, TRUE);
break;
case WM_DESTROY:
if ((hpsw = (HANDLE)GetWindowLong(hwnd, 0)) != NULL)
LocalFree(hpsw);
break;
case WM_ERASEBKGND:
GetClientRect(hwnd, (LPRECT) &rc);
FillRect((HDC) wParam, (LPRECT) &rc, GetStockObject(WHITE_BRUSH));
break;
case WM_VSCROLL:
scroll(hwnd, GET_WM_VSCROLL_CODE(wParam, lParam),
GET_WM_VSCROLL_POS(wParam, lParam), SB_VERT);
break;
case WM_HSCROLL:
scroll(hwnd, GET_WM_HSCROLL_CODE(wParam, lParam),
GET_WM_HSCROLL_POS(wParam, lParam), SB_HORZ);
break;
case WM_PAINT:
BeginPaint(hwnd, &ps);
PaintStrWnd(hwnd, &ps);
EndPaint(hwnd, &ps);
break;
default:
return(DefWindowProc(hwnd, msg, wParam, lParam));
break;
}
return(0L);
}
VOID scroll(HWND hwnd, UINT msg, UINT sliderpos, UINT style)
{
RECT rc;
INT iPos;
INT dn;
HANDLE hpsw;
register STRWND *psw;
GetClientRect(hwnd, (LPRECT) &rc);
iPos = GetScrollPos(hwnd, style);
hpsw = (HANDLE)GetWindowLong(hwnd, 0);
psw = (STRWND *)LocalLock(hpsw);
switch (msg) {
case SB_LINEDOWN:
dn = 1;
break;
case SB_LINEUP:
dn = -1;
break;
case SB_PAGEDOWN:
if (style == SB_VERT) {
dn = rc.bottom / (cyChar + cyDescent);
} else {
dn = rc.right / cxChar;
}
break;
case SB_PAGEUP:
if (style == SB_VERT) {
dn = -rc.bottom / (cyChar + cyDescent);
} else {
dn = -rc.right / cxChar;
}
break;
case SB_THUMBTRACK:
case SB_THUMBPOSITION:
dn = sliderpos-iPos;
break;
default:
dn = 0;
}
if (style == SB_VERT) {
if (dn = BOUND (iPos + dn, 0, psw->cLine) - iPos) {
psw->cBottomLine -= dn;
ScrollWindow (hwnd, 0, -dn * (cyChar + cyDescent), NULL, NULL);
SetScrollPos (hwnd, SB_VERT, iPos + dn, TRUE);
}
} else /* style == SB_HORZ */ {
if (dn = BOUND (iPos + dn, 0, psw->cchLine) - iPos) {
psw->cLeftChar += dn;
ScrollWindow (hwnd, -dn * cxChar, 0, NULL, NULL);
SetScrollPos (hwnd, SB_HORZ, iPos + dn, TRUE);
}
}
LocalUnlock(hpsw);
}
BOOL StrWndCreate(HWND hwnd, INT cchLine, INT cLine)
{
register INT off;
STRWND *psw;
HANDLE hpsw;
if ((hpsw = LocalAlloc(LMEM_MOVEABLE, sizeof(STRWND)
+ (sizeof (TCHAR) * cchLine * cLine))) == NULL)
return(FALSE);
SetWindowLong(hwnd, 0, (UINT)hpsw);
psw = (STRWND *)LocalLock(hpsw);
psw->cchLine = cchLine;
psw->cLine = cLine;
off = sizeof(STRWND);
psw->offBuffer = off;
psw->offBufferMax = off + cchLine * cLine;
psw->offBottomLine = off;
psw->offOutput = off;
psw->cBottomLine = 0;
psw->cLeftChar = 0;
ClearScreen(psw);
SetScrollRange(hwnd, SB_VERT, 0, cLine, FALSE);
SetScrollPos(hwnd, SB_VERT, cLine, TRUE);
SetScrollRange(hwnd, SB_HORZ, 0, cchLine, TRUE);
LocalUnlock(hpsw);
return(TRUE);
}
VOID ClearScreen(register STRWND *psw)
{
register INT off;
/*
* Make all the lines empty
*/
off = psw->offBuffer;
while (off < psw->offBufferMax) {
*OFF2P(psw, off) = TEXT('\0');
off += psw->cchLine;
}
}
VOID PaintStrWnd( HWND hwnd, LPPAINTSTRUCT pps)
{
register STRWND *psw;
register INT off;
INT x;
INT y;
RECT rc, rcOut;
HANDLE hpsw;
SelectObject(pps->hdc, GetStockObject(SYSTEM_FIXED_FONT));
hpsw = (HANDLE)GetWindowLong(hwnd, 0);
psw = (STRWND *)LocalLock(hpsw);
GetClientRect(hwnd, (LPRECT)&rc);
if (!pps->fErase)
FillRect(pps->hdc, (LPRECT)&rc, GetStockObject(WHITE_BRUSH));
x = rc.left - cxChar * psw->cLeftChar;
y = rc.bottom - cyDescent + (cyChar + cyDescent) * psw->cBottomLine;
off = psw->offBottomLine;
if (&pps->rcPaint != NULL)
IntersectRect((LPRECT)&rc, (LPRECT)&rc, &pps->rcPaint);
do {
if (y <= rc.top - cyDescent)
break;
if (y - cyChar <= rc.bottom) {
rcOut.left = x;
rcOut.bottom = y + cyDescent;
rcOut.right = 1000;
rcOut.top = y - cyChar;
DrawText(pps->hdc, (LPTSTR)OFF2P(psw, off), -1, (LPRECT)&rcOut,
DT_LEFT | DT_VCENTER | DT_NOCLIP | DT_EXPANDTABS |
DT_EXTERNALLEADING | DT_NOPREFIX | DT_TABSTOP | 0x0400);
}
y -= cyChar + cyDescent;
/*
* Back up to previous line
*/
if (off == psw->offBuffer)
off = psw->offBufferMax;
off -= psw->cchLine;
} while (off != psw->offBottomLine);
LocalUnlock(hpsw);
}
|