diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-10-26 20:25:35 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-10-26 20:25:35 +0000 |
commit | a3687eda6cda2d5e864cf37d826700479cac9a2e (patch) | |
tree | 8315742c8dd9a454e488a02e37e72b14d7c38f00 | |
parent | 67e0718213a52daa6cf5145e848273e8dbc6fe2d (diff) | |
download | fpGUI-a3687eda6cda2d5e864cf37d826700479cac9a2e.tar.xz |
* Added missing published properties to components in fpg_panel unit.
-rw-r--r-- | src/gui/fpg_panel.pas | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/fpg_panel.pas b/src/gui/fpg_panel.pas index 4d064ff9..318b04c6 100644 --- a/src/gui/fpg_panel.pas +++ b/src/gui/fpg_panel.pas @@ -65,6 +65,8 @@ type property BorderStyle; property Shape: TPanelShape read FPanelShape write SetPanelShape default bsBox; property Style; + property ParentShowHint; + property ShowHint; property OnClick; property OnDoubleClick; property OnMouseDown; @@ -115,6 +117,8 @@ type property LineSpace: integer read GetLineSpace write SetLineSpace default 2; property Margin: integer read GetMargin write SetMargin default 2; property WrapText: boolean read GetWrapText write SetWrapText default False; + property ParentShowHint; + property ShowHint; property OnClick; property OnDoubleClick; end; @@ -149,6 +153,8 @@ type property Text: string read GetText write SetText; property TextColor; property Margin: integer read GetMargin write SetMargin default 2; + property ParentShowHint; + property ShowHint; property OnClick; property OnDoubleClick; end; |