diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-06-04 14:50:45 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-06-04 14:50:45 +0200 |
commit | 7550965fe9d03a2a81583e091fbe1bd8d71aa09d (patch) | |
tree | d32039f7b6dd8516f1f7b071d3ed77ed1f2bdda0 /src | |
parent | c94aa6aa8f0e6fc318226c15f1c0f6e139ad37ff (diff) | |
download | fpGUI-7550965fe9d03a2a81583e091fbe1bd8d71aa09d.tar.xz |
Bumped visibility to Published for some properties.
This facilitates in the loading of external form files at runtime.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/fpg_button.pas | 10 | ||||
-rw-r--r-- | src/gui/fpg_checkbox.pas | 8 | ||||
-rw-r--r-- | src/gui/fpg_form.pas | 10 | ||||
-rw-r--r-- | src/gui/fpg_label.pas | 8 | ||||
-rw-r--r-- | src/gui/fpg_panel.pas | 24 |
5 files changed, 58 insertions, 2 deletions
diff --git a/src/gui/fpg_button.pas b/src/gui/fpg_button.pas index 7fae3b75..9dc9f7f2 100644 --- a/src/gui/fpg_button.pas +++ b/src/gui/fpg_button.pas @@ -136,18 +136,26 @@ type property Flat; property FontDesc; property GroupIndex; + property Height; property Hint; property ImageLayout; property ImageMargin; property ImageName; property ImageSpacing; + property Left; + property MaxHeight; + property MaxWidth; + property MinHeight; + property MinWidth; property ModalResult; property ParentShowHint; property ShowHint; property ShowImage; + property TabOrder; property Text; property TextColor; - property TabOrder; + property Top; + property Width; property OnClick; property OnMouseDown; property OnMouseExit; diff --git a/src/gui/fpg_checkbox.pas b/src/gui/fpg_checkbox.pas index e514da25..a075a4cd 100644 --- a/src/gui/fpg_checkbox.pas +++ b/src/gui/fpg_checkbox.pas @@ -69,12 +69,20 @@ type property BoxLayout; property Checked; property FontDesc; + property Height; property Hint; + property Left; + property MaxHeight; + property MaxWidth; + property MinHeight; + property MinWidth; property ParentShowHint; property ShowHint; property TabOrder; property Text; property TextColor; + property Top; + property Width; property OnChange; property OnEnter; property OnExit; diff --git a/src/gui/fpg_form.pas b/src/gui/fpg_form.pas index 5e7d3988..57c156a6 100644 --- a/src/gui/fpg_form.pas +++ b/src/gui/fpg_form.pas @@ -107,11 +107,19 @@ type published property BackgroundColor; property FullScreen; + property Height; property Hint; + property Left; + property MaxHeight; + property MaxWidth; + property MinHeight; + property MinWidth; property ModalResult; - property Sizeable; property ShowHint; + property Sizeable; property TextColor; + property Top; + property Width; property WindowPosition; property WindowTitle; property OnActivate; diff --git a/src/gui/fpg_label.pas b/src/gui/fpg_label.pas index 00c6e484..409116b9 100644 --- a/src/gui/fpg_label.pas +++ b/src/gui/fpg_label.pas @@ -72,13 +72,21 @@ type property AutoSize; property BackgroundColor; property FontDesc; + property Height; property Hint; property Layout; + property Left; property LineSpace; + property MaxHeight; + property MaxWidth; + property MinHeight; + property MinWidth; + property Parent; property ParentShowHint; property ShowHint; property Text; property TextColor; + property Top; property Width; property WrapText; property OnClick; diff --git a/src/gui/fpg_panel.pas b/src/gui/fpg_panel.pas index 80226f62..76f46145 100644 --- a/src/gui/fpg_panel.pas +++ b/src/gui/fpg_panel.pas @@ -67,12 +67,20 @@ type published property BackgroundColor; property BorderStyle; + property Height; property Hint; + property Left; + property MaxHeight; + property MaxWidth; + property MinHeight; + property MinWidth; property ParentBackgroundColor; property ParentShowHint; property Shape: TPanelShape read FPanelShape write SetPanelShape default bsBox; property ShowHint; property Style; + property Top; + property Width; property OnClick; property OnDoubleClick; property OnMouseDown; @@ -117,16 +125,24 @@ type property BackgroundColor; property BorderStyle; property FontDesc: string read GetFontDesc write SetFontDesc; + property Height; property Hint; property Layout: TLayout read GetLayout write SetLayout default tlCenter; + property Left; property LineSpace: integer read GetLineSpace write SetLineSpace default 2; property Margin: integer read GetMargin write SetMargin default 2; + property MaxHeight; + property MaxWidth; + property MinHeight; + property MinWidth; property ParentBackgroundColor; property ParentShowHint; property ShowHint; property Style; property Text: string read GetText write SetText; property TextColor; + property Top; + property Width; property WrapText: boolean read GetWrapText write SetWrapText default False; property OnClick; property OnDoubleClick; @@ -160,13 +176,21 @@ type property BackgroundColor; property BorderStyle; property FontDesc: string read GetFontDesc write SetFontDesc; + property Height; property Hint; + property Left; property Margin: integer read GetMargin write SetMargin default 2; + property MaxHeight; + property MaxWidth; + property MinHeight; + property MinWidth; property ParentShowHint; property ShowHint; property Style; property Text: string read GetText write SetText; property TextColor; + property Top; + property Width; property OnClick; property OnDoubleClick; property OnShowHint; |