File: unitoptions.lfm

package info (click to toggle)
easymp3gain 0.5.0-4
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,192 kB
  • ctags: 344
  • sloc: pascal: 2,456; sh: 91; makefile: 20
file content (188 lines) | stat: -rw-r--r-- 3,982 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
object frmMp3GainOptions: TfrmMp3GainOptions
  Left = 312
  Height = 502
  Top = 171
  Width = 411
  ActiveControl = chkIgnoreTags
  BorderIcons = [biSystemMenu, biMinimize]
  Caption = 'Options'
  ClientHeight = 502
  ClientWidth = 411
  Color = clForm
  OnShow = FormShow
  Position = poScreenCenter
  LCLVersion = '0.9.28.2'
  object btnOK: TButton
    Left = 248
    Height = 25
    Top = 464
    Width = 100
    Caption = '&OK'
    OnClick = btnOKClick
    TabOrder = 0
  end
  object btnCancel: TButton
    Left = 56
    Height = 25
    Top = 464
    Width = 100
    Caption = '&Cancel'
    OnClick = btnCancelClick
    TabOrder = 1
  end
  object grbBackends: TGroupBox
    Left = 8
    Height = 136
    Top = 168
    Width = 400
    Caption = 'Backends'
    ClientHeight = 119
    ClientWidth = 396
    TabOrder = 2
    object lblAACGainBackend: TLabel
      Left = 188
      Height = 16
      Top = 18
      Width = 115
      Caption = 'AACGain backend:'
      ParentColor = False
    end
    object lblMP3GainBackend: TLabel
      Left = 11
      Height = 16
      Top = 14
      Width = 117
      Caption = 'MP3Gain backend:'
      ParentColor = False
    end
    object lblVorbisGainBackend: TLabel
      Left = 11
      Height = 16
      Top = 70
      Width = 129
      Caption = 'VorbisGain backend:'
      ParentColor = False
    end
    object edtVorbisGainBackend: TEdit
      Left = 11
      Height = 25
      Top = 88
      Width = 152
      TabOrder = 0
      Text = 'vorbisgain'
    end
    object edtMP3GainBackend: TEdit
      Left = 11
      Height = 25
      Top = 35
      Width = 152
      TabOrder = 1
      Text = 'mp3gain'
    end
    object edtAACGainBackend: TEdit
      Left = 187
      Height = 25
      Top = 35
      Width = 152
      TabOrder = 2
      Text = 'aacgain'
    end
  end
  object grbMP3Gain: TGroupBox
    Left = 8
    Height = 156
    Top = 8
    Width = 400
    Caption = 'MP3Gain'
    ClientHeight = 139
    ClientWidth = 396
    TabOrder = 3
    object chkPreserveOriginalTimestamp: TCheckBox
      Left = 16
      Height = 22
      Top = 104
      Width = 221
      Caption = 'Preserve original file timestamp'
      TabOrder = 0
    end
    object chkUseTempFiles: TCheckBox
      Left = 16
      Height = 22
      Top = 75
      Width = 145
      Caption = 'Use temporary files'
      TabOrder = 1
    end
    object chkAutoReadAtFileAdd: TCheckBox
      Left = 16
      Height = 22
      Top = 46
      Width = 319
      Caption = 'Auto-read tags when adding files or directories'
      OnChange = chkAutoReadAtFileAddChange
      TabOrder = 2
    end
    object chkIgnoreTags: TCheckBox
      Left = 16
      Height = 22
      Top = 16
      Width = 272
      Caption = 'Ignore Tags (Do not read or write them)'
      OnChange = chkIgnoreTagsChange
      TabOrder = 3
    end
  end
  object grbMiscellaneous: TGroupBox
    Left = 8
    Height = 144
    Top = 312
    Width = 400
    Caption = 'Miscellaneous'
    ClientHeight = 127
    ClientWidth = 396
    TabOrder = 4
    object lblSublevels: TLabel
      Left = 16
      Height = 16
      Top = 14
      Width = 245
      Caption = 'Number of sublevels when adding files:'
      ParentColor = False
    end
    object lblFilenameDisplay: TLabel
      Left = 16
      Height = 16
      Top = 65
      Width = 106
      Caption = 'Filename display:'
      ParentColor = False
    end
    object edtSublevelCount: TEdit
      Left = 16
      Height = 25
      Top = 33
      Width = 40
      TabOrder = 0
      Text = '6'
    end
    object rbFileAndPath: TRadioButton
      Left = 22
      Height = 22
      Top = 81
      Width = 280
      Caption = 'Show path and file in speparate columns'
      Checked = True
      State = cbChecked
      TabOrder = 1
    end
    object rbFileWithPath: TRadioButton
      Left = 22
      Height = 22
      Top = 101
      Width = 141
      Caption = 'Show path with file'
      TabOrder = 2
      TabStop = False
    end
  end
end