mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-24 08:06:18 +02:00
LCL: forms: add scaled property. Issue #27075
git-svn-id: trunk@53495 -
This commit is contained in:
parent
5fd2d5f20f
commit
9b0d88e504
@ -452,6 +452,7 @@ type
|
|||||||
FShowInTaskbar: TShowInTaskbar;
|
FShowInTaskbar: TShowInTaskbar;
|
||||||
FWindowState: TWindowState;
|
FWindowState: TWindowState;
|
||||||
FDesignTimeDPI: Integer;
|
FDesignTimeDPI: Integer;
|
||||||
|
FScaled: Boolean;
|
||||||
function GetClientHandle: HWND;
|
function GetClientHandle: HWND;
|
||||||
function GetEffectiveShowInTaskBar: TShowInTaskBar;
|
function GetEffectiveShowInTaskBar: TShowInTaskBar;
|
||||||
function GetMonitor: TMonitor;
|
function GetMonitor: TMonitor;
|
||||||
@ -696,6 +697,7 @@ type
|
|||||||
property RestoredTop: integer read FRestoredTop;
|
property RestoredTop: integer read FRestoredTop;
|
||||||
property RestoredWidth: integer read FRestoredWidth;
|
property RestoredWidth: integer read FRestoredWidth;
|
||||||
property RestoredHeight: integer read FRestoredHeight;
|
property RestoredHeight: integer read FRestoredHeight;
|
||||||
|
property Scaled: Boolean read FScaled write FScaled default False;
|
||||||
property ShowInTaskBar: TShowInTaskbar read FShowInTaskbar write SetShowInTaskBar
|
property ShowInTaskBar: TShowInTaskbar read FShowInTaskbar write SetShowInTaskBar
|
||||||
default stDefault;
|
default stDefault;
|
||||||
property Visible stored VisibleIsStored default false;
|
property Visible stored VisibleIsStored default false;
|
||||||
@ -812,6 +814,7 @@ type
|
|||||||
property ShowInTaskBar;
|
property ShowInTaskBar;
|
||||||
property UseDockManager;
|
property UseDockManager;
|
||||||
property LCLVersion: string read FLCLVersion write FLCLVersion stored LCLVersionIsStored;
|
property LCLVersion: string read FLCLVersion write FLCLVersion stored LCLVersionIsStored;
|
||||||
|
property Scaled;
|
||||||
property Visible;
|
property Visible;
|
||||||
property WindowState;
|
property WindowState;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user