mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 14:20:29 +02:00
23 lines
818 B
PHP
23 lines
818 B
PHP
{%MainUnit ../controls.pp}
|
|
|
|
{*****************************************************************************
|
|
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.
|
|
*****************************************************************************
|
|
}
|
|
|
|
|
|
{-------------------------------------------------------------------------------
|
|
function HostDockSiteManagerAvailable(HostDockSite: TWinControl): boolean;
|
|
-------------------------------------------------------------------------------}
|
|
function HostDockSiteManagerAvailable(HostDockSite: TWinControl): boolean;
|
|
begin
|
|
Result:=(HostDockSite<>nil) and HostDockSite.UseDockManager
|
|
and (HostDockSite.DockManager<>nil);
|
|
end;
|
|
|
|
|
|
// included by controls.pp
|