mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-31 07:32:41 +02:00
92 lines
1.7 KiB
Plaintext
92 lines
1.7 KiB
Plaintext
inherited frReservedCapsSettings: TfrReservedCapsSettings
|
|
Width = 325
|
|
Height = 359
|
|
Font.Charset = ANSI_CHARSET
|
|
Font.Height = -15
|
|
Font.Name = 'Segoe UI'
|
|
ParentFont = False
|
|
ExplicitWidth = 325
|
|
ExplicitHeight = 359
|
|
object cbEnable: TCheckBox
|
|
Left = 8
|
|
Top = 6
|
|
Width = 248
|
|
Height = 17
|
|
Caption = 'Enable fix capitalisation'
|
|
Checked = True
|
|
State = cbChecked
|
|
TabOrder = 0
|
|
OnClick = cbEnableClick
|
|
end
|
|
object rgReservedWords: TRadioGroup
|
|
Left = 8
|
|
Top = 26
|
|
Width = 150
|
|
Height = 106
|
|
Caption = 'Reserved words'
|
|
ItemIndex = 1
|
|
Items.Strings = (
|
|
'ALL CAPITALS'
|
|
'all lowercase'
|
|
'Mixed Case'
|
|
'Leave alone')
|
|
TabOrder = 1
|
|
end
|
|
object rgOperators: TRadioGroup
|
|
Left = 164
|
|
Top = 26
|
|
Width = 150
|
|
Height = 106
|
|
Caption = 'Operators'
|
|
ItemIndex = 1
|
|
Items.Strings = (
|
|
'ALL CAPITALS'
|
|
'all lowercase'
|
|
'Mixed Case'
|
|
'Leave alone')
|
|
TabOrder = 2
|
|
end
|
|
object rgTypes: TRadioGroup
|
|
Left = 8
|
|
Top = 248
|
|
Width = 150
|
|
Height = 106
|
|
Caption = 'Types'
|
|
ItemIndex = 1
|
|
Items.Strings = (
|
|
'ALL CAPITALS'
|
|
'all lowercase'
|
|
'Mixed Case'
|
|
'Leave alone')
|
|
TabOrder = 5
|
|
end
|
|
object rgConstants: TRadioGroup
|
|
Left = 164
|
|
Top = 138
|
|
Width = 150
|
|
Height = 106
|
|
Caption = 'Constants'
|
|
ItemIndex = 1
|
|
Items.Strings = (
|
|
'ALL CAPITALS'
|
|
'all lowercase'
|
|
'Mixed Case'
|
|
'Leave alone')
|
|
TabOrder = 4
|
|
end
|
|
object rgDirectives: TRadioGroup
|
|
Left = 8
|
|
Top = 138
|
|
Width = 150
|
|
Height = 106
|
|
Caption = 'Directives'
|
|
ItemIndex = 1
|
|
Items.Strings = (
|
|
'ALL CAPITALS'
|
|
'all lowercase'
|
|
'Mixed Case'
|
|
'Leave alone')
|
|
TabOrder = 3
|
|
end
|
|
end
|