mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 06:38:13 +02:00
92 lines
2.6 KiB
PHP
92 lines
2.6 KiB
PHP
{%MainUnit ../interfacebase.pp}
|
|
{ $Id$
|
|
******************************************************************************
|
|
TWidgetSet
|
|
|
|
WinApi stuff
|
|
|
|
|
|
!! Keep this alphabetical !!
|
|
******************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL.txt, 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. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
|
|
constructor TWidgetSet.Create;
|
|
begin
|
|
inherited Create;
|
|
FThemeServices := CreateThemeServices;
|
|
end;
|
|
|
|
procedure TWidgetSet.BeforeDestruction;
|
|
begin
|
|
FreeAndNil(FThemeServices); // destroy before destructor to release resources
|
|
inherited BeforeDestruction;
|
|
end;
|
|
|
|
procedure TWidgetSet.PassCmdLineOptions;
|
|
begin
|
|
end;
|
|
|
|
function TWidgetSet.CreateThemeServices: TThemeServices;
|
|
begin
|
|
Result := TThemeServices.Create;
|
|
end;
|
|
|
|
procedure TWidgetSet.AppRun(const ALoop: TApplicationMainLoop);
|
|
begin
|
|
if Assigned(ALoop) then ALoop;
|
|
end;
|
|
|
|
procedure TWidgetSet.AppSetIcon(const Small, Big: HICON);
|
|
begin
|
|
end;
|
|
|
|
procedure TWidgetSet.AppSetTitle(const ATitle: string);
|
|
begin
|
|
end;
|
|
|
|
procedure TWidgetSet.AppSetVisible(const AVisible: Boolean);
|
|
begin
|
|
end;
|
|
|
|
function TWidgetSet.AppRemoveStayOnTopFlags(const ASystemTopAlso: Boolean = False): Boolean;
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function TWidgetSet.AppRestoreStayOnTopFlags(const ASystemTopAlso: Boolean = False): Boolean;
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function TWidgetSet.GetLCLCapability(ACapability: TLCLCapability): PtrUInt;
|
|
begin
|
|
case ACapability of
|
|
lcCanDrawOutsideOnPaint,
|
|
lcNeedMininimizeAppWithMainForm,
|
|
lcApplicationTitle,
|
|
lcFormIcon,
|
|
lcModalWindow:
|
|
Result := LCL_CAPABILITY_YES;
|
|
else
|
|
Result := LCL_CAPABILITY_NO;
|
|
end;
|
|
end;
|
|
|
|
procedure TWidgetSet.DCSetAntialiasing(CanvasHandle: HDC; AEnabled: Boolean);
|
|
begin
|
|
end;
|
|
|