{%MainUnit ../forms.pp} {****************************************************************************** TCustomDockForm ****************************************************************************** ***************************************************************************** * * * This file is part of the Lazarus Component Library (LCL) * * * * See the file COPYING.LCL, included in this distribution, * * for details about the copyright. * * * * This program 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. * * * ***************************************************************************** } { TCustomDockForm } procedure TCustomDockForm.DoAddDockClient(Client: TControl; const ARect: TRect ); begin inherited DoAddDockClient(Client, ARect); Client.Align := alClient; 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 CreateNew(TheOwner,0); AutoScroll := False; BorderStyle := bsSizeToolWin; DockSite := True; FormStyle := fsStayOnTop; end; // included by forms.pp { ============================================================================= $Log$ Revision 1.1 2004/08/16 22:09:18 mattias started TCustomDockForm }