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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
|
{
Free Pascal port of the OpenPTC C++ library.
Copyright (C) 2001-2003, 2006, 2007, 2009-2012 Nikolay Nikolov (nickysn@users.sourceforge.net)
Original C++ version by Glenn Fiedler (ptc@gaffer.org)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version
with the following modification:
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,and
to copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the terms
and conditions of the license of that module. An independent module is a
module which is not derived from or based on this library. If you modify
this library, you may extend this exception to your version of the library,
but you are not obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
{$ifdef VER2_6}
type
WNDCLASSEXA = WNDCLASSEX;
{$endif VER2_6}
{ $R win32\base\ptcres.res}
{ bug in the compiler???}
{ $LINKLIB ptc.owr}
constructor TWin32Window.Create(window: HWND);
begin
LOG('attaching to user managed window');
defaults;
FWindow := window;
FManaged := False;
end;
function WndProcSingleThreaded(hWnd: HWND; message: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; stdcall; forward;
function WndProcMultiThreaded(hWnd: HWND; message: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; stdcall; forward;
constructor TWin32Window.Create(const AWndClass, ATitle: string; AExtra, AStyle, AClassStyle: DWord;
AShow, AX, AY, AWidth, AHeight: Integer; ACenter, AMultithreaded,
ACursor, AInterceptClose: Boolean);
var
program_instance{, library_instance}: DWord;
rectangle: RECT;
display_width, display_height: Integer;
wc: WNDCLASSEXA;
begin
LOG('creating managed window');
Defaults;
FMultithreaded := AMultithreaded;
try
FInterceptClose := AInterceptClose;
program_instance := GetModuleHandle(nil);
{ library_instance := program_instance;}
wc.cbSize := SizeOf(wc);
wc.hInstance := program_instance;
wc.lpszClassName := PChar(AWndClass);
wc.style := AClassStyle;
wc.hIcon := 0{LoadIcon(library_instance, 'IDI_PTC_ICON')};
wc.hIconSm := 0;
wc.lpszMenuName := nil;
wc.cbClsExtra := 0;
wc.cbWndExtra := 0;
wc.hbrBackground := 0;{(HBRUSH) GetStockObject(BLACK_BRUSH)}
if AMultithreaded then
wc.lpfnWndProc := @WndProcMultiThreaded
else
wc.lpfnWndProc := @WndProcSingleThreaded;
if ACursor then
wc.hCursor := LoadCursor(0, IDC_ARROW)
else
wc.hCursor := 0;
RegisterClassExA(wc);
with rectangle do
begin
left := 0;
top := 0;
right := AWidth;
bottom := AHeight;
end;
AdjustWindowRectEx(rectangle, AStyle, False, AExtra);
if ACenter then
begin
LOG('centering window');
display_width := GetSystemMetrics(SM_CXSCREEN);
display_height := GetSystemMetrics(SM_CYSCREEN);
AX := (display_width - (rectangle.right - rectangle.left)) div 2;
AY := (display_height - (rectangle.bottom - rectangle.top)) div 2;
end;
FName := AWndClass;
FTitle := ATitle;
FExtra := AExtra;
FStyle := AStyle;
FShow := AShow;
FX := AX;
FY := AY;
FWidth := rectangle.right - rectangle.left;
FHeight := rectangle.bottom - rectangle.top;
if AMultithreaded then
begin
{...}
end
else
begin
FWindow := CreateWindowExA(FExtra, PChar(FName), PChar(FTitle), FStyle, FX, FY, FWidth, FHeight, 0, 0, 0, Self);
if not IsWindow(FWindow) then
raise TPTCError.Create('could not create window');
ShowWindow(FWindow, FShow);
SetFocus(FWindow);
SetActiveWindow(FWindow);
SetForegroundWindow(FWindow);
end;
except
on error: TPTCError do
raise TPTCError.Create('could not create window', error);
end;
end;
destructor TWin32Window.Destroy;
begin
Close;
inherited Destroy;
end;
procedure TWin32Window.Cursor(AFlag: Boolean);
begin
if AFlag then
begin
// SetClassLong(FWindow, GCL_HCURSOR, LoadCursor(0, IDC_ARROW));
SetClassLongPtr(FWindow, GCLP_HCURSOR, LoadCursor(0, IDC_ARROW));
end
else
begin
// SetClassLong(FWindow, GCL_HCURSOR, 0);
SetClassLongPtr(FWindow, GCLP_HCURSOR, 0);
end;
SendMessage(FWindow, WM_SETCURSOR, 0, 0);
end;
procedure TWin32Window.ConfineCursor(AFlag: Boolean);
var
rct: TRECT;
p1, p2: TPOINT;
begin
if AFlag then
begin
GetClientRect(FWindow, @rct);
p1.x := rct.left;
p1.y := rct.top;
p2.x := rct.right;
p2.y := rct.bottom;
ClientToScreen(FWindow, @p1);
ClientToScreen(FWindow, @p2);
rct.left := p1.x;
rct.top := p1.y;
rct.right := p2.x;
rct.bottom := p2.y;
ClipCursor(@rct);
FCursorConfineInEffect := True;
end
else
begin
if FCursorConfineInEffect then
begin
ClipCursor(nil);
FCursorConfineInEffect := False;
end;
end;
end;
procedure TWin32Window.Resize(AWidth, AHeight: Integer);
var
window_rectangle: RECT;
rectangle: RECT;
begin
GetWindowRect(FWindow, window_rectangle);
with rectangle do
begin
left := 0;
top := 0;
right := AWidth;
bottom := AHeight;
end;
AdjustWindowRectEx(rectangle, FStyle, False, FExtra);
SetWindowPos(FWindow, HWND_TOP, window_rectangle.left,
window_rectangle.top, rectangle.right - rectangle.left,
rectangle.bottom - rectangle.top, 0);
{
todo: detect if the window is resized off the screen and let windows reposition it correctly... ?
}
end;
procedure TWin32Window.Update(AForce: Boolean = False; AWaitForMessage: Boolean = False);
var
message: MSG;
begin
if (not FManaged) and (not AForce) then
exit;
if not FMultithreaded then
begin
{ updated to pump all window messages, and not just for our FWindow;
this fixes keyboard layout switching and maybe other bugs and side effects...
Seems like Windows wants everything pumped :) }
if AWaitForMessage then
begin
GetMessage(message, {FWindow}0, 0, 0);
TranslateMessage(message);
DispatchMessage(message);
end
else
while PeekMessage(message, {FWindow}0, 0, 0, PM_REMOVE) do
begin
TranslateMessage(message);
DispatchMessage(message);
end;
end
else
Sleep(0);
end;
function TWin32Window.GetThread: DWord;
begin
if FMultithreaded then
Result := FID
else
Result := GetCurrentThreadId;
end;
function WndProcSingleThreaded(hWnd: HWND; message: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; stdcall;
var
WindowObject: TWin32Window;
pCreate: PCREATESTRUCT;
begin
case message of
WM_CREATE:
begin
pCreate := PCREATESTRUCT(lParam);
WindowObject := TWin32Window(pCreate^.lpCreateParams);
SetWindowLongPtr(hWnd, GWLP_USERDATA, LONG_PTR(WindowObject));
Result := WindowObject.WMCreate(hWnd, message, wParam, lParam);
end;
WM_DESTROY:
begin
WindowObject := TWin32Window(GetWindowLongPtr(hWnd, GWLP_USERDATA));
Result := WindowObject.WMDestroy(hWnd, message, wParam, lParam);
end;
WM_SYSCOMMAND:
begin
{ this fixes the pausing of the application when the Alt or F10 key is pressed }
if wParam = SC_KEYMENU then
Result := 0
else
Result := DefWindowProcA(hWnd, message, wParam, lParam);
end;
WM_SETCURSOR: begin
if (LOWORD(lParam) = HTCLIENT) and (GetClassLongPtr(hWnd, GCLP_HCURSOR) = 0) then
begin
SetCursor(0);
Result := 1;
end
else
Result := DefWindowProcA(hWnd, message, wParam, lParam);
end;
WM_CLOSE: begin
LOG('TWin32Window WM_CLOSE');
WindowObject := TWin32Window(GetWindowLongPtr(hWnd, GWLP_USERDATA));
if WindowObject.InterceptClose then
Result := 0
else
Halt(0);
end;
else
Result := DefWindowProcA(hWnd, message, wParam, lParam);
end;
end;
function WndProcMultiThreaded(hWnd: HWND; message: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; stdcall;
begin
Result := 0;
case message of
WM_SYSCOMMAND:
begin
{ this fixes the pausing of the application when the Alt or F10 key is pressed }
if wParam = SC_KEYMENU then
Result := 0
else
Result := DefWindowProcA(hWnd, message, wParam, lParam);
end;
WM_SETCURSOR: begin
if (LOWORD(lParam) = HTCLIENT) and (GetClassLongPtr(hWnd, GCLP_HCURSOR) = 0) then
begin
SetCursor(0);
Result := 1;
end
else
Result := DefWindowProcA(hWnd, message, wParam, lParam);
end;
WM_DESTROY: begin
LOG('TWin32Window WM_DESTROY');
PostQuitMessage(0);
end;
WM_CLOSE: begin
LOG('TWin32Window WM_CLOSE');
Halt(0);
end;
else
Result := DefWindowProcA(hWnd, message, wParam, lParam);
end;
end;
procedure TWin32Window.Defaults;
begin
FWindow := 0;
FEvent := 0;
FThread := 0;
FID := 0;
FName := '';
FTitle := '';
FExtra := 0;
FStyle := 0;
FShow := 0;
FX := 0;
FY := 0;
FWidth := 0;
FHeight := 0;
FManaged := True;
FMultithreaded := False;
FInterceptClose := False;
end;
procedure TWin32Window.Close;
begin
if FCursorConfineInEffect then
ConfineCursor(False);
if not FManaged then
begin
LOG('detaching from user managed window');
FWindow := 0;
end
else
begin
LOG('closing managed window');
if FMultithreaded then
begin
if (FThread <> 0) and IsWindow(FWindow) then
begin
PostMessage(FWindow, WM_DESTROY, 0, 0);
WaitForSingleObject(FThread, INFINITE);
end;
if FEvent <> 0 then
CloseHandle(FEvent);
if FThread <> 0 then
CloseHandle(FThread);
SetPriorityClass(GetCurrentProcess, NORMAL_PRIORITY_CLASS);
end
else
if (FWindow <> 0) and IsWindow(FWindow) then
DestroyWindow(FWindow);
FWindow := 0;
FEvent := 0;
FThread := 0;
FID := 0;
UnregisterClassA(PChar(FName), GetModuleHandle(Nil));
end;
end;
class procedure TWin32Window.ThreadFunction(AOwner: TWin32Window);
var
message: MSG;
begin
with AOwner do
begin
FWindow := CreateWindowEx(FExtra, PChar(FName), PChar(FTitle), FStyle, FX, FY, FWidth, FHeight, 0, 0, 0, nil);
if IsWindow(FWindow) then
begin
ShowWindow(FWindow, FShow);
SetFocus(FWindow);
SetForegroundWindow(FWindow);
SetEvent(FEvent);
while GetMessage(message, 0, 0, 0) = True do
begin
TranslateMessage(message);
DispatchMessage(message);
end;
end
else
SetEvent(FEvent);
end;
end;
function TWin32Window.WMCreate(hWnd: HWND; uMsg: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT;
begin
Result := DefWindowProcA(hWnd, uMsg, wParam, lParam);
end;
function TWin32Window.WMDestroy(hWnd: HWND; uMsg: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT;
begin
Result := DefWindowProcA(hWnd, uMsg, wParam, lParam);
end;
|