1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
object FileBrowserConfigForm: TFileBrowserConfigForm
Left = 302
Height = 200
Top = 184
Width = 400
Caption = 'Configure file browser'
ClientHeight = 200
ClientWidth = 400
OnShow = FormShow
LCLVersion = '0.9.25'
object ButtonPanel1: TButtonPanel
Left = 6
Height = 46
Top = 154
Width = 388
Align = alBottom
AutoSize = True
TabOrder = 0
ShowButtons = [pbOK, pbCancel]
end
object GBStartDir: TGroupBox
Left = 6
Height = 136
Top = 8
Width = 386
Caption = 'Initial directory'
ClientHeight = 115
ClientWidth = 382
TabOrder = 1
object DEInitial: TDirectoryEdit
Left = 38
Height = 23
Top = 89
Width = 312
ButtonWidth = 23
ParentColor = False
TabOrder = 0
end
object RBThisDir: TRadioButton
Left = 14
Height = 24
Top = 65
Width = 205
Caption = 'Always use this directory'
OnClick = SelectInitialDir
TabOrder = 1
end
object RBLastDir: TRadioButton
Left = 14
Height = 24
Top = 36
Width = 211
Caption = 'Use last opened directory'
OnClick = SelectInitialDir
TabOrder = 2
end
object RBUseProjectDir: TRadioButton
Left = 14
Height = 24
Top = 9
Width = 231
Caption = 'Use current project directory'
Checked = True
OnClick = SelectInitialDir
State = cbChecked
TabOrder = 3
end
end
end
|