File: sparta_basicfakecustom.pas

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (556 lines) | stat: -rw-r--r-- 15,189 bytes parent folder | download | duplicates (2)
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
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
unit sparta_BasicFakeCustom;

{$mode delphi}{$H+}

interface

uses
  Classes, SysUtils, Controls, Forms, sparta_InterfacesMDI, LCLIntf,
  LCLType, sparta_FormBackgroundForMDI;

type

  { TFormImpl }

  TFormImpl = class(TComponent, IDesignedRealFormHelper, IDesignedForm)
  private
    FDesignedRealForm: IDesignedRealForm;
    FHackLeft: Integer;
    FHackTop: Integer;
    FHackWidth: Integer;
    FHackHeight: Integer;
    FOnChangeHackedBounds: TNotifyEvent;
  protected
    FForm: TCustomForm;
    FUpdate: boolean;
    procedure SetOnChangeHackedBounds(const AValue: TNotifyEvent);
    function GetOnChangeHackedBounds: TNotifyEvent;
    function PositionDelta: TPoint;

    function GetRealBounds(AIndex: Integer): Integer; virtual;
    procedure SetRealBounds(AIndex: Integer; AValue: Integer); virtual;
    function GetPublishedBounds(AIndex: Integer): Integer; virtual;
    procedure SetPublishedBounds(AIndex: Integer; AValue: Integer); virtual;

    procedure SetHorzScrollPosition(AValue: Integer); virtual;
    procedure SetVertScrollPosition(AValue: Integer); virtual;

    // own custom form scrool system
    function GetHorzScrollPosition: Integer; virtual;
    function GetVertScrollPosition: Integer; virtual;

    procedure SetRealBorderStyle(AVal: TFormBorderStyle); virtual;
    procedure SetRealBorderIcons(AVal: TBorderIcons); virtual;
    procedure SetRealFormStyle(AVal: TFormStyle); virtual;
    procedure SetRealPopupMode(AVal: TPopupMode); virtual;
    procedure SetRealPopupParent(AVal: TCustomForm); virtual;

    function GetRealBorderStyle: TFormBorderStyle; virtual;
    function GetRealBorderIcons: TBorderIcons; virtual;
    function GetRealFormStyle: TFormStyle; virtual;
    function GetRealPopupMode: TPopupMode; virtual;
    function GetRealPopupParent: TCustomForm; virtual;

    function GetForm: TCustomForm; virtual;
    function GetUpdate: Boolean; virtual;

    procedure DoChangeHackedBounds; virtual;

    function GetLogicalClientRect(ALogicalClientRect: TRect): TRect; virtual;
  public
    property RealLeft: Integer index 0 read GetRealBounds write SetRealBounds;
    property RealTop: Integer index 1 read GetRealBounds write SetRealBounds;
    property RealWidth: Integer index 2 read GetRealBounds write SetRealBounds;
    property RealHeight: Integer index 3 read GetRealBounds write SetRealBounds;
    property RealBorderStyle: TFormBorderStyle read GetRealBorderStyle write SetRealBorderStyle;
    property RealBorderIcons: TBorderIcons read GetRealBorderIcons write SetRealBorderIcons;
    property RealFormStyle: TFormStyle read GetRealFormStyle write SetRealFormStyle;

    constructor Create(AOwner: TComponent; AForm: TCustomForm); virtual; reintroduce;
    destructor Destroy; override;

    procedure BeginUpdate; virtual;
    procedure EndUpdate({%H-}AModified: Boolean = False); virtual;

    procedure ShowWindow; virtual;
    procedure HideWindow; virtual;

    property Update: Boolean read GetUpdate;
  public
    property Left: Integer index 0 read GetPublishedBounds write SetPublishedBounds;
    property Top: Integer index 1 read GetPublishedBounds write SetPublishedBounds;
    property Width: Integer index 2 read GetPublishedBounds write SetPublishedBounds;
    property Height: Integer index 3 read GetPublishedBounds write SetPublishedBounds;
  public
    function QueryInterface(constref IID: TGUID; out Obj): HResult; override;
  end;

  { TFormContainer }

  TFormContainer = class(TCustomForm, IDesignedRealForm, IDesignedForm, IDesignedFormBackground)
  private
    FDesignedForm: TFormImpl;
    function GetDesignedForm: TFormImpl;
  protected
    property DesignedForm: TFormImpl read GetDesignedForm implements IDesignedForm;
    function GetLogicalClientRect: TRect; override;
  protected
    function GetRealBounds(AIndex: Integer): Integer; virtual;
    procedure SetRealBounds(AIndex: Integer; AValue: Integer); virtual;
    function GetPublishedBounds(AIndex: Integer): Integer; virtual;
    procedure SetPublishedBounds(AIndex: Integer; AValue: Integer); virtual;

    procedure SetRealBorderStyle(AVal: TFormBorderStyle); virtual;
    procedure SetRealBorderIcons(AVal: TBorderIcons); virtual;
    procedure SetRealFormStyle(AVal: TFormStyle); virtual;
    procedure SetRealPopupMode(AVal: TPopupMode); virtual;
    procedure SetRealPopupParent(AVal: TCustomForm); virtual;

    function GetRealBorderStyle: TFormBorderStyle; virtual;
    function GetRealBorderIcons: TBorderIcons; virtual;
    function GetRealFormStyle: TFormStyle; virtual;
    function GetRealPopupMode: TPopupMode; virtual;
    function GetRealPopupParent: TCustomForm; virtual;
  protected
    FHandledForm: TCustomForm;
    FBackground: IDesignedFormBackground;

    procedure SetHandledForm(AForm: TCustomForm);
  public
    constructor CreateNew(AOwner: TComponent; Num: Integer = 0); override;
    destructor Destroy; override;

    property HandledForm: TCustomForm read FHandledForm write SetHandledForm;
    property Background: IDesignedFormBackground read FBackground implements IDesignedFormBackground;
  published
    property Left: Integer index 0 read GetPublishedBounds write SetPublishedBounds;
    property Top: Integer index 1 read GetPublishedBounds write SetPublishedBounds;
    property Width: Integer index 2 read GetPublishedBounds write SetPublishedBounds;
    property Height: Integer index 3 read GetPublishedBounds write SetPublishedBounds;
    property ClientWidth: Integer index 2 read GetPublishedBounds write SetPublishedBounds;
    property ClientHeight: Integer index 3 read GetPublishedBounds write SetPublishedBounds;
  end;

