File: fraconfigfilebrowser.lfm

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (195 lines) | stat: -rw-r--r-- 4,312 bytes parent folder | download
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
object FileBrowserOptionsFrame: TFileBrowserOptionsFrame
  Left = 0
  Height = 618
  Top = 0
  Width = 803
  ClientHeight = 618
  ClientWidth = 803
  TabOrder = 0
  DesignLeft = 616
  DesignTop = 247
  object GBStartDir1: TGroupBox
    Left = 0
    Height = 191
    Top = 0
    Width = 803
    Align = alTop
    Caption = 'Root directory'
    ClientHeight = 173
    ClientWidth = 801
    TabOrder = 0
    object DERootDir: TDirectoryEdit
      Left = 38
      Height = 34
      Top = 128
      Width = 754
      ShowHidden = False
      ButtonWidth = 23
      NumGlyphs = 1
      Anchors = [akTop, akLeft, akRight]
      MaxLength = 0
      TabOrder = 0
    end
    object RBRootThisDir: TRadioButton
      Left = 16
      Height = 23
      Top = 96
      Width = 191
      Caption = 'Always use this directory'
      TabOrder = 1
    end
    object RBRootFileSystemRoot: TRadioButton
      Left = 14
      Height = 23
      Top = 36
      Width = 131
      Caption = 'Filesystem root'
      TabOrder = 2
    end
    object RBRootUseProjectDir: TRadioButton
      Left = 14
      Height = 23
      Top = 9
      Width = 220
      Caption = 'Use current project directory'
      Checked = True
      TabOrder = 3
      TabStop = True
    end
    object RBRootUserDir: TRadioButton
      Left = 14
      Height = 23
      Top = 64
      Width = 122
      Caption = 'User directory'
      TabOrder = 4
    end
  end
  object GBStartDir: TGroupBox
    Left = 0
    Height = 152
    Top = 191
    Width = 803
    Align = alTop
    Caption = 'Initial directory'
    ClientHeight = 134
    ClientWidth = 801
    TabOrder = 1
    object DEStartDir: TDirectoryEdit
      Left = 38
      Height = 34
      Top = 89
      Width = 752
      ShowHidden = False
      ButtonWidth = 23
      NumGlyphs = 1
      Anchors = [akTop, akLeft, akRight]
      MaxLength = 0
      TabOrder = 0
    end
    object RBThisDir: TRadioButton
      Left = 14
      Height = 23
      Top = 65
      Width = 191
      Caption = 'Always use this directory'
      TabOrder = 1
    end
    object RBLastDir: TRadioButton
      Left = 14
      Height = 23
      Top = 36
      Width = 198
      Caption = 'Use last opened directory'
      TabOrder = 2
    end
    object RBUseProjectDir: TRadioButton
      Left = 14
      Height = 23
      Top = 8
      Width = 220
      Caption = 'Use current project directory'
      Checked = True
      TabOrder = 3
      TabStop = True
    end
  end
  object GBSearch: TGroupBox
    Left = 0
    Height = 129
    Top = 456
    Width = 803
    Align = alTop
    Caption = 'Search'
    ClientHeight = 111
    ClientWidth = 801
    TabOrder = 2
    object CBMatchOnlyFilename: TCheckBox
      Left = 8
      Height = 23
      Top = 16
      Width = 223
      Caption = 'Search matches only filename'
      TabOrder = 0
    end
    object CBUseAbsoluteFilenames: TCheckBox
      Left = 8
      Height = 23
      Top = 48
      Width = 191
      Caption = 'Show absolute filenames'
      TabOrder = 1
    end
    object CBUseLetters: TCheckBox
      Left = 8
      Height = 23
      Top = 81
      Width = 285
      Caption = 'Match individual letters of search term'
      TabOrder = 2
    end
  end
  object GBFileTree: TGroupBox
    Left = 0
    Height = 113
    Top = 343
    Width = 803
    Align = alTop
    Caption = 'File browser tree'
    ClientHeight = 95
    ClientWidth = 801
    TabOrder = 3
    object CBShowFilesInline: TCheckBox
      Left = 24
      Height = 23
      Top = 8
      Width = 207
      Caption = 'Show files in main tree view'
      TabOrder = 0
      OnChange = CBShowFilesInlineChange
    end
    object CBShowDirectoriesBeforeFiles: TCheckBox
      AnchorSideTop.Control = CBShowFilesInline
      AnchorSideTop.Side = asrBottom
      Left = 52
      Height = 23
      Top = 39
      Width = 218
      BorderSpacing.Top = 8
      Caption = 'Show directories before files'
      TabOrder = 1
    end
    object CBSyncCurrentEditor: TCheckBox
      AnchorSideLeft.Control = CBShowFilesInline
      AnchorSideTop.Control = CBShowDirectoriesBeforeFiles
      AnchorSideTop.Side = asrBottom
      Left = 24
      Height = 23
      Top = 70
      Width = 304
      BorderSpacing.Top = 8
      Caption = 'Keep synchronized with current editor file'
      TabOrder = 2
    end
  end
end