mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-15 17:55:57 +02:00
ide: add show menu glyphs to the desktop options frame
git-svn-id: trunk@20194 -
This commit is contained in:
parent
80fd86e43e
commit
fe6e112d79
@ -144,6 +144,7 @@ type
|
|||||||
FFileHasChangedOnDisk: boolean;
|
FFileHasChangedOnDisk: boolean;
|
||||||
FIDESpeedButtonsVisible: boolean;
|
FIDESpeedButtonsVisible: boolean;
|
||||||
FShowButtonGlyphs: TApplicationShowGlyphs;
|
FShowButtonGlyphs: TApplicationShowGlyphs;
|
||||||
|
FShowMenuGlyphs: TApplicationShowGlyphs;
|
||||||
FXMLCfg: TXMLConfig;
|
FXMLCfg: TXMLConfig;
|
||||||
FConfigStore: TXMLOptionsStorage;
|
FConfigStore: TXMLOptionsStorage;
|
||||||
|
|
||||||
@ -459,8 +460,9 @@ type
|
|||||||
write fMsgViewDblClickJumps;
|
write fMsgViewDblClickJumps;
|
||||||
property MsgViewFocus: boolean read fMsgViewFocus write fMsgViewFocus;
|
property MsgViewFocus: boolean read fMsgViewFocus write fMsgViewFocus;
|
||||||
|
|
||||||
// button glyphs
|
// glyphs
|
||||||
property ShowButtonGlyphs: TApplicationShowGlyphs read FShowButtonGlyphs write FShowButtonGlyphs;
|
property ShowButtonGlyphs: TApplicationShowGlyphs read FShowButtonGlyphs write FShowButtonGlyphs;
|
||||||
|
property ShowMenuGlyphs: TApplicationShowGlyphs read FShowMenuGlyphs write FShowMenuGlyphs;
|
||||||
|
|
||||||
// default template for each 'new item' category: Name=Path, Value=TemplateName
|
// default template for each 'new item' category: Name=Path, Value=TemplateName
|
||||||
property NewUnitTemplate: string read FNewUnitTemplate write FNewUnitTemplate;
|
property NewUnitTemplate: string read FNewUnitTemplate write FNewUnitTemplate;
|
||||||
@ -654,8 +656,9 @@ begin
|
|||||||
fMsgViewDblClickJumps:=true;
|
fMsgViewDblClickJumps:=true;
|
||||||
fMsgViewFocus:=DefaultMsgViewFocus;
|
fMsgViewFocus:=DefaultMsgViewFocus;
|
||||||
|
|
||||||
// button glyphs
|
// glyphs
|
||||||
FShowButtonGlyphs := sbgSystem;
|
FShowButtonGlyphs := sbgSystem;
|
||||||
|
FShowMenuGlyphs := sbgSystem;
|
||||||
|
|
||||||
// files
|
// files
|
||||||
LazarusDirectory:=IDEProcs.ProgramDirectory;
|
LazarusDirectory:=IDEProcs.ProgramDirectory;
|
||||||
@ -971,9 +974,11 @@ begin
|
|||||||
fMsgViewFocus:=XMLConfig.GetValue(
|
fMsgViewFocus:=XMLConfig.GetValue(
|
||||||
Path+'MsgViewFocus/Value',DefaultMsgViewFocus);
|
Path+'MsgViewFocus/Value',DefaultMsgViewFocus);
|
||||||
|
|
||||||
// button glyphs
|
// glyphs
|
||||||
FShowButtonGlyphs := TApplicationShowGlyphs(XMLConfig.GetValue(Path+'ShowButtonGlyphs/Value',
|
FShowButtonGlyphs := TApplicationShowGlyphs(XMLConfig.GetValue(Path+'ShowButtonGlyphs/Value',
|
||||||
Ord(sbgSystem)));
|
Ord(sbgSystem)));
|
||||||
|
FShowMenuGlyphs := TApplicationShowGlyphs(XMLConfig.GetValue(Path+'ShowMenuGlyphs/Value',
|
||||||
|
Ord(sbgSystem)));
|
||||||
|
|
||||||
// recent files and directories
|
// recent files and directories
|
||||||
FMaxRecentOpenFiles:=XMLConfig.GetValue(
|
FMaxRecentOpenFiles:=XMLConfig.GetValue(
|
||||||
@ -1201,9 +1206,11 @@ begin
|
|||||||
XMLConfig.SetDeleteValue(Path+'MsgViewFocus/Value',
|
XMLConfig.SetDeleteValue(Path+'MsgViewFocus/Value',
|
||||||
fMsgViewFocus,DefaultMsgViewFocus);
|
fMsgViewFocus,DefaultMsgViewFocus);
|
||||||
|
|
||||||
// button glyphs
|
// glyphs
|
||||||
XMLConfig.SetDeleteValue(Path+'ShowButtonGlyphs/Value',
|
XMLConfig.SetDeleteValue(Path+'ShowButtonGlyphs/Value',
|
||||||
Ord(FShowButtonGlyphs), Ord(sbgSystem));
|
Ord(FShowButtonGlyphs), Ord(sbgSystem));
|
||||||
|
XMLConfig.SetDeleteValue(Path+'ShowMenuGlyphs/Value',
|
||||||
|
Ord(FShowMenuGlyphs), Ord(sbgSystem));
|
||||||
|
|
||||||
// recent files and directories
|
// recent files and directories
|
||||||
XMLConfig.SetValue(
|
XMLConfig.SetValue(
|
||||||
|
@ -148,9 +148,9 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
end
|
end
|
||||||
object Bevel7: TBevel[11]
|
object Bevel7: TBevel[11]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = lblButtonGlyphs
|
AnchorSideTop.Control = lblGlyphs
|
||||||
AnchorSideTop.Side = asrCenter
|
AnchorSideTop.Side = asrCenter
|
||||||
AnchorSideRight.Control = lblButtonGlyphs
|
AnchorSideRight.Control = lblGlyphs
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 3
|
Height = 3
|
||||||
Top = 209
|
Top = 209
|
||||||
@ -158,30 +158,30 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
BorderSpacing.Right = 6
|
BorderSpacing.Right = 6
|
||||||
end
|
end
|
||||||
object lblButtonGlyphs: TLabel[12]
|
object lblGlyphs: TLabel[12]
|
||||||
AnchorSideTop.Control = SaveDesktopSettingsToFileButton
|
AnchorSideTop.Control = SaveDesktopSettingsToFileButton
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 70
|
Left = 70
|
||||||
Height = 14
|
Height = 14
|
||||||
Top = 203
|
Top = 203
|
||||||
Width = 90
|
Width = 52
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'lblButtonGlyphs'
|
Caption = 'lblGlyphs'
|
||||||
Font.Style = [fsBold]
|
Font.Style = [fsBold]
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
end
|
end
|
||||||
object Bevel8: TBevel[13]
|
object Bevel8: TBevel[13]
|
||||||
AnchorSideLeft.Control = lblButtonGlyphs
|
AnchorSideLeft.Control = lblGlyphs
|
||||||
AnchorSideLeft.Side = asrBottom
|
AnchorSideLeft.Side = asrBottom
|
||||||
AnchorSideTop.Control = lblButtonGlyphs
|
AnchorSideTop.Control = lblGlyphs
|
||||||
AnchorSideTop.Side = asrCenter
|
AnchorSideTop.Side = asrCenter
|
||||||
AnchorSideRight.Control = Owner
|
AnchorSideRight.Control = Owner
|
||||||
AnchorSideRight.Side = asrBottom
|
AnchorSideRight.Side = asrBottom
|
||||||
Left = 166
|
Left = 128
|
||||||
Height = 3
|
Height = 3
|
||||||
Top = 209
|
Top = 209
|
||||||
Width = 431
|
Width = 469
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
end
|
end
|
||||||
@ -192,17 +192,17 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
AnchorSideRight.Control = lblHints
|
AnchorSideRight.Control = lblHints
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 3
|
Height = 3
|
||||||
Top = 252
|
Top = 272
|
||||||
Width = 64
|
Width = 64
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
BorderSpacing.Right = 6
|
BorderSpacing.Right = 6
|
||||||
end
|
end
|
||||||
object lblHints: TLabel[15]
|
object lblHints: TLabel[15]
|
||||||
AnchorSideTop.Control = rbGlyphShowAlways
|
AnchorSideTop.Control = Panel2
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 70
|
Left = 70
|
||||||
Height = 14
|
Height = 14
|
||||||
Top = 246
|
Top = 266
|
||||||
Width = 43
|
Width = 43
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'lblHints'
|
Caption = 'lblHints'
|
||||||
@ -219,7 +219,7 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
AnchorSideRight.Side = asrBottom
|
AnchorSideRight.Side = asrBottom
|
||||||
Left = 119
|
Left = 119
|
||||||
Height = 3
|
Height = 3
|
||||||
Top = 252
|
Top = 272
|
||||||
Width = 478
|
Width = 478
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
@ -231,7 +231,7 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
AnchorSideRight.Control = lblMisc
|
AnchorSideRight.Control = lblMisc
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 3
|
Height = 3
|
||||||
Top = 312
|
Top = 332
|
||||||
Width = 64
|
Width = 64
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
BorderSpacing.Right = 6
|
BorderSpacing.Right = 6
|
||||||
@ -241,7 +241,7 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 70
|
Left = 70
|
||||||
Height = 14
|
Height = 14
|
||||||
Top = 306
|
Top = 326
|
||||||
Width = 39
|
Width = 39
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'lblMisc'
|
Caption = 'lblMisc'
|
||||||
@ -258,74 +258,102 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
AnchorSideRight.Side = asrBottom
|
AnchorSideRight.Side = asrBottom
|
||||||
Left = 115
|
Left = 115
|
||||||
Height = 3
|
Height = 3
|
||||||
Top = 312
|
Top = 332
|
||||||
Width = 482
|
Width = 482
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
end
|
end
|
||||||
object CheckDiskChangesWithLoadingCheckBox: TCheckBox[20]
|
object lblButtons: TLabel[20]
|
||||||
|
AnchorSideLeft.Control = Owner
|
||||||
|
AnchorSideTop.Control = Panel1
|
||||||
|
AnchorSideTop.Side = asrCenter
|
||||||
|
Left = 6
|
||||||
|
Height = 14
|
||||||
|
Top = 224
|
||||||
|
Width = 58
|
||||||
|
BorderSpacing.Left = 6
|
||||||
|
Caption = 'lblButtons'
|
||||||
|
Font.Style = [fsBold]
|
||||||
|
ParentColor = False
|
||||||
|
ParentFont = False
|
||||||
|
end
|
||||||
|
object lblMenus: TLabel[21]
|
||||||
|
AnchorSideLeft.Control = Owner
|
||||||
|
AnchorSideTop.Control = Panel2
|
||||||
|
AnchorSideTop.Side = asrCenter
|
||||||
|
Left = 6
|
||||||
|
Height = 14
|
||||||
|
Top = 244
|
||||||
|
Width = 51
|
||||||
|
BorderSpacing.Left = 6
|
||||||
|
Caption = 'lblMenus'
|
||||||
|
Font.Style = [fsBold]
|
||||||
|
ParentColor = False
|
||||||
|
ParentFont = False
|
||||||
|
end
|
||||||
|
object CheckDiskChangesWithLoadingCheckBox: TCheckBox[22]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = MsgViewFocusCheckBox
|
AnchorSideTop.Control = MsgViewFocusCheckBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 17
|
Height = 17
|
||||||
Top = 360
|
Top = 380
|
||||||
Width = 221
|
Width = 221
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
Caption = 'CheckDiskChangesWithLoadingCheckBox'
|
Caption = 'CheckDiskChangesWithLoadingCheckBox'
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
end
|
end
|
||||||
object ShowHintsForComponentPaletteCheckBox: TCheckBox[21]
|
object ShowHintsForComponentPaletteCheckBox: TCheckBox[23]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = lblHints
|
AnchorSideTop.Control = lblHints
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 17
|
Height = 17
|
||||||
Top = 266
|
Top = 286
|
||||||
Width = 220
|
Width = 220
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'ShowHintsForComponentPaletteCheckBox'
|
Caption = 'ShowHintsForComponentPaletteCheckBox'
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
end
|
end
|
||||||
object ShowHintsForMainSpeedButtonsCheckBox: TCheckBox[22]
|
object ShowHintsForMainSpeedButtonsCheckBox: TCheckBox[24]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = ShowHintsForComponentPaletteCheckBox
|
AnchorSideTop.Control = ShowHintsForComponentPaletteCheckBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 17
|
Height = 17
|
||||||
Top = 283
|
Top = 303
|
||||||
Width = 223
|
Width = 223
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
Caption = 'ShowHintsForMainSpeedButtonsCheckBox'
|
Caption = 'ShowHintsForMainSpeedButtonsCheckBox'
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
end
|
end
|
||||||
object MsgViewDblClickJumpsCheckBox: TCheckBox[23]
|
object MsgViewDblClickJumpsCheckBox: TCheckBox[25]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = lblMisc
|
AnchorSideTop.Control = lblMisc
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 17
|
Height = 17
|
||||||
Top = 326
|
Top = 346
|
||||||
Width = 179
|
Width = 179
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'MsgViewDblClickJumpsCheckBox'
|
Caption = 'MsgViewDblClickJumpsCheckBox'
|
||||||
TabOrder = 3
|
TabOrder = 3
|
||||||
end
|
end
|
||||||
object MsgViewFocusCheckBox: TCheckBox[24]
|
object MsgViewFocusCheckBox: TCheckBox[26]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = MsgViewDblClickJumpsCheckBox
|
AnchorSideTop.Control = MsgViewDblClickJumpsCheckBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 17
|
Height = 17
|
||||||
Top = 343
|
Top = 363
|
||||||
Width = 139
|
Width = 139
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
Caption = 'MsgViewFocusCheckBox'
|
Caption = 'MsgViewFocusCheckBox'
|
||||||
TabOrder = 4
|
TabOrder = 4
|
||||||
end
|
end
|
||||||
object LanguageComboBox: TComboBox[25]
|
object LanguageComboBox: TComboBox[27]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = lblLanguage
|
AnchorSideTop.Control = lblLanguage
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
@ -336,16 +364,14 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
Top = 20
|
Top = 20
|
||||||
Width = 585
|
Width = 585
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
AutoComplete = False
|
|
||||||
BorderSpacing.Left = 6
|
BorderSpacing.Left = 6
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
BorderSpacing.Right = 6
|
BorderSpacing.Right = 6
|
||||||
ItemHeight = 13
|
ItemHeight = 13
|
||||||
ItemWidth = 0
|
|
||||||
Style = csDropDownList
|
Style = csDropDownList
|
||||||
TabOrder = 5
|
TabOrder = 5
|
||||||
end
|
end
|
||||||
object AutoSaveIntervalInSecsComboBox: TComboBox[26]
|
object AutoSaveIntervalInSecsComboBox: TComboBox[28]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = AutoSaveIntervalInSecsLabel
|
AnchorSideTop.Control = AutoSaveIntervalInSecsLabel
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
@ -356,7 +382,6 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
Top = 127
|
Top = 127
|
||||||
Width = 585
|
Width = 585
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
AutoComplete = False
|
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
Enabled = False
|
Enabled = False
|
||||||
ItemHeight = 13
|
ItemHeight = 13
|
||||||
@ -366,10 +391,9 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
'300'
|
'300'
|
||||||
'120'
|
'120'
|
||||||
)
|
)
|
||||||
ItemWidth = 0
|
|
||||||
TabOrder = 6
|
TabOrder = 6
|
||||||
end
|
end
|
||||||
object AutoSaveProjectCheckBox: TCheckBox[27]
|
object AutoSaveProjectCheckBox: TCheckBox[29]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = AutoSaveEditorFilesCheckBox
|
AnchorSideTop.Control = AutoSaveEditorFilesCheckBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
@ -382,7 +406,7 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
Enabled = False
|
Enabled = False
|
||||||
TabOrder = 7
|
TabOrder = 7
|
||||||
end
|
end
|
||||||
object AutoSaveEditorFilesCheckBox: TCheckBox[28]
|
object AutoSaveEditorFilesCheckBox: TCheckBox[30]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = lblAutoSave
|
AnchorSideTop.Control = lblAutoSave
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
@ -396,7 +420,7 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
Enabled = False
|
Enabled = False
|
||||||
TabOrder = 8
|
TabOrder = 8
|
||||||
end
|
end
|
||||||
object LoadDesktopSettingsFromFileButton: TButton[29]
|
object LoadDesktopSettingsFromFileButton: TButton[31]
|
||||||
AnchorSideLeft.Control = lblCenter
|
AnchorSideLeft.Control = lblCenter
|
||||||
AnchorSideTop.Control = lblDesktopFiles
|
AnchorSideTop.Control = lblDesktopFiles
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
@ -415,7 +439,7 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
OnClick = LoadDesktopSettingsFromFileButtonClick
|
OnClick = LoadDesktopSettingsFromFileButtonClick
|
||||||
TabOrder = 9
|
TabOrder = 9
|
||||||
end
|
end
|
||||||
object SaveDesktopSettingsToFileButton: TButton[30]
|
object SaveDesktopSettingsToFileButton: TButton[32]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = lblDesktopFiles
|
AnchorSideTop.Control = lblDesktopFiles
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
@ -434,45 +458,111 @@ inherited DesktopOptionsFrame: TDesktopOptionsFrame
|
|||||||
OnClick = SaveDesktopSettingsToFileButtonClick
|
OnClick = SaveDesktopSettingsToFileButtonClick
|
||||||
TabOrder = 10
|
TabOrder = 10
|
||||||
end
|
end
|
||||||
object rbGlyphShowAlways: TRadioButton[31]
|
object Panel1: TPanel[33]
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = lblButtons
|
||||||
AnchorSideTop.Control = lblButtonGlyphs
|
AnchorSideLeft.Side = asrBottom
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Control = lblGlyphs
|
||||||
Left = 6
|
|
||||||
Height = 17
|
|
||||||
Top = 223
|
|
||||||
Width = 114
|
|
||||||
BorderSpacing.Left = 6
|
|
||||||
BorderSpacing.Top = 6
|
|
||||||
Caption = 'rbGlyphShowAlways'
|
|
||||||
TabOrder = 11
|
|
||||||
end
|
|
||||||
object rbGlyphShowNever: TRadioButton[32]
|
|
||||||
AnchorSideLeft.Control = lblCenter
|
|
||||||
AnchorSideLeft.Side = asrCenter
|
|
||||||
AnchorSideTop.Control = lblButtonGlyphs
|
|
||||||
AnchorSideTop.Side = asrBottom
|
|
||||||
Left = 243
|
|
||||||
Height = 17
|
|
||||||
Top = 223
|
|
||||||
Width = 110
|
|
||||||
BorderSpacing.Top = 6
|
|
||||||
Caption = 'rbGlyphShowNever'
|
|
||||||
TabOrder = 12
|
|
||||||
end
|
|
||||||
object rbGlyphShowSystem: TRadioButton[33]
|
|
||||||
AnchorSideTop.Control = lblButtonGlyphs
|
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = Owner
|
AnchorSideRight.Control = Owner
|
||||||
AnchorSideRight.Side = asrBottom
|
AnchorSideRight.Side = asrBottom
|
||||||
Left = 476
|
Left = 70
|
||||||
Height = 17
|
Height = 17
|
||||||
Top = 223
|
Top = 223
|
||||||
Width = 115
|
Width = 521
|
||||||
Anchors = [akTop, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
AutoSize = True
|
||||||
|
BorderSpacing.Left = 6
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
BorderSpacing.Right = 6
|
BorderSpacing.Right = 6
|
||||||
Caption = 'rbGlyphShowSystem'
|
BevelOuter = bvNone
|
||||||
TabOrder = 13
|
ClientHeight = 17
|
||||||
|
ClientWidth = 521
|
||||||
|
TabOrder = 11
|
||||||
|
object rbBtnGlyphShowSystem: TRadioButton
|
||||||
|
AnchorSideTop.Control = Panel1
|
||||||
|
AnchorSideRight.Control = Panel1
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 390
|
||||||
|
Height = 17
|
||||||
|
Top = 0
|
||||||
|
Width = 131
|
||||||
|
Anchors = [akTop, akRight]
|
||||||
|
Caption = 'rbBtnGlyphShowSystem'
|
||||||
|
TabOrder = 0
|
||||||
|
end
|
||||||
|
object rbBtnGlyphShowNever: TRadioButton
|
||||||
|
AnchorSideLeft.Control = Panel1
|
||||||
|
AnchorSideLeft.Side = asrCenter
|
||||||
|
AnchorSideTop.Control = Panel1
|
||||||
|
Left = 197
|
||||||
|
Height = 17
|
||||||
|
Top = 0
|
||||||
|
Width = 126
|
||||||
|
Caption = 'rbBtnGlyphShowNever'
|
||||||
|
TabOrder = 1
|
||||||
|
end
|
||||||
|
object rbBtnGlyphShowAlways: TRadioButton
|
||||||
|
AnchorSideLeft.Control = Panel1
|
||||||
|
AnchorSideTop.Control = Panel1
|
||||||
|
Left = 0
|
||||||
|
Height = 17
|
||||||
|
Top = 0
|
||||||
|
Width = 130
|
||||||
|
Caption = 'rbBtnGlyphShowAlways'
|
||||||
|
TabOrder = 2
|
||||||
|
end
|
||||||
|
end
|
||||||
|
object Panel2: TPanel[34]
|
||||||
|
AnchorSideLeft.Control = Panel1
|
||||||
|
AnchorSideTop.Control = Panel1
|
||||||
|
AnchorSideTop.Side = asrBottom
|
||||||
|
AnchorSideRight.Control = Owner
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 70
|
||||||
|
Height = 17
|
||||||
|
Top = 243
|
||||||
|
Width = 521
|
||||||
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
AutoSize = True
|
||||||
|
BorderSpacing.Top = 3
|
||||||
|
BorderSpacing.Right = 6
|
||||||
|
BevelOuter = bvNone
|
||||||
|
ClientHeight = 17
|
||||||
|
ClientWidth = 521
|
||||||
|
TabOrder = 12
|
||||||
|
object rbMenuGlyphShowSystem: TRadioButton
|
||||||
|
AnchorSideLeft.Control = Panel2
|
||||||
|
AnchorSideTop.Control = Panel2
|
||||||
|
AnchorSideRight.Control = Panel2
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 379
|
||||||
|
Height = 17
|
||||||
|
Top = 0
|
||||||
|
Width = 142
|
||||||
|
Anchors = [akTop, akRight]
|
||||||
|
Caption = 'rbMenuGlyphShowSystem'
|
||||||
|
TabOrder = 0
|
||||||
|
end
|
||||||
|
object rbMenuGlyphShowNever: TRadioButton
|
||||||
|
AnchorSideLeft.Control = Panel2
|
||||||
|
AnchorSideLeft.Side = asrCenter
|
||||||
|
AnchorSideTop.Control = Panel2
|
||||||
|
Left = 192
|
||||||
|
Height = 17
|
||||||
|
Top = 0
|
||||||
|
Width = 137
|
||||||
|
Caption = 'rbMenuGlyphShowNever'
|
||||||
|
TabOrder = 1
|
||||||
|
end
|
||||||
|
object rbMenuGlyphShowAlways: TRadioButton
|
||||||
|
AnchorSideLeft.Control = Panel2
|
||||||
|
AnchorSideTop.Control = Panel2
|
||||||
|
Left = 0
|
||||||
|
Height = 17
|
||||||
|
Top = 0
|
||||||
|
Width = 141
|
||||||
|
Caption = 'rbMenuGlyphShowAlways'
|
||||||
|
TabOrder = 2
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -53,122 +53,151 @@ LazarusResources.Add('TDesktopOptionsFrame','FORMDATA',[
|
|||||||
+'Owner'#19'AnchorSideLeft.Side'#7#9'asrCenter'#21'AnchorSideTop.Control'#7#5
|
+'Owner'#19'AnchorSideLeft.Side'#7#9'asrCenter'#21'AnchorSideTop.Control'#7#5
|
||||||
+'Owner'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#3'*'#1#6'Height'#2#14#3
|
+'Owner'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#3'*'#1#6'Height'#2#14#3
|
||||||
+'Top'#3#237#0#5'Width'#2#1#11'ParentColor'#8#0#0#242#2#11#6'TBevel'#6'Bevel7'
|
+'Top'#3#237#0#5'Width'#2#1#11'ParentColor'#8#0#0#242#2#11#6'TBevel'#6'Bevel7'
|
||||||
+#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#15'lblBut'
|
+#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#9'lblGlyp'
|
||||||
+'tonGlyphs'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'
|
+'hs'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#9'l'
|
||||||
+#7#15'lblButtonGlyphs'#4'Left'#2#0#6'Height'#2#3#3'Top'#3#209#0#5'Width'#2'@'
|
+'blGlyphs'#4'Left'#2#0#6'Height'#2#3#3'Top'#3#209#0#5'Width'#2'@'#7'Anchors'
|
||||||
+#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#19'BorderSpacing.Right'#2#6#0
|
+#11#5'akTop'#6'akLeft'#7'akRight'#0#19'BorderSpacing.Right'#2#6#0#0#242#2#12
|
||||||
+#0#242#2#12#6'TLabel'#15'lblButtonGlyphs'#21'AnchorSideTop.Control'#7#31'Sav'
|
+#6'TLabel'#9'lblGlyphs'#21'AnchorSideTop.Control'#7#31'SaveDesktopSettingsTo'
|
||||||
+'eDesktopSettingsToFileButton'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'
|
+'FileButton'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2'F'#6'Height'#2
|
||||||
+#2'F'#6'Height'#2#14#3'Top'#3#203#0#5'Width'#2'Z'#17'BorderSpacing.Top'#2#6#7
|
+#14#3'Top'#3#203#0#5'Width'#2'4'#17'BorderSpacing.Top'#2#6#7'Caption'#6#9'lb'
|
||||||
+'Caption'#6#15'lblButtonGlyphs'#10'Font.Style'#11#6'fsBold'#0#11'ParentColor'
|
+'lGlyphs'#10'Font.Style'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0
|
||||||
+#8#10'ParentFont'#8#0#0#242#2#13#6'TBevel'#6'Bevel8'#22'AnchorSideLeft.Contr'
|
+#0#242#2#13#6'TBevel'#6'Bevel8'#22'AnchorSideLeft.Control'#7#9'lblGlyphs'#19
|
||||||
+'ol'#7#15'lblButtonGlyphs'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorS'
|
+'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#9'lblGlyphs'
|
||||||
+'ideTop.Control'#7#15'lblButtonGlyphs'#18'AnchorSideTop.Side'#7#9'asrCenter'
|
|
||||||
+#23'AnchorSideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBott'
|
|
||||||
,'om'#4'Left'#3#166#0#6'Height'#2#3#3'Top'#3#209#0#5'Width'#3#175#1#7'Anchors'
|
|
||||||
+#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#6#0#0#242#2#14#6
|
|
||||||
+'TBevel'#6'Bevel9'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Co'
|
|
||||||
+'ntrol'#7#8'lblHints'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRig'
|
|
||||||
+'ht.Control'#7#8'lblHints'#4'Left'#2#0#6'Height'#2#3#3'Top'#3#252#0#5'Width'
|
|
||||||
+#2'@'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#19'BorderSpacing.Right'#2
|
|
||||||
+#6#0#0#242#2#15#6'TLabel'#8'lblHints'#21'AnchorSideTop.Control'#7#17'rbGlyph'
|
|
||||||
+'ShowAlways'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2'F'#6'Height'#2
|
|
||||||
+#14#3'Top'#3#246#0#5'Width'#2'+'#17'BorderSpacing.Top'#2#6#7'Caption'#6#8'lb'
|
|
||||||
+'lHints'#10'Font.Style'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0
|
|
||||||
+#242#2#16#6'TBevel'#7'Bevel10'#22'AnchorSideLeft.Control'#7#8'lblHints'#19'A'
|
|
||||||
+'nchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#8'lblHints'
|
|
||||||
+#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#5'Owner'
|
+#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#5'Owner'
|
||||||
+#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#3#3'Top'#3
|
+#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3#128#0#6'Height'#2#3#3'Top'
|
||||||
+#252#0#5'Width'#3#222#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'Bor'
|
,#3#209#0#5'Width'#3#213#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'B'
|
||||||
+'derSpacing.Left'#2#6#0#0#242#2#17#6'TBevel'#7'Bevel11'#22'AnchorSideLeft.Co'
|
+'orderSpacing.Left'#2#6#0#0#242#2#14#6'TBevel'#6'Bevel9'#22'AnchorSideLeft.C'
|
||||||
+'ntrol'#7#5'Owner'#21'AnchorSideTop.Control'#7#7'lblMisc'#18'AnchorSideTop.S'
|
+'ontrol'#7#5'Owner'#21'AnchorSideTop.Control'#7#8'lblHints'#18'AnchorSideTop'
|
||||||
+'ide'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#7'lblMisc'#4'Left'#2#0#6
|
+'.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#8'lblHints'#4'Left'#2#0
|
||||||
+'Height'#2#3#3'Top'#3'8'#1#5'Width'#2'@'#7'Anchors'#11#5'akTop'#6'akLeft'#7
|
+#6'Height'#2#3#3'Top'#3#16#1#5'Width'#2'@'#7'Anchors'#11#5'akTop'#6'akLeft'#7
|
||||||
+'akRight'#0#19'BorderSpacing.Right'#2#6#0#0#242#2#18#6'TLabel'#7'lblMisc'#21
|
+'akRight'#0#19'BorderSpacing.Right'#2#6#0#0#242#2#15#6'TLabel'#8'lblHints'#21
|
||||||
+'AnchorSideTop.Control'#7'$ShowHintsForMainSpeedButtonsCheckBox'#18'AnchorSi'
|
+'AnchorSideTop.Control'#7#6'Panel2'#18'AnchorSideTop.Side'#7#9'asrBottom'#4
|
||||||
+'deTop.Side'#7#9'asrBottom'#4'Left'#2'F'#6'Height'#2#14#3'Top'#3'2'#1#5'Widt'
|
+'Left'#2'F'#6'Height'#2#14#3'Top'#3#10#1#5'Width'#2'+'#17'BorderSpacing.Top'
|
||||||
+'h'#2''''#17'BorderSpacing.Top'#2#6#7'Caption'#6#7'lblMisc'#10'Font.Style'#11
|
+#2#6#7'Caption'#6#8'lblHints'#10'Font.Style'#11#6'fsBold'#0#11'ParentColor'#8
|
||||||
+#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#242#2#19#6'TBevel'#7'Bev'
|
+#10'ParentFont'#8#0#0#242#2#16#6'TBevel'#7'Bevel10'#22'AnchorSideLeft.Contro'
|
||||||
+'el12'#22'AnchorSideLeft.Control'#7#7'lblMisc'#19'AnchorSideLeft.Side'#7#9'a'
|
+'l'#7#8'lblHints'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Co'
|
||||||
+'srBottom'#21'AnchorSideTop.Control'#7#7'lblMisc'#18'AnchorSideTop.Side'#7#9
|
+'ntrol'#7#8'lblHints'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRig'
|
||||||
+'asrCenter'#23'AnchorSideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7
|
+'ht.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'w'
|
||||||
+#9'asrBottom'#4'Left'#2's'#6'Height'#2#3#3'Top'#3'8'#1#5'Width'#3#226#1#7'An'
|
+#6'Height'#2#3#3'Top'#3#16#1#5'Width'#3#222#1#7'Anchors'#11#5'akTop'#6'akLef'
|
||||||
+'chors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#6#0#0#242
|
+'t'#7'akRight'#0#18'BorderSpacing.Left'#2#6#0#0#242#2#17#6'TBevel'#7'Bevel11'
|
||||||
+#2#20#9'TCheckBox#CheckDiskChangesWithLoadingCheckBox'#22'AnchorSideLeft.Con'
|
+#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#7'lblMisc'
|
||||||
+'trol'#7#5'Owner'#21'AnchorSideTop.Control'#7#20'MsgViewFocusCheckBox'#18'An'
|
+#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#7'lblMi'
|
||||||
+'chorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#17#3'Top'#3'h'#1#5
|
+'sc'#4'Left'#2#0#6'Height'#2#3#3'Top'#3'L'#1#5'Width'#2'@'#7'Anchors'#11#5'a'
|
||||||
+'Width'#3#221#0#18'BorderSpacing.Left'#2#6#7'Caption'#6'#CheckDiskChangesWit'
|
+'kTop'#6'akLeft'#7'akRight'#0#19'BorderSpacing.Right'#2#6#0#0#242#2#18#6'TLa'
|
||||||
+'hLoadingCheckBox'#8'TabOrder'#2#0#0#0#242#2#21#9'TCheckBox$ShowHintsForComp'
|
+'bel'#7'lblMisc'#21'AnchorSideTop.Control'#7'$ShowHintsForMainSpeedButtonsCh'
|
||||||
+'onentPaletteCheckBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTo'
|
+'eckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2'F'#6'Height'#2#14#3
|
||||||
+'p.Control'#7#8'lblHints'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6
|
+'Top'#3'F'#1#5'Width'#2''''#17'BorderSpacing.Top'#2#6#7'Caption'#6#7'lblMisc'
|
||||||
+'Height'#2#17#3'Top'#3#10#1#5'Width'#3#220#0#18'BorderSpacing.Left'#2#6#17'B'
|
+#10'Font.Style'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#242#2
|
||||||
+'orderSpacing.Top'#2#6#7'Caption'#6'$ShowHintsForComponentPaletteCheckBox'#8
|
+#19#6'TBevel'#7'Bevel12'#22'AnchorSideLeft.Control'#7#7'lblMisc'#19'AnchorSi'
|
||||||
+'TabOrder'#2#1#0#0#242#2#22#9'TCheckBox$ShowHintsForMainSpeedButtonsCheckBox'
|
+'deLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#7'lblMisc'#18'Ancho'
|
||||||
+#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7'$ShowHint'
|
+'rSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#5'Owner'#20'Anc'
|
||||||
+'sForComponentPaletteCheckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'
|
+'horSideRight.Side'#7#9'asrBottom'#4'Left'#2's'#6'Height'#2#3#3'Top'#3'L'#1#5
|
||||||
+#2#6#6'Height'#2#17#3'Top'#3#27#1#5'Width'#3#223#0#18'BorderSpacing.Left'#2#6
|
+'Width'#3#226#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpaci'
|
||||||
+#7'Caption'#6'$ShowHintsForMainSpeedButtonsCheckBox'#8'TabOrder'#2#2#0#0#242
|
+'ng.Left'#2#6#0#0#242#2#20#6'TLabel'#10'lblButtons'#22'AnchorSideLeft.Contro'
|
||||||
+#2#23#9'TCheckBox'#28'MsgViewDblClickJumpsCheckBox'#22'AnchorSideLeft.Contro'
|
+'l'#7#5'Owner'#21'AnchorSideTop.Control'#7#6'Panel1'#18'AnchorSideTop.Side'#7
|
||||||
+'l'#7#5'Owner'#21'AnchorSideTop.Control'#7#7'lblMisc'#18'AnchorSideTop.Side'
|
+#9'asrCenter'#4'Left'#2#6#6'Height'#2#14#3'Top'#3#224#0#5'Width'#2':'#18'Bor'
|
||||||
+#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#17#3'Top'#3'F'#1#5'Width'#3#179#0#18
|
+'derSpacing.Left'#2#6#7'Caption'#6#10'lblButtons'#10'Font.Style'#11#6'fsBold'
|
||||||
+'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#7'Caption'#6#28'MsgViewDb'
|
+#0#11'ParentColor'#8#10'ParentFont'#8#0#0#242#2#21#6'TLabel'#8'lblMenus'#22
|
||||||
+'lClickJumpsCheckBox'#8'TabOrder'#2#3#0#0#242#2#24#9'TCheckBox'#20'MsgViewFo'
|
+'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#6'Panel2'#18
|
||||||
+'cusCheckBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'
|
+'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2#6#6'Height'#2#14#3'Top'#3#244#0
|
||||||
+#7#28'MsgViewDblClickJumpsCheckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#4
|
+#5'Width'#2'3'#18'BorderSpacing.Left'#2#6#7'Caption'#6#8'lblMenus'#10'Font.S'
|
||||||
+'Left'#2#6#6'Height'#2#17#3'Top'#3'W'#1#5'Width'#3#139#0#18'BorderSpacing.Le'
|
+'tyle'#11#6'fsBold'#0#11'ParentColor'#8#10'ParentFont'#8#0#0#242#2#22#9'TChe'
|
||||||
+'ft'#2#6#7'Caption'#6#20'MsgViewFocusCheckBox'#8'TabOrder'#2#4#0#0#242#2#25#9
|
+'ckBox#CheckDiskChangesWithLoadingCheckBox'#22'AnchorSideLeft.Control'#7#5'O'
|
||||||
+'TComboBox'#16'LanguageComboBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'An'
|
+'wner'#21'AnchorSideTop.Control'#7#20'MsgViewFocusCheckBox'#18'AnchorSideTop'
|
||||||
+'chorSideTop.Control'#7#11'lblLanguage'#18'AnchorSideTop.Side'#7#9'asrBottom'
|
+'.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#17#3'Top'#3'|'#1#5'Width'#3
|
||||||
+#23'AnchorSideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBott'
|
+#221#0#18'BorderSpacing.Left'#2#6#7'Caption'#6'#CheckDiskChangesWithLoadingC'
|
||||||
+'om'#4'Left'#2#6#6'Height'#2#21#3'Top'#2#20#5'Width'#3'I'#2#7'Anchors'#11#5
|
+'heckBox'#8'TabOrder'#2#0#0#0#242#2#23#9'TCheckBox$ShowHintsForComponentPale'
|
||||||
+'akTop'#6'akLeft'#7'akRight'#0#12'AutoComplete'#8#18'BorderSpacing.Left'#2#6
|
+'tteCheckBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'
|
||||||
+#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Right'#2#6#10'ItemHeight'#2#13#9
|
+#7#8'lblHints'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2
|
||||||
+'ItemWidth'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#5#0#0#242#2#26#9
|
+#17#3'Top'#3#30#1#5'Width'#3#220#0#18'BorderSpacing.Left'#2#6#17'BorderSpaci'
|
||||||
+'TComboBox'#30'AutoSaveIntervalInSecsComboBox'#22'AnchorSideLeft.Control'#7#5
|
+'ng.Top'#2#6#7'Caption'#6'$ShowHintsForComponentPaletteCheckBox'#8'TabOrder'
|
||||||
+'Owner'#21'AnchorSideTop.Control'#7#27'AutoSaveIntervalInSecsLabel'#18'Ancho'
|
+#2#1#0#0#242#2#24#9'TCheckBox$ShowHintsForMainSpeedButtonsCheckBox'#22'Ancho'
|
||||||
+'rSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#5'Owner'#20'Anc'
|
+'rSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7'$ShowHintsForComp'
|
||||||
+'horSideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#21#3'Top'#2''#5
|
+'onentPaletteCheckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'H'
|
||||||
+'Width'#3'I'#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#12'AutoComplete'
|
+'eight'#2#17#3'Top'#3'/'#1#5'Width'#3#223#0#18'BorderSpacing.Left'#2#6#7'Cap'
|
||||||
,#8#20'BorderSpacing.Around'#2#6#7'Enabled'#8#10'ItemHeight'#2#13#13'Items.St'
|
+'tion'#6'$ShowHintsForMainSpeedButtonsCheckBox'#8'TabOrder'#2#2#0#0#242#2#25
|
||||||
+'rings'#1#6#4'1200'#6#3'600'#6#3'300'#6#3'120'#0#9'ItemWidth'#2#0#8'TabOrder'
|
+#9'TCheckBox'#28'MsgViewDblClickJumpsCheckBox'#22'AnchorSideLeft.Control'#7#5
|
||||||
+#2#6#0#0#242#2#27#9'TCheckBox'#23'AutoSaveProjectCheckBox'#22'AnchorSideLeft'
|
+'Owner'#21'AnchorSideTop.Control'#7#7'lblMisc'#18'AnchorSideTop.Side'#7#9'as'
|
||||||
+'.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#27'AutoSaveEditorFilesChec'
|
+'rBottom'#4'Left'#2#6#6'Height'#2#17#3'Top'#3'Z'#1#5'Width'#3#179#0#18'Borde'
|
||||||
+'kBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#17#3'To'
|
+'rSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#7'Caption'#6#28'MsgViewDblClic'
|
||||||
+'p'#2'T'#5'Width'#3#147#0#18'BorderSpacing.Left'#2#6#7'Caption'#6#23'AutoSav'
|
+'kJumpsCheckBox'#8'TabOrder'#2#3#0#0#242#2#26#9'TCheckBox'#20'MsgViewFocusCh'
|
||||||
+'eProjectCheckBox'#7'Enabled'#8#8'TabOrder'#2#7#0#0#242#2#28#9'TCheckBox'#27
|
+'eckBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#28
|
||||||
+'AutoSaveEditorFilesCheckBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'Ancho'
|
+'MsgViewDblClickJumpsCheckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'
|
||||||
+'rSideTop.Control'#7#11'lblAutoSave'#18'AnchorSideTop.Side'#7#9'asrBottom'#4
|
+#2#6#6'Height'#2#17#3'Top'#3'k'#1#5'Width'#3#139#0#18'BorderSpacing.Left'#2#6
|
||||||
+'Left'#2#6#6'Height'#2#17#3'Top'#2'C'#5'Width'#3#162#0#18'BorderSpacing.Left'
|
+#7'Caption'#6#20'MsgViewFocusCheckBox'#8'TabOrder'#2#4#0#0#242#2#27#9'TCombo'
|
||||||
+#2#6#17'BorderSpacing.Top'#2#6#7'Caption'#6#27'AutoSaveEditorFilesCheckBox'#7
|
+'Box'#16'LanguageComboBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSi'
|
||||||
+'Enabled'#8#8'TabOrder'#2#8#0#0#242#2#29#7'TButton!LoadDesktopSettingsFromFi'
|
+'deTop.Control'#7#11'lblLanguage'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'A'
|
||||||
+'leButton'#22'AnchorSideLeft.Control'#7#9'lblCenter'#21'AnchorSideTop.Contro'
|
+'nchorSideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
|
||||||
+'l'#7#15'lblDesktopFiles'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSid'
|
+'Left'#2#6#6'Height'#2#21#3'Top'#2#20#5'Width'#3'I'#2#7'Anchors'#11#5'akTop'
|
||||||
+'eRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3
|
,#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6
|
||||||
+'-'#1#6'Height'#2#23#3'Top'#3#174#0#5'Width'#3'"'#1#7'Anchors'#11#5'akTop'#6
|
+#19'BorderSpacing.Right'#2#6#10'ItemHeight'#2#13#5'Style'#7#14'csDropDownLis'
|
||||||
+'akLeft'#7'akRight'#0#8'AutoSize'#9#18'BorderSpacing.Left'#2#3#17'BorderSpac'
|
+'t'#8'TabOrder'#2#5#0#0#242#2#28#9'TComboBox'#30'AutoSaveIntervalInSecsCombo'
|
||||||
+'ing.Top'#2#6#19'BorderSpacing.Right'#2#6#7'Caption'#6'!LoadDesktopSettingsF'
|
+'Box'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#27'A'
|
||||||
+'romFileButton'#7'OnClick'#7'&LoadDesktopSettingsFromFileButtonClick'#8'TabO'
|
+'utoSaveIntervalInSecsLabel'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'Anchor'
|
||||||
+'rder'#2#9#0#0#242#2#30#7'TButton'#31'SaveDesktopSettingsToFileButton'#22'An'
|
+'SideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Lef'
|
||||||
+'chorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#15'lblDesktopF'
|
+'t'#2#6#6'Height'#2#21#3'Top'#2''#5'Width'#3'I'#2#7'Anchors'#11#5'akTop'#6
|
||||||
+'iles'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#9
|
+'akLeft'#7'akRight'#0#20'BorderSpacing.Around'#2#6#7'Enabled'#8#10'ItemHeigh'
|
||||||
+'lblCenter'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2
|
+'t'#2#13#13'Items.Strings'#1#6#4'1200'#6#3'600'#6#3'300'#6#3'120'#0#8'TabOrd'
|
||||||
+#23#3'Top'#3#174#0#5'Width'#3'"'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRigh'
|
+'er'#2#6#0#0#242#2#29#9'TCheckBox'#23'AutoSaveProjectCheckBox'#22'AnchorSide'
|
||||||
+'t'#0#8'AutoSize'#9#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#19
|
+'Left.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#27'AutoSaveEditorFiles'
|
||||||
+'BorderSpacing.Right'#2#3#7'Caption'#6#31'SaveDesktopSettingsToFileButton'#7
|
+'CheckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#17#3
|
||||||
+'OnClick'#7'$SaveDesktopSettingsToFileButtonClick'#8'TabOrder'#2#10#0#0#242#2
|
+'Top'#2'T'#5'Width'#3#147#0#18'BorderSpacing.Left'#2#6#7'Caption'#6#23'AutoS'
|
||||||
+#31#12'TRadioButton'#17'rbGlyphShowAlways'#22'AnchorSideLeft.Control'#7#5'Ow'
|
+'aveProjectCheckBox'#7'Enabled'#8#8'TabOrder'#2#7#0#0#242#2#30#9'TCheckBox'
|
||||||
+'ner'#21'AnchorSideTop.Control'#7#15'lblButtonGlyphs'#18'AnchorSideTop.Side'
|
+#27'AutoSaveEditorFilesCheckBox'#22'AnchorSideLeft.Control'#7#5'Owner'#21'An'
|
||||||
+#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#17#3'Top'#3#223#0#5'Width'#2'r'#18'B'
|
+'chorSideTop.Control'#7#11'lblAutoSave'#18'AnchorSideTop.Side'#7#9'asrBottom'
|
||||||
+'orderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#7'Caption'#6#17'rbGlyphSho'
|
+#4'Left'#2#6#6'Height'#2#17#3'Top'#2'C'#5'Width'#3#162#0#18'BorderSpacing.Le'
|
||||||
+'wAlways'#8'TabOrder'#2#11#0#0#242#2' '#12'TRadioButton'#16'rbGlyphShowNever'
|
+'ft'#2#6#17'BorderSpacing.Top'#2#6#7'Caption'#6#27'AutoSaveEditorFilesCheckB'
|
||||||
+#22'AnchorSideLeft.Control'#7#9'lblCenter'#19'AnchorSideLeft.Side'#7#9'asrCe'
|
+'ox'#7'Enabled'#8#8'TabOrder'#2#8#0#0#242#2#31#7'TButton!LoadDesktopSettings'
|
||||||
+'nter'#21'AnchorSideTop.Control'#7#15'lblButtonGlyphs'#18'AnchorSideTop.Side'
|
+'FromFileButton'#22'AnchorSideLeft.Control'#7#9'lblCenter'#21'AnchorSideTop.'
|
||||||
+#7#9'asrBottom'#4'Left'#3#243#0#6'Height'#2#17#3'Top'#3#223#0#5'Width'#2'n'
|
+'Control'#7#15'lblDesktopFiles'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'Anc'
|
||||||
+#17'BorderSpacing.Top'#2#6#7'Caption'#6#16'rbGlyphShowNever'#8'TabOrder'#2#12
|
+'horSideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
|
||||||
+#0#0#242#2'!'#12'TRadioButton'#17'rbGlyphShowSystem'#21'AnchorSideTop.Contro'
|
+'Left'#3'-'#1#6'Height'#2#23#3'Top'#3#174#0#5'Width'#3'"'#1#7'Anchors'#11#5
|
||||||
+'l'#7#15'lblButtonGlyphs'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSid'
|
+'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#9#18'BorderSpacing.Left'#2#3#17'B'
|
||||||
+'eRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3
|
+'orderSpacing.Top'#2#6#19'BorderSpacing.Right'#2#6#7'Caption'#6'!LoadDesktop'
|
||||||
+#220#1#6'Height'#2#17#3'Top'#3#223#0#5'Width'#2's'#7'Anchors'#11#5'akTop'#7
|
+'SettingsFromFileButton'#7'OnClick'#7'&LoadDesktopSettingsFromFileButtonClic'
|
||||||
+'akRight'#0#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Right'#2#6#7'Caption'
|
+'k'#8'TabOrder'#2#9#0#0#242#2' '#7'TButton'#31'SaveDesktopSettingsToFileButt'
|
||||||
+#6#17'rbGlyphShowSystem'#8'TabOrder'#2#13#0#0#0
|
+'on'#22'AnchorSideLeft.Control'#7#5'Owner'#21'AnchorSideTop.Control'#7#15'lb'
|
||||||
|
+'lDesktopFiles'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Con'
|
||||||
|
+'trol'#7#9'lblCenter'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6
|
||||||
|
+'Height'#2#23#3'Top'#3#174#0#5'Width'#3'"'#1#7'Anchors'#11#5'akTop'#6'akLeft'
|
||||||
|
+#7'akRight'#0#8'AutoSize'#9#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'
|
||||||
|
+#2#6#19'BorderSpacing.Right'#2#3#7'Caption'#6#31'SaveDesktopSettingsToFileBu'
|
||||||
|
+'tton'#7'OnClick'#7'$SaveDesktopSettingsToFileButtonClick'#8'TabOrder'#2#10#0
|
||||||
|
+#0#242#2'!'#6'TPanel'#6'Panel1'#22'AnchorSideLeft.Control'#7#10'lblButtons'
|
||||||
|
+#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#9'lblGly'
|
||||||
|
+'phs'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#5
|
||||||
|
+'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'F'#6'Height'#2#17#3
|
||||||
|
+'Top'#3#223#0#5'Width'#3#9#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8
|
||||||
|
+'AutoSize'#9#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#19'BorderS'
|
||||||
|
+'pacing.Right'#2#6#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2#17#11'Clien'
|
||||||
|
+'tWidth'#3#9#2#8'TabOrder'#2#11#0#12'TRadioButton'#20'rbBtnGlyphShowSystem'
|
||||||
|
+#21'AnchorSideTop.Control'#7#6'Panel1'#23'AnchorSideRight.Control'#7#6'Panel'
|
||||||
|
+'1'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3#134#1#6'Height'#2#17#3
|
||||||
|
+'Top'#2#0#5'Width'#3#131#0#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6
|
||||||
|
+#20'rbBtnGlyphShowSystem'#8'TabOrder'#2#0#0#0#12'TRadioButton'#19'rbBtnGlyph'
|
||||||
|
+'ShowNever'#22'AnchorSideLeft.Control'#7#6'Panel1'#19'AnchorSideLeft.Side'#7
|
||||||
|
+#9'asrCenter'#21'AnchorSideTop.Control'#7#6'Panel1'#4'Left'#3#197#0#6'Height'
|
||||||
|
+#2#17#3'Top'#2#0#5'Width'#2'~'#7'Caption'#6#19'rbBtnGlyphShowNever'#8'TabOrd'
|
||||||
|
+'er'#2#1#0#0#12'TRadioButton'#20'rbBtnGlyphShowAlways'#22'AnchorSideLeft.Con'
|
||||||
|
+'trol'#7#6'Panel1'#21'AnchorSideTop.Control'#7#6'Panel1'#4'Left'#2#0#6'Heigh'
|
||||||
|
+'t'#2#17#3'Top'#2#0#5'Width'#3#130#0#7'Caption'#6#20'rbBtnGlyphShowAlways'#8
|
||||||
|
+'TabOrder'#2#2#0#0#0#242#2'"'#6'TPanel'#6'Panel2'#22'AnchorSideLeft.Control'
|
||||||
|
+#7#6'Panel1'#21'AnchorSideTop.Control'#7#6'Panel1'#18'AnchorSideTop.Side'#7#9
|
||||||
|
+'asrBottom'#23'AnchorSideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7
|
||||||
|
+#9'asrBottom'#4'Left'#2'F'#6'Height'#2#17#3'Top'#3#243#0#5'Width'#3#9#2#7'An'
|
||||||
|
+'chors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#9#17'BorderSpacing.To'
|
||||||
|
+'p'#2#3#19'BorderSpacing.Right'#2#6#10'BevelOuter'#7#6'bvNone'#12'ClientHeig'
|
||||||
|
+'ht'#2#17#11'ClientWidth'#3#9#2#8'TabOrder'#2#12#0#12'TRadioButton'#21'rbMen'
|
||||||
|
+'uGlyphShowSystem'#22'AnchorSideLeft.Control'#7#6'Panel2'#21'AnchorSideTop.C'
|
||||||
|
+'ontrol'#7#6'Panel2'#23'AnchorSideRight.Control'#7#6'Panel2'#20'AnchorSideRi'
|
||||||
|
+'ght.Side'#7#9'asrBottom'#4'Left'#3'{'#1#6'Height'#2#17#3'Top'#2#0#5'Width'#3
|
||||||
|
+#142#0#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#21'rbMenuGlyphShowSy'
|
||||||
|
+'stem'#8'TabOrder'#2#0#0#0#12'TRadioButton'#20'rbMenuGlyphShowNever'#22'Anch'
|
||||||
|
,'orSideLeft.Control'#7#6'Panel2'#19'AnchorSideLeft.Side'#7#9'asrCenter'#21'A'
|
||||||
|
+'nchorSideTop.Control'#7#6'Panel2'#4'Left'#3#192#0#6'Height'#2#17#3'Top'#2#0
|
||||||
|
+#5'Width'#3#137#0#7'Caption'#6#20'rbMenuGlyphShowNever'#8'TabOrder'#2#1#0#0
|
||||||
|
+#12'TRadioButton'#21'rbMenuGlyphShowAlways'#22'AnchorSideLeft.Control'#7#6'P'
|
||||||
|
+'anel2'#21'AnchorSideTop.Control'#7#6'Panel2'#4'Left'#2#0#6'Height'#2#17#3'T'
|
||||||
|
+'op'#2#0#5'Width'#3#141#0#7'Caption'#6#21'rbMenuGlyphShowAlways'#8'TabOrder'
|
||||||
|
+#2#2#0#0#0#0
|
||||||
]);
|
]);
|
||||||
|
@ -51,20 +51,27 @@ type
|
|||||||
Bevel8: TBevel;
|
Bevel8: TBevel;
|
||||||
Bevel9: TBevel;
|
Bevel9: TBevel;
|
||||||
CheckDiskChangesWithLoadingCheckBox: TCheckBox;
|
CheckDiskChangesWithLoadingCheckBox: TCheckBox;
|
||||||
|
lblButtons: TLabel;
|
||||||
|
lblMenus: TLabel;
|
||||||
lblHints: TLabel;
|
lblHints: TLabel;
|
||||||
lblCenter: TLabel;
|
lblCenter: TLabel;
|
||||||
LanguageComboBox: TComboBox;
|
LanguageComboBox: TComboBox;
|
||||||
lblDesktopFiles: TLabel;
|
lblDesktopFiles: TLabel;
|
||||||
lblButtonGlyphs: TLabel;
|
lblGlyphs: TLabel;
|
||||||
lblMisc: TLabel;
|
lblMisc: TLabel;
|
||||||
lblLanguage: TLabel;
|
lblLanguage: TLabel;
|
||||||
lblAutoSave: TLabel;
|
lblAutoSave: TLabel;
|
||||||
LoadDesktopSettingsFromFileButton: TButton;
|
LoadDesktopSettingsFromFileButton: TButton;
|
||||||
MsgViewDblClickJumpsCheckBox: TCheckBox;
|
MsgViewDblClickJumpsCheckBox: TCheckBox;
|
||||||
MsgViewFocusCheckBox: TCheckBox;
|
MsgViewFocusCheckBox: TCheckBox;
|
||||||
rbGlyphShowAlways: TRadioButton;
|
Panel1: TPanel;
|
||||||
rbGlyphShowNever: TRadioButton;
|
Panel2: TPanel;
|
||||||
rbGlyphShowSystem: TRadioButton;
|
rbMenuGlyphShowAlways: TRadioButton;
|
||||||
|
rbMenuGlyphShowNever: TRadioButton;
|
||||||
|
rbMenuGlyphShowSystem: TRadioButton;
|
||||||
|
rbBtnGlyphShowAlways: TRadioButton;
|
||||||
|
rbBtnGlyphShowNever: TRadioButton;
|
||||||
|
rbBtnGlyphShowSystem: TRadioButton;
|
||||||
SaveDesktopSettingsToFileButton: TButton;
|
SaveDesktopSettingsToFileButton: TButton;
|
||||||
ShowHintsForComponentPaletteCheckBox: TCheckBox;
|
ShowHintsForComponentPaletteCheckBox: TCheckBox;
|
||||||
ShowHintsForMainSpeedButtonsCheckBox: TCheckBox;
|
ShowHintsForMainSpeedButtonsCheckBox: TCheckBox;
|
||||||
@ -127,10 +134,15 @@ begin
|
|||||||
LoadDesktopSettingsFromFileButton.Caption := dlgLoadDFile;
|
LoadDesktopSettingsFromFileButton.Caption := dlgLoadDFile;
|
||||||
|
|
||||||
// button glyphs
|
// button glyphs
|
||||||
lblButtonGlyphs.Caption := dlgDesktopButtonGlyphs;
|
lblGlyphs.Caption := dlgDesktopGlyphsFor;
|
||||||
rbGlyphShowAlways.Caption := dlgGlyphShowAlways;
|
lblButtons.Caption := dlgDesktopButtons;
|
||||||
rbGlyphShowNever.Caption := dlgGlyphShowNever;
|
lblMenus.Caption := dlgDesktopMenus;
|
||||||
rbGlyphShowSystem.Caption := dlgGlyphShowSystem;
|
rbBtnGlyphShowAlways.Caption := dlgGlyphShowAlways;
|
||||||
|
rbBtnGlyphShowNever.Caption := dlgGlyphShowNever;
|
||||||
|
rbBtnGlyphShowSystem.Caption := dlgGlyphShowSystem;
|
||||||
|
rbMenuGlyphShowAlways.Caption := dlgGlyphShowAlways;
|
||||||
|
rbMenuGlyphShowNever.Caption := dlgGlyphShowNever;
|
||||||
|
rbMenuGlyphShowSystem.Caption := dlgGlyphShowSystem;
|
||||||
|
|
||||||
// hints
|
// hints
|
||||||
lblHints.Caption := dlgDesktopHints;
|
lblHints.Caption := dlgDesktopHints;
|
||||||
@ -170,11 +182,16 @@ begin
|
|||||||
MsgViewDblClickJumpsCheckBox.Checked:=MsgViewDblClickJumps;
|
MsgViewDblClickJumpsCheckBox.Checked:=MsgViewDblClickJumps;
|
||||||
MsgViewFocusCheckBox.Checked:=MsgViewFocus;
|
MsgViewFocusCheckBox.Checked:=MsgViewFocus;
|
||||||
|
|
||||||
// button glyphs
|
// glyphs
|
||||||
case ShowButtonGlyphs of
|
case ShowButtonGlyphs of
|
||||||
sbgAlways: rbGlyphShowAlways.Checked := True;
|
sbgAlways: rbBtnGlyphShowAlways.Checked := True;
|
||||||
sbgNever: rbGlyphShowNever.Checked := True;
|
sbgNever: rbBtnGlyphShowNever.Checked := True;
|
||||||
sbgSystem: rbGlyphShowSystem.Checked := True;
|
sbgSystem: rbBtnGlyphShowSystem.Checked := True;
|
||||||
|
end;
|
||||||
|
case ShowMenuGlyphs of
|
||||||
|
sbgAlways: rbMenuGlyphShowAlways.Checked := True;
|
||||||
|
sbgNever: rbMenuGlyphShowNever.Checked := True;
|
||||||
|
sbgSystem: rbMenuGlyphShowSystem.Checked := True;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -201,14 +218,21 @@ begin
|
|||||||
// messages view
|
// messages view
|
||||||
MsgViewDblClickJumps:=MsgViewDblClickJumpsCheckBox.Checked;
|
MsgViewDblClickJumps:=MsgViewDblClickJumpsCheckBox.Checked;
|
||||||
MsgViewFocus:=MsgViewFocusCheckBox.Checked;
|
MsgViewFocus:=MsgViewFocusCheckBox.Checked;
|
||||||
// button glyphs
|
// glyphs
|
||||||
if rbGlyphShowAlways.Checked then
|
if rbBtnGlyphShowAlways.Checked then
|
||||||
ShowButtonGlyphs := sbgAlways
|
ShowButtonGlyphs := sbgAlways
|
||||||
else
|
else
|
||||||
if rbGlyphShowNever.Checked then
|
if rbBtnGlyphShowNever.Checked then
|
||||||
ShowButtonGlyphs := sbgNever
|
ShowButtonGlyphs := sbgNever
|
||||||
else
|
else
|
||||||
ShowButtonGlyphs := sbgSystem;
|
ShowButtonGlyphs := sbgSystem;
|
||||||
|
if rbMenuGlyphShowAlways.Checked then
|
||||||
|
ShowMenuGlyphs := sbgAlways
|
||||||
|
else
|
||||||
|
if rbMenuGlyphShowNever.Checked then
|
||||||
|
ShowMenuGlyphs := sbgNever
|
||||||
|
else
|
||||||
|
ShowMenuGlyphs := sbgSystem;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -964,7 +964,9 @@ resourcestring
|
|||||||
dlgDesktopHints = 'Hints';
|
dlgDesktopHints = 'Hints';
|
||||||
dlgPalHints = 'Hints for component palette';
|
dlgPalHints = 'Hints for component palette';
|
||||||
dlgSpBHints = 'Hints for main speed buttons (open, save, ...)';
|
dlgSpBHints = 'Hints for main speed buttons (open, save, ...)';
|
||||||
dlgDesktopButtonGlyphs = 'Glyphs for Buttons';
|
dlgDesktopGlyphsFor = 'Glyphs for:';
|
||||||
|
dlgDesktopButtons = 'Buttons - ';
|
||||||
|
dlgDesktopMenus = 'Menus - ';
|
||||||
dlgGlyphShowAlways = 'Show Always';
|
dlgGlyphShowAlways = 'Show Always';
|
||||||
dlgGlyphShowNever = 'Show Never';
|
dlgGlyphShowNever = 'Show Never';
|
||||||
dlgGlyphShowSystem = 'Use System Defaults';
|
dlgGlyphShowSystem = 'Use System Defaults';
|
||||||
|
@ -1097,6 +1097,7 @@ begin
|
|||||||
ExternalTools.OnFreeOutputFilter := @OnExtToolFreeOutputFilter;
|
ExternalTools.OnFreeOutputFilter := @OnExtToolFreeOutputFilter;
|
||||||
OnApplyWindowLayout := @Self.OnApplyWindowLayout;
|
OnApplyWindowLayout := @Self.OnApplyWindowLayout;
|
||||||
Application.ShowButtonGlyphs := ShowButtonGlyphs;
|
Application.ShowButtonGlyphs := ShowButtonGlyphs;
|
||||||
|
Application.ShowMenuGlyphs := ShowMenuGlyphs;
|
||||||
end;
|
end;
|
||||||
UpdateDefaultPascalFileExtensions;
|
UpdateDefaultPascalFileExtensions;
|
||||||
|
|
||||||
@ -4181,6 +4182,7 @@ begin
|
|||||||
UpdateObjectInspector;
|
UpdateObjectInspector;
|
||||||
SetupHints;
|
SetupHints;
|
||||||
Application.ShowButtonGlyphs := EnvironmentOptions.ShowButtonGlyphs;
|
Application.ShowButtonGlyphs := EnvironmentOptions.ShowButtonGlyphs;
|
||||||
|
Application.ShowMenuGlyphs := EnvironmentOptions.ShowMenuGlyphs;
|
||||||
|
|
||||||
// reload lazarus packages
|
// reload lazarus packages
|
||||||
if LazarusSrcDirChanged then
|
if LazarusSrcDirChanged then
|
||||||
|
Loading…
Reference in New Issue
Block a user