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
|
{%MainUnit ../forms.pp}
{******************************************************************************
TCustomDockForm
******************************************************************************
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
{ TCustomDockForm }
procedure TCustomDockForm.DoAddDockClient(Client: TControl; const ARect: TRect);
procedure FixClientPlacing(Client: TControl);
begin
Client.BorderSpacing.Left:=0;
Client.BorderSpacing.Right:=0;
Client.BorderSpacing.Top:=0;
Client.BorderSpacing.Bottom:=0;
Client.BorderSpacing.Around:=0;
end;
begin
inherited DoAddDockClient(Client, ARect);
Client.Align := alClient;
FixClientPlacing(Client);
if ([csLoading,csDestroying]*ComponentState=[]) then
Visible := True;
end;
procedure TCustomDockForm.DoRemoveDockClient(Client: TControl);
begin
inherited DoRemoveDockClient(Client);
if DockClientCount = 0 then Release;
end;
procedure TCustomDockForm.GetSiteInfo(Client: TControl;
var InfluenceRect: TRect; MousePos: TPoint; var CanDock: Boolean);
begin
CanDock := (DockClientCount=0);
end;
procedure TCustomDockForm.Loaded;
var
i: Integer;
begin
// dock child controls after loading
for i:=0 to ControlCount-1 do
Controls[i].Dock(Self,ClientRect);
inherited Loaded;
end;
constructor TCustomDockForm.Create(TheOwner: TComponent);
begin
BeginFormUpdate;
CreateNew(TheOwner,0);
AutoScroll := False;
BorderStyle := bsSizeToolWin;
DockSite := True;
FormStyle := fsStayOnTop;
EndFormUpdate;
end;
// included by forms.pp
|