implementation

type
  TFormAccess = class(TForm);

{ TDesignedFormImpl }

function TFormImpl.GetPublishedBounds(AIndex: Integer): Integer;
begin
  case AIndex of
    0: Result := FForm.Left;
    1: Result := FForm.Top;
    2: Result := FForm.Width;
    3: Result := FForm.Height;
  end;
  //case AIndex of
  //  0: Result := FHackLeft;
  //  1: Result := FHackTop;
  //  2: Result := FHackWidth;
  //  3: Result := FHackHeight;
  //end;
end;

procedure TFormImpl.SetPublishedBounds(AIndex: Integer; AValue: Integer);
const
  cMinWidth = 135;
  cMaxWidth = 5*1024; // huge Mac monitors have 5K pixels width
begin
  if AIndex = 2 then
    if AValue < cMinWidth then
      AValue := cMinWidth;

  if AIndex in [2, 3] then
    if AValue > cMaxWidth then
      AValue := cMaxWidth;

  case AIndex of
    0: FHackLeft := AValue;
    1: FHackTop := AValue;
    2: FHackWidth := AValue;
    3: FHackHeight := AValue;
  end;

  DoChangeHackedBounds;
end;

{-----------------------------------------------
  Real values inherited for design form
{----------------------------------------------}

function TFormImpl.GetRealBounds(AIndex: Integer): Integer;
begin
  case AIndex of
    0: Result := FForm.Left;
    1: Result := FForm.Top;
    2: Result := FForm.Width;
    3: Result := FForm.Height;
  end;

  //FForm.;
  //Result := 0;// FDesignedRealForm.GetRealBounds(AIndex);
end;

procedure TFormImpl.SetRealBounds(AIndex: Integer; AValue: Integer);

  procedure AdjustSize;
  var
    LFormRect: TRect;
    LRealValue, LValue: Integer;
  begin
    LFormRect := Rect(0, 0, 0, 0);;
    LCLIntf.GetClientRect(GetForm.Handle, LFormRect);
    LRealValue := GetRealBounds(AIndex);
    {$IF FPC_FULLVERSION < 301010}
    case AIndex of
      0: LValue := LFormRect.Left;
      1: LValue := LFormRect.Top;
      2: LValue := LFormRect.Right;
      3: LValue := LFormRect.Bottom;
    end;
    {$ELSE}
    LValue := LFormRect.Vector[AIndex];
    {$ENDIF}

    if LValue <> LRealValue then
      FDesignedRealForm.SetRealBounds(AIndex, AValue - (LRealValue - LValue));
  end;

begin
  {FDesignedRealForm.SetRealBounds(AIndex, AValue);

  if AIndex = 2 then
    AdjustSize;}
end;

procedure TFormImpl.SetRealBorderStyle(AVal: TFormBorderStyle);
begin
  //FDesignedRealForm.SetRealBorderStyle(AVal);
end;

procedure TFormImpl.SetRealBorderIcons(AVal: TBorderIcons);
begin
  //FDesignedRealForm.SetRealBorderIcons(AVal);
end;

procedure TFormImpl.SetRealFormStyle(AVal: TFormStyle);
begin
  //FDesignedRealForm.SetRealFormStyle(AVal);
end;

procedure TFormImpl.SetRealPopupMode(AVal: TPopupMode);
begin
  //FDesignedRealForm.SetRealPopupMode(AVal);
end;

procedure TFormImpl.SetRealPopupParent(AVal: TCustomForm);
begin
  //FDesignedRealForm.SetRealPopupParent(AVal);
end;

function TFormImpl.GetRealBorderStyle: TFormBorderStyle;
begin
  Result := bsNone;//FDesignedRealForm.GetRealBorderStyle;
end;

function TFormImpl.GetRealBorderIcons: TBorderIcons;
begin
  Result := [];//FDesignedRealForm.GetRealBorderIcons;
end;

function TFormImpl.GetRealFormStyle: TFormStyle;
begin
  Result := fsNormal;//FDesignedRealForm.GetRealFormStyle;
end;

function TFormImpl.GetRealPopupMode: TPopupMode;
begin
  Result := pmNone//FDesignedRealForm.GetRealPopupMode;
end;

function TFormImpl.GetRealPopupParent: TCustomForm;
begin
  Result := nil//FDesignedRealForm.GetRealPopupParent;
end;

//////

function TFormImpl.GetForm: TCustomForm;
begin
  Result := FForm;
end;

function TFormImpl.GetUpdate: Boolean;
begin
  Result := FUpdate;
end;

function TFormImpl.GetOnChangeHackedBounds: TNotifyEvent;
begin
  Result := FOnChangeHackedBounds;
end;

function TFormImpl.PositionDelta: TPoint;

  procedure FormBorderDelta;
  begin
    Result.X := GetSystemMetrics(SM_CXSIZEFRAME);
    Result.Y := GetSystemMetrics(SM_CYSIZEFRAME) + GetSystemMetrics(SM_CYCAPTION);
  end;

begin
  Result := Point(0, 0);
  {$IFDEF WINDOWS}
  FormBorderDelta;
  {$ENDIF}
end;

procedure TFormImpl.SetOnChangeHackedBounds(const AValue: TNotifyEvent);
begin
  FOnChangeHackedBounds := AValue;
end;

/////// positions

procedure TFormImpl.SetHorzScrollPosition(AValue: Integer);
begin
  RealLeft := -PositionDelta.x - AValue;
  // ! must. resize problem for controls with Align = Top, Right etc.
  RealWidth := Width;
  RealHeight := Height;
end;

procedure TFormImpl.SetVertScrollPosition(AValue: Integer);
begin
  RealTop := -PositionDelta.y - AValue;
  // ! must. resize problem for controls with Align = Top, Right etc.
  RealWidth := Width;
  RealHeight := Height;
end;

function TFormImpl.GetHorzScrollPosition: Integer;
begin
  Result := -(RealLeft {+ PositionDelta.x});
end;

function TFormImpl.GetVertScrollPosition: Integer;
begin
  Result := -(RealTop {+ PositionDelta.y});
end;

procedure TFormImpl.BeginUpdate;
begin
  FUpdate := True;
end;

procedure TFormImpl.EndUpdate(AModified: Boolean);
begin
  FUpdate := False;
end;

procedure TFormImpl.ShowWindow;
begin
  if FForm.Parent = nil then
    LCLIntf.ShowWindow(FForm.Handle, SW_SHOW);
end;

procedure TFormImpl.HideWindow;
begin
  if FForm.Parent = nil then
    LCLIntf.ShowWindow(FForm.Handle, SW_HIDE);
end;

function TFormImpl.QueryInterface(constref IID: TGUID; out Obj
  ): HResult;
begin
  Result := inherited QueryInterface(IID, Obj);
  if Result <> S_OK then
    Result := TFormAccess(FForm).QueryInterface(IID, Obj);
end;

procedure TFormImpl.DoChangeHackedBounds;
begin
  if not FUpdate and Assigned(FOnChangeHackedBounds) then
    FOnChangeHackedBounds(FForm);
end;

function TFormImpl.GetLogicalClientRect(ALogicalClientRect: TRect): TRect;
begin
  Result:=ALogicalClientRect;
end;

constructor TFormImpl.Create(AOwner: TComponent; AForm: TCustomForm);
begin
  inherited Create(AOwner);
  FForm := AForm;
  FDesignedRealForm := Self as IDesignedRealForm;
end;

destructor TFormImpl.Destroy;
begin
  Pointer(FDesignedRealForm) := nil;
  inherited Destroy;
end;

{ TFakeCustomForm }

function TFormContainer.GetDesignedForm: TFormImpl;
begin
  if not Assigned(FDesignedForm) then
    FDesignedForm := TFormImpl.Create(Self, Self);

  Result := FDesignedForm;
end;

function TFormContainer.GetLogicalClientRect: TRect;
begin
  Result := DesignedForm.GetLogicalClientRect(inherited GetLogicalClientRect);
end;

function TFormContainer.GetRealBounds(AIndex: Integer): Integer;
begin
  case AIndex of
    0: Result := inherited Left;
    1: Result := inherited Top;
    2: Result := inherited Width;
    3: Result := inherited Height;
  end;
end;

procedure TFormContainer.SetRealBounds(AIndex: Integer; AValue: Integer);
begin
  case AIndex of
    0: inherited Left := AValue;
    1: inherited Top := AValue;
    2:
      begin
        inherited Width := AValue;
        if FHandledForm <> nil then
          FHandledForm.Width  := AValue;
      end;
    3:
      begin
        inherited Height := AValue;
        if FHandledForm <> nil then
          FHandledForm.Height  := AValue;
      end;
  end;
end;

function TFormContainer.GetPublishedBounds(AIndex: Integer): Integer;
begin
  Result := DesignedForm.GetPublishedBounds(AIndex);
end;

procedure TFormContainer.SetPublishedBounds(AIndex: Integer; AValue: Integer);
begin
  case AIndex of
    0, 1: DesignedForm.SetPublishedBounds(AIndex, AValue);
    2, 3:
      begin
        DesignedForm.SetPublishedBounds(AIndex, AValue);
        SetRealBounds(AIndex, DesignedForm.GetPublishedBounds(AIndex));
      end;
  end;
end;

constructor TFormContainer.CreateNew(AOwner: TComponent; Num: Integer);
begin
  FBackground := TfrFormBackgroundForMDI.Create(DesignedForm);
  FBackground._AddRef;

  inherited CreateNew(AOwner, Num);

  Left := inherited Left;
  Top := inherited Top;
  Width := inherited Width;
  Height := inherited Height;
end;

destructor TFormContainer.Destroy;
var
  I: IInterfaceComponentReference;
begin
  // we need to call "Screen.RemoveForm" to perform
  // references back to nil by IDesignedForm to FDesignedForm
  inherited Destroy;

  FBackground.QueryInterface(IInterfaceComponentReference, I); // only way to omit SIGSEGV
  I.GetComponent.Free;
  Pointer(I) := nil; // omit _Release (Free is above)
  Pointer(FBackground) := nil; // omit _Release (Free is above)

  if Assigned(FDesignedForm) then
    FreeAndNil(FDesignedForm);
end;

procedure TFormContainer.SetRealBorderStyle(AVal: TFormBorderStyle);
begin
  inherited BorderStyle := AVal;
end;

procedure TFormContainer.SetRealBorderIcons(AVal: TBorderIcons);
begin
  inherited BorderIcons := AVal;
end;

procedure TFormContainer.SetRealFormStyle(AVal: TFormStyle);
begin
  inherited FormStyle := AVal;
end;

procedure TFormContainer.SetRealPopupMode(AVal: TPopupMode);
begin
  inherited PopupMode := AVal;
end;

procedure TFormContainer.SetRealPopupParent(AVal: TCustomForm);
begin
  inherited PopupParent := AVal;
end;

function TFormContainer.GetRealBorderStyle: TFormBorderStyle;
begin
  Result := inherited BorderStyle;
end;

function TFormContainer.GetRealBorderIcons: TBorderIcons;
begin
  Result := inherited BorderIcons;
end;

function TFormContainer.GetRealFormStyle: TFormStyle;
begin
  Result := inherited FormStyle;
end;

function TFormContainer.GetRealPopupMode: TPopupMode;
begin
  Result := inherited PopupMode;
end;

function TFormContainer.GetRealPopupParent: TCustomForm;
begin
  Result := inherited PopupParent;
end;

procedure TFormContainer.SetHandledForm(AForm: TCustomForm);
begin
  if FHandledForm = AForm then
    Exit;

  if FHandledForm <> nil then
    FHandledForm.Parent := nil;

  FHandledForm := AForm;

  if FHandledForm <> nil then
    FHandledForm.Parent := Self;
end;


end.