mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 21:59:19 +02:00
lcl: set default values for some properties
git-svn-id: trunk@17403 -
This commit is contained in:
parent
a024e783ba
commit
0392c33c7f
@ -1238,7 +1238,7 @@ type
|
|||||||
public
|
public
|
||||||
// standard properties, which should be supported by all descendants
|
// standard properties, which should be supported by all descendants
|
||||||
property Action: TBasicAction read GetAction write SetAction;
|
property Action: TBasicAction read GetAction write SetAction;
|
||||||
property Align: TAlign read FAlign write SetAlign;
|
property Align: TAlign read FAlign write SetAlign default alNone;
|
||||||
property Anchors: TAnchors read FAnchors write SetAnchors stored IsAnchorsStored;
|
property Anchors: TAnchors read FAnchors write SetAnchors stored IsAnchorsStored;
|
||||||
property AnchorSide[Kind: TAnchorKind]: TAnchorSide read GetAnchorSide;
|
property AnchorSide[Kind: TAnchorKind]: TAnchorSide read GetAnchorSide;
|
||||||
property AutoSize: Boolean read FAutoSize write SetAutoSize default False;
|
property AutoSize: Boolean read FAutoSize write SetAutoSize default False;
|
||||||
|
@ -562,7 +562,7 @@ type
|
|||||||
stored IsHelpFileStored;
|
stored IsHelpFileStored;
|
||||||
property Icon: TIcon read FIcon write SetIcon stored IsIconStored;
|
property Icon: TIcon read FIcon write SetIcon stored IsIconStored;
|
||||||
property KeyPreview: Boolean read FKeyPreview write FKeyPreview
|
property KeyPreview: Boolean read FKeyPreview write FKeyPreview
|
||||||
stored IsKeyPreviewStored;
|
stored IsKeyPreviewStored default False;
|
||||||
property Menu : TMainMenu read FMenu write SetMenu;
|
property Menu : TMainMenu read FMenu write SetMenu;
|
||||||
property ModalResult : TModalResult read FModalResult write SetModalResult;
|
property ModalResult : TModalResult read FModalResult write SetModalResult;
|
||||||
property OnActivate: TNotifyEvent read FOnActivate write FOnActivate;
|
property OnActivate: TNotifyEvent read FOnActivate write FOnActivate;
|
||||||
@ -580,6 +580,7 @@ type
|
|||||||
property OnShow: TNotifyEvent read FOnShow write FOnShow;
|
property OnShow: TNotifyEvent read FOnShow write FOnShow;
|
||||||
property OnWindowStateChange: TNotifyEvent
|
property OnWindowStateChange: TNotifyEvent
|
||||||
read fOnWindowStateChange write fOnWindowStateChange;
|
read fOnWindowStateChange write fOnWindowStateChange;
|
||||||
|
property ParentFont default False;
|
||||||
property PixelsPerInch: Longint read GetPixelsPerInch write FPixelsPerInch stored False;
|
property PixelsPerInch: Longint read GetPixelsPerInch write FPixelsPerInch stored False;
|
||||||
property Position: TPosition read FPosition write SetPosition default poDesigned;
|
property Position: TPosition read FPosition write SetPosition default poDesigned;
|
||||||
property RestoredLeft: integer read GetRestoredLeft;
|
property RestoredLeft: integer read GetRestoredLeft;
|
||||||
|
Loading…
Reference in New Issue
Block a user