LCL: forms: add scaled property. Issue #27075

git-svn-id: trunk@53495 -
This commit is contained in:
ondrej 2016-11-30 23:24:09 +00:00
parent 5fd2d5f20f
commit 9b0d88e504

View File

@ -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;