-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathglobalformhandler.pas
529 lines (481 loc) · 17.4 KB
/
globalformhandler.pas
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
UNIT globalFormHandler;
INTERFACE
USES
Classes, sysutils,Forms,math;
CONST SLOT_SIZE:longint=32;
FREE_INDEX=255;
DESKTOP_INDEX=254;
MIN_FORM_WIDTH=4;
MIN_FORM_HEIGHT=4;
TYPE
T_slotRange=record
x0,x1,y0,y1:longint;
end;
T_direction=(d_left,d_right,d_up,d_down);
{ T_slotMap }
T_slotMap=object
mapWidth,mapHeight:longint;
occupied:array of byte;
CONSTRUCTOR create;
DESTRUCTOR destroy;
PROCEDURE clear;
FUNCTION occupy(CONST r:T_slotRange; CONST occupyIndex:byte):byte;
FUNCTION isFree(CONST r:T_slotRange):boolean;
FUNCTION windowPositionToSlotRange(CONST Left,top,height,width:longint):T_slotRange;
PROCEDURE slotRangeToWindowPosition(CONST r:T_slotRange; OUT Left,top,height,width:longint);
end;
P_formMeta=^T_formMeta;
{ T_formMeta }
T_formMeta=object
form:TForm;
sizable:boolean;
slotRange:T_slotRange;
myIndex:byte;
callbacks:record
resize,changeBounds,Show,Hide:TNotifyEvent;
end;
CONSTRUCTOR create(CONST form_:TForm; CONST sizable_:boolean; CONST index:byte);
DESTRUCTOR destroy;
PROCEDURE fetchPosition(VAR map:T_slotMap);
PROCEDURE trimToDesktop(VAR map:T_slotMap);
PROCEDURE applyPosition(VAR map:T_slotMap);
FUNCTION shrinks(CONST dir:T_direction; VAR map:T_slotMap):boolean;
FUNCTION moves(CONST dir:T_direction; VAR map:T_slotMap):boolean;
FUNCTION grows(VAR map:T_slotMap):boolean;
FUNCTION visible: boolean;
FUNCTION requiredSlotSize:T_slotRange;
PROCEDURE FormResize(Sender: TObject);
PROCEDURE FormChangeBounds(Sender: TObject);
PROCEDURE FormShow(Sender: TObject);
PROCEDURE FormHide(Sender: TObject);
end;
PROCEDURE registerForm(CONST f:TForm; CONST canResize:boolean);
PROCEDURE unregisterForm(CONST f:TForm);
PROCEDURE arrangeForms(CONST triggeredBy:longint);
VAR autoarrangeForms:boolean=true;
IMPLEMENTATION
VAR formMeta:array of P_formMeta;
arranging:boolean=false;
arrangementPending:longint=-1;
PROCEDURE finalizeUnit;
VAR i:longint;
begin
for i:=0 to length(formMeta)-1 do dispose(formMeta[i],destroy);
setLength(formMeta,0);
end;
FUNCTION indexOfForm(CONST f:TForm):longint;
VAR i:longint;
begin
for i:=0 to length(formMeta)-1 do if formMeta[i]^.form=f then exit(i);
result:=-1;
end;
PROCEDURE arrangeForms(CONST triggeredBy:longint);
VAR i:longint;
conflictIndex:byte;
conflictForm1,conflictForm2:byte;
growing,
changedInThisLoop:boolean;
changed:boolean=false;
map:T_slotMap;
safeguardCounter:longint=100;
FUNCTION slotCenterX(CONST r:T_slotRange):longint;
begin
result:=r.x0+r.x1;
end;
FUNCTION slotCenterY(CONST r:T_slotRange):longint;
begin
result:=r.y0+r.y1;
end;
PROCEDURE resolveUnbiasedConflict(CONST meta1,meta2:P_formMeta);
VAR dx,dy:longint;
begin
dx:=slotCenterX(meta1^.slotRange)-slotCenterX(meta2^.slotRange);
dy:=slotCenterY(meta1^.slotRange)-slotCenterY(meta2^.slotRange);
map.clear;
if abs(dx)>=abs(dy) then begin
if dx>0 then begin
meta1^.shrinks(d_right,map);
meta2^.shrinks(d_left,map);
end else begin
meta1^.shrinks(d_left,map);
meta2^.shrinks(d_right,map);
end
end else if dy<0 then begin
meta1^.shrinks(d_up,map);
meta2^.shrinks(d_down,map);
end else if dy>0 then begin
meta1^.shrinks(d_down,map);
meta2^.shrinks(d_up,map);
end;
end;
PROCEDURE resolveBiasedConflict(CONST other:P_formMeta);
VAR triggeringMeta:P_formMeta;
dx,dy:longint;
begin
triggeringMeta:=formMeta[triggeredBy];
dx:=slotCenterX(other^.slotRange)-slotCenterX(triggeringMeta^.slotRange);
dy:=slotCenterY(other^.slotRange)-slotCenterY(triggeringMeta^.slotRange);
map.clear;
if abs(dx)>=abs(dy) then begin
if dx<0 then begin
//other is left of triggering -> shrink leftwards, triggering shrinks rightwards as fallback
if not(other^.shrinks(d_left,map)) then triggeringMeta^.shrinks(d_right,map);
end else begin
if not(other^.shrinks(d_right,map)) then triggeringMeta^.shrinks(d_left,map);
end;
end else if dy<0 then begin
if not(other^.shrinks(d_up,map)) then triggeringMeta^.shrinks(d_down,map);
end else if dy>0 then begin
if not(other^.shrinks(d_down,map)) then triggeringMeta^.shrinks(d_up,map);
end;
end;
begin
if arranging then exit;
arranging:=true;
map.create;
for i:=0 to length(formMeta)-1 do formMeta[i]^.fetchPosition(map);
repeat
changedInThisLoop:=false;
//collect conflicts
map.clear;
conflictForm1:=FREE_INDEX;
conflictForm2:=FREE_INDEX;
for i:=0 to length(formMeta)-1 do if formMeta[i]^.visible then begin
conflictIndex:=map.occupy(formMeta[i]^.slotRange,i);
if (conflictForm1=FREE_INDEX) and (conflictIndex<>FREE_INDEX) then begin
conflictForm1:=conflictIndex;
conflictForm2:=i;
end;
end;
//resolve conflicts
if (conflictForm1<>FREE_INDEX) then begin
if conflictForm1=DESKTOP_INDEX then formMeta[conflictForm2]^.trimToDesktop(map)
else if conflictForm1=triggeredBy then resolveBiasedConflict(formMeta[conflictForm2])
else if conflictForm2=triggeredBy then resolveBiasedConflict(formMeta[conflictForm1])
else resolveUnbiasedConflict(formMeta[conflictForm1],formMeta[conflictForm2]);
changedInThisLoop:=true;
end else begin
//grow
repeat
growing:=false;
for i:=0 to length(formMeta)-1 do if i<>triggeredBy then growing:=growing or formMeta[i]^.grows(map);
changedInThisLoop:=changedInThisLoop or growing;
until not(growing);
if (triggeredBy>=0) and (triggeredBy<length(formMeta)) then repeat
growing:=formMeta[triggeredBy]^.grows(map);
changedInThisLoop:=changedInThisLoop or growing;
until not(growing);
end;
changed:=changed or changedInThisLoop;
dec(safeguardCounter)
until not(changedInThisLoop) or (safeguardCounter<=0);
if changed then for i:=0 to length(formMeta)-1 do formMeta[i]^.applyPosition(map);
map.destroy;
Application.ProcessMessages;
arranging:=false;
end;
PROCEDURE registerForm(CONST f: TForm; CONST canResize: boolean);
VAR i:longint;
begin
i:=indexOfForm(f);
if i<0 then begin
i:=length(formMeta);
setLength(formMeta,i+1);
new(formMeta[i],create(f,canResize,i));
end;
end;
PROCEDURE unregisterForm(CONST f: TForm);
VAR i:longint;
begin
i:=indexOfForm(f);
if i<0 then exit;
dispose(formMeta[i],destroy);
while i<length(formMeta)-1 do begin
formMeta[i]:=formMeta[i+1];
inc(i);
end;
setLength(formMeta,length(formMeta)-1);
end;
PROCEDURE formStatusChange(CONST f: TForm);
VAR i:longint;
begin
if not(autoarrangeForms) then exit;
if not(f.showing) then begin
arrangeForms(-1);
exit;
end;
i:=indexOfForm(f);
if i<0 then exit;
arrangeForms(i);
end;
{ T_slotMap }
CONSTRUCTOR T_slotMap.create;
begin
clear;
end;
DESTRUCTOR T_slotMap.destroy;
begin
setLength(occupied,0);
end;
PROCEDURE T_slotMap.clear;
VAR i:longint;
begin
mapWidth:=screen.WorkAreaWidth div SLOT_SIZE;
mapHeight:=screen.WorkAreaHeight div SLOT_SIZE;
setLength(occupied,mapWidth*mapHeight);
for i:=0 to length(occupied)-1 do occupied[i]:=FREE_INDEX;
end;
FUNCTION T_slotMap.occupy(CONST r: T_slotRange; CONST occupyIndex: byte): byte;
VAR x,y:longint;
begin
if (r.x0<0) or (r.y0<0) or (r.x1>=mapWidth) or (r.y1>=mapHeight)
then result:=DESKTOP_INDEX
else result:=FREE_INDEX;
for y:=max(0,r.y0) to min(mapHeight-1,r.y1) do
for x:=max(0,r.x0) to min(mapWidth -1,r.x1) do begin
if result=FREE_INDEX then result:=occupied[x+y*mapWidth];
occupied[x+y*mapWidth]:=occupyIndex;
end;
end;
FUNCTION T_slotMap.isFree(CONST r: T_slotRange): boolean;
VAR x,y:longint;
begin
result:=(r.y0>=0) and (r.x0>=0) and (r.y1<mapHeight) and (r.x1<mapWidth);
if not(result) then exit(result);
for y:=max(0,r.y0) to min(mapHeight-1,r.y1) do
for x:=max(0,r.x0) to min(mapWidth-1 ,r.x1) do result:=result and (occupied[x+y*mapWidth]=FREE_INDEX);
end;
FUNCTION T_slotMap.windowPositionToSlotRange(CONST Left, top, height, width: longint): T_slotRange;
begin
result.x0:=(Left-screen.WorkAreaLeft) div SLOT_SIZE;
if Left+width-screen.WorkAreaLeft=screen.WorkAreaWidth
then result.x1:=mapWidth-1
else result.x1:=(Left-screen.WorkAreaLeft+width-1) div SLOT_SIZE;
result.y0:=(top-screen.WorkAreaTop) div SLOT_SIZE;
if top+height-screen.WorkAreaTop=screen.WorkAreaHeight
then result.y1:=mapHeight-1
else result.y1:=(top-screen.WorkAreaTop+height-1) div SLOT_SIZE;
end;
PROCEDURE T_slotMap.slotRangeToWindowPosition(CONST r: T_slotRange; OUT Left, top, height, width: longint);
begin
Left:=r.x0*SLOT_SIZE+screen.WorkAreaLeft;
if r.x1=mapWidth-1
then width:=screen.WorkAreaWidth-Left
else width:=(r.x1-r.x0+1)*SLOT_SIZE-1;
top:=r.y0*SLOT_SIZE+screen.WorkAreaTop;
if r.y1=mapHeight-1
then height:=screen.WorkAreaHeight-top
else height:=(r.y1-r.y0+1)*SLOT_SIZE-1;
end;
{ T_formMeta }
CONSTRUCTOR T_formMeta.create(CONST form_: TForm; CONST sizable_: boolean;
CONST index: byte);
begin
form:=form_;
sizable:=(sizable_) and (form_<>nil);
myIndex:=index;
callbacks.resize :=form.OnResize; form.OnResize :=@FormResize;
callbacks.changeBounds:=form.OnChangeBounds; form.OnChangeBounds:=@FormChangeBounds;
callbacks.Hide :=form.OnHide; form.OnHide :=@FormHide;
callbacks.Show :=form.OnShow; form.OnShow :=@FormShow;
end;
DESTRUCTOR T_formMeta.destroy;
begin
form.OnResize:=callbacks.resize;
form.OnChangeBounds:=callbacks.changeBounds;
form.OnHide:=callbacks.Hide;
form.OnShow:=callbacks.Show;
end;
PROCEDURE T_formMeta.fetchPosition(VAR map: T_slotMap);
begin
if not(visible) then exit;
slotRange:=map.windowPositionToSlotRange(form.Left,form.top,form.height,form.width);
end;
PROCEDURE T_formMeta.trimToDesktop(VAR map: T_slotMap);
VAR required:T_slotRange;
begin
required:=requiredSlotSize;
if slotRange.x0<0 then begin
slotRange.x0:=0;
if slotRange.x1-slotRange.x0<required.x1 then begin
slotRange.x1:=slotRange.x0+required.x1;
map.occupy(slotRange,myIndex);
end;
end;
if slotRange.y0<0 then begin
slotRange.y0:=0;
if slotRange.y1-slotRange.y0<required.y1 then begin
slotRange.y1:=slotRange.y0+required.y1;
map.occupy(slotRange,myIndex);
end;
end;
if slotRange.x1>=map.mapWidth then begin
slotRange.x1:=map.mapWidth-1;
if slotRange.x1-slotRange.x0<required.x1 then begin
slotRange.x0:=slotRange.x1-required.x1;
map.occupy(slotRange,myIndex);
end;
end;
if slotRange.y1>=map.mapHeight then begin
slotRange.y1:=map.mapHeight-1;
if slotRange.y1-slotRange.y0<required.y1 then begin
slotRange.y0:=slotRange.y1-required.y1;
map.occupy(slotRange,myIndex);
end;
end;
end;
PROCEDURE T_formMeta.applyPosition(VAR map: T_slotMap);
VAR Left,width,top,height:longint;
begin
if not(visible) then exit;
map.slotRangeToWindowPosition(slotRange,Left,top,height,width);
form.Left:=Left;
form.width:=width;
form.top:=top;
form.height:=height;
with slotRange do writeln(form.toString,' apply position ',x0,'..',x1,'x',y0,'..',y1);
end;
FUNCTION vStrip(CONST x,y0,y1:longint):T_slotRange;
begin
result.x0:=x; result.x1:=x;
result.y0:=y0; result.y1:=y1;
end;
FUNCTION hStrip(CONST x0,x1,y:longint):T_slotRange;
begin
result.x0:=x0; result.x1:=x1;
result.y0:=y; result.y1:=y;
end;
FUNCTION T_formMeta.shrinks(CONST dir: T_direction; VAR map: T_slotMap): boolean;
begin
result:=false;
case dir of
d_left: if (slotRange.x1-slotRange.x0)<=requiredSlotSize.x1 then result:=moves(d_left,map) else begin
map.occupy(vStrip(slotRange.x1,slotRange.y0,slotRange.y1),FREE_INDEX);
dec(slotRange.x1);
result:=true;
end;
d_right: if (slotRange.x1-slotRange.x0)<=requiredSlotSize.x1 then result:=moves(d_right,map) else begin
map.occupy(vStrip(slotRange.x0,slotRange.y0,slotRange.y1),FREE_INDEX);
inc(slotRange.x0);
result:=true;
end;
d_up: if (slotRange.y1-slotRange.y0)<=requiredSlotSize.y1 then result:=moves(d_up,map) else begin
map.occupy(hStrip(slotRange.x0,slotRange.x1,slotRange.y1),FREE_INDEX);
dec(slotRange.y1);
result:=true;
end;
d_down: if (slotRange.y1-slotRange.y0)<=requiredSlotSize.y1 then result:=moves(d_down,map) else begin
map.occupy(hStrip(slotRange.x0,slotRange.x1,slotRange.y0),FREE_INDEX);
inc(slotRange.y0);
result:=true;
end;
end;
writeln(form.toString,' shrinks ',dir,' ',result);
with slotRange do writeln(' ',x0,'..',x1,'x',y0,'..',y1);
end;
FUNCTION T_formMeta.moves(CONST dir: T_direction; VAR map: T_slotMap): boolean;
begin
result:=false;
case dir of
d_left: if map.isFree(vStrip(slotRange.x0-1,slotRange.y0,slotRange.y1)) then begin
dec(slotRange.x0);
map.occupy(slotRange,myIndex);
map.occupy(vStrip(slotRange.x1,slotRange.y0,slotRange.y1),FREE_INDEX);
dec(slotRange.x1);
result:=true;
end;
d_right: if map.isFree(vStrip(slotRange.x1+1,slotRange.y0,slotRange.y1)) then begin
inc(slotRange.x1);
map.occupy(slotRange,myIndex);
map.occupy(vStrip(slotRange.x0,slotRange.y0,slotRange.y1),FREE_INDEX);
inc(slotRange.x0);
result:=true;
end;
d_up: if map.isFree(hStrip(slotRange.x0,slotRange.x1,slotRange.y0-1)) then begin
dec(slotRange.y0);
map.occupy(slotRange,myIndex);
map.occupy(hStrip(slotRange.x0,slotRange.x1,slotRange.y1),FREE_INDEX);
dec(slotRange.y1);
result:=true;
end;
d_down: if map.isFree(hStrip(slotRange.x0,slotRange.x1,slotRange.y1+1)) then begin
inc(slotRange.y1);
map.occupy(slotRange,myIndex);
map.occupy(hStrip(slotRange.x0,slotRange.x1,slotRange.y0),FREE_INDEX);
inc(slotRange.y0);
result:=true;
end;
end;
writeln(form.toString,' moves ',dir,' ',result);
with slotRange do writeln(' ',x0,'..',x1,'x',y0,'..',y1);
end;
FUNCTION T_formMeta.grows(VAR map: T_slotMap): boolean;
begin
if not(visible) then exit(false);
if not(sizable) then exit(moves(d_left ,map) or
moves(d_up ,map) or
moves(d_right,map) or
moves(d_down ,map));
result:=false;
if map.isFree(vStrip(slotRange.x0-1,slotRange.y0,slotRange.y1)) then begin
dec(slotRange.x0);
map.occupy(slotRange,myIndex);
result:=true;
end;
if map.isFree(hStrip(slotRange.x0,slotRange.x1,slotRange.y0-1)) then begin
dec(slotRange.y0);
map.occupy(slotRange,myIndex);
result:=true;
end;
if not(sizable) and result then exit(result);
if map.isFree(vStrip(slotRange.x1+1,slotRange.y0,slotRange.y1)) then begin
inc(slotRange.x1);
map.occupy(slotRange,myIndex);
result:=true;
end;
if map.isFree(hStrip(slotRange.x0,slotRange.x1,slotRange.y1+1)) then begin
inc(slotRange.y1);
map.occupy(slotRange,myIndex);
result:=true;
end;
end;
FUNCTION T_formMeta.visible: boolean;
begin
result:=(form<>nil) and (form.visible) and (form.showing);
end;
FUNCTION T_formMeta.requiredSlotSize: T_slotRange;
begin
result.x0:=0;
result.y0:=0;
if sizable then result.x1:=MIN_FORM_WIDTH-1
else result.x1:=slotRange.x1-slotRange.x0;
if sizable then result.y1:=MIN_FORM_HEIGHT-1
else result.y1:=slotRange.y1-slotRange.y0;
end;
PROCEDURE T_formMeta.FormResize(Sender: TObject);
begin
writeln('FormResize for ',form.toString,' ',form.visible,' ',form.showing);
if Assigned(callbacks.resize) then callbacks.resize(Sender);
formStatusChange(form);
end;
PROCEDURE T_formMeta.FormChangeBounds(Sender: TObject);
begin
writeln('FormChangeBounds for ',form.toString,' ',form.visible,' ',form.showing);
if Assigned(callbacks.changeBounds) then callbacks.changeBounds(Sender);
// formStatusChange(form);
end;
PROCEDURE T_formMeta.FormShow(Sender: TObject);
begin
writeln('FormShow for ',form.toString,' ',form.visible,' ',form.showing);
if Assigned(callbacks.Show) then callbacks.Show(Sender);
formStatusChange(form);
end;
PROCEDURE T_formMeta.FormHide(Sender: TObject);
begin
writeln('FormShow for ',form.toString,' ',form.visible,' ',form.showing);
if Assigned(callbacks.Hide) then callbacks.Hide(Sender);
formStatusChange(form);
end;
FINALIZATION
finalizeUnit;
end.