summaryrefslogtreecommitdiff
path: root/src/gui/gui_tab.pas
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-10-22 09:30:36 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-10-22 09:30:36 +0000
commit88ee46de57e74eeb01ad6b1e8cf3da9ff60259c0 (patch)
tree34ab69f343337cc9486511f68af2f109c02a3ffc /src/gui/gui_tab.pas
parent0830146bd2221d1ac5177c20b4b5e22ba48ad53c (diff)
downloadfpGUI-88ee46de57e74eeb01ad6b1e8cf3da9ff60259c0.tar.xz
* Minor update to the tiOPF generic edit mediators unit.
* Correctly set the default values for Form and PageControl components. * Improved the UI Designer so only non-default values for Boolean and Enum types are written to file.
Diffstat (limited to 'src/gui/gui_tab.pas')
-rw-r--r--src/gui/gui_tab.pas10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/gui_tab.pas b/src/gui/gui_tab.pas
index d0b4640e..e33e0e97 100644
--- a/src/gui/gui_tab.pas
+++ b/src/gui/gui_tab.pas
@@ -126,11 +126,11 @@ type
property OnChange: TTabSheetChange read FOnChange write FOnChange;
published
property ActivePageIndex: integer read GetActivePageIndex write SetActivePageIndex;
- property BackgroundColor: TfpgColor read FBackgroundColor write SetBackgroundColor;
- property FixedTabWidth: integer read FFixedTabWidth write SetFixedTabWidth;
- property SortPages: boolean read FSortPages write SetSortPages;
- property Style: TfpgTabStyle read FStyle write SetStyle;
- property TabPosition: TfpgTabPosition read FTabPosition write SetTabPosition;
+ property BackgroundColor: TfpgColor read FBackgroundColor write SetBackgroundColor default clWindowBackground;
+ property FixedTabWidth: integer read FFixedTabWidth write SetFixedTabWidth default 0;
+ property SortPages: boolean read FSortPages write SetSortPages default False;
+ property Style: TfpgTabStyle read FStyle write SetStyle default tsTabs;
+ property TabPosition: TfpgTabPosition read FTabPosition write SetTabPosition default tpTop;
end;