-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 51 | ||||
-rw-r--r-- | noncore/settings/sound/soundsettingsbase.ui | 566 |
2 files changed, 348 insertions, 269 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 17dbdc0..c2bf405 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp | |||
@@ -26,4 +26,6 @@ | |||
26 | #include <qcheckbox.h> | 26 | #include <qcheckbox.h> |
27 | #include <qlineedit.h> | 27 | #include <qlineedit.h> |
28 | #include <qcombobox.h> | ||
29 | |||
28 | 30 | ||
29 | SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) | 31 | SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) |
@@ -33,17 +35,24 @@ SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) | |||
33 | config.setGroup( "System" ); | 35 | config.setGroup( "System" ); |
34 | volume->setValue(100-config.readNumEntry("Volume")); | 36 | volume->setValue(100-config.readNumEntry("Volume")); |
35 | mic->setValue(100-config.readNumEntry("Mic")); | 37 | mic->setValue(100-config.readNumEntry("Mic")); |
36 | touchsound->setChecked(config.readBoolEntry("Touch")); | 38 | touchsound->setChecked(config.readBoolEntry("Touch")); |
37 | keysound->setChecked(config.readBoolEntry("Key")); | 39 | keysound->setChecked(config.readBoolEntry("Key")); |
38 | 40 | ||
39 | config.setGroup("Record"); | 41 | config.setGroup("Record"); |
40 | sampleRate->setText(config.readEntry("SampleRate", "11025")); | 42 | int rate=config.readNumEntry("SampleRate", 11025); |
41 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | 43 | if(rate == 11025) |
42 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); | 44 | sampleRate->setCurrentItem(0); |
45 | else if(rate == 22050) | ||
46 | sampleRate->setCurrentItem(1); | ||
47 | else if(rate==44100) | ||
48 | sampleRate->setCurrentItem(2); | ||
49 | |||
50 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | ||
51 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); | ||
43 | 52 | ||
44 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); | 53 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); |
45 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); | 54 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); |
46 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); | 55 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); |
47 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); | 56 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); |
48 | } | 57 | } |
49 | 58 | ||
@@ -53,10 +62,16 @@ void SoundSettings::reject() | |||
53 | config.setGroup( "System" ); | 62 | config.setGroup( "System" ); |
54 | setVolume(100-config.readNumEntry("Volume")); | 63 | setVolume(100-config.readNumEntry("Volume")); |
55 | setMic(100-config.readNumEntry("Mic")); | 64 | setMic(100-config.readNumEntry("Mic")); |
56 | 65 | ||
57 | config.setGroup("Record"); | 66 | config.setGroup("Record"); |
58 | sampleRate->setText(config.readEntry("SampleRate", "11025")); | 67 | int rate=config.readNumEntry("SampleRate", 11025); |
59 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | 68 | if(rate == 11025) |
60 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); | 69 | sampleRate->setCurrentItem(0); |
70 | else if(rate == 22050) | ||
71 | sampleRate->setCurrentItem(1); | ||
72 | else if(rate==44100) | ||
73 | sampleRate->setCurrentItem(2); | ||
74 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | ||
75 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); | ||
61 | 76 | ||
62 | QDialog::reject(); | 77 | QDialog::reject(); |
@@ -73,11 +88,11 @@ void SoundSettings::accept() | |||
73 | 88 | ||
74 | setVolume(volume->value()); | 89 | setVolume(volume->value()); |
75 | setMic(mic->value()); | 90 | setMic(mic->value()); |
76 | 91 | ||
77 | config.setGroup("Record"); | 92 | config.setGroup("Record"); |
78 | config.writeEntry("SampleRate",sampleRate->text()); | 93 | config.writeEntry("SampleRate",sampleRate->currentText()); |
79 | config.writeEntry("Stereo",stereoCheckBox->isChecked()); | 94 | config.writeEntry("Stereo",stereoCheckBox->isChecked()); |
80 | config.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked()); | 95 | config.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked()); |
81 | 96 | ||
82 | QDialog::accept(); | 97 | QDialog::accept(); |
83 | } | 98 | } |
@@ -89,5 +104,5 @@ void SoundSettings::setVolume(int v) | |||
89 | config.writeEntry("Volume",100-v); | 104 | config.writeEntry("Volume",100-v); |
90 | #if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) | 105 | #if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) |
91 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; | 106 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; |
92 | #endif | 107 | #endif |
93 | } | 108 | } |
diff --git a/noncore/settings/sound/soundsettingsbase.ui b/noncore/settings/sound/soundsettingsbase.ui index f47f77e..0351fd8 100644 --- a/noncore/settings/sound/soundsettingsbase.ui +++ b/noncore/settings/sound/soundsettingsbase.ui | |||
@@ -12,6 +12,6 @@ | |||
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>372</width> | 14 | <width>286</width> |
15 | <height>441</height> | 15 | <height>338</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
@@ -35,11 +35,11 @@ | |||
35 | <number>6</number> | 35 | <number>6</number> |
36 | </property> | 36 | </property> |
37 | <widget row="0" column="0" > | 37 | <widget row="0" column="1" > |
38 | <class>QLayoutWidget</class> | 38 | <class>QLayoutWidget</class> |
39 | <property stdset="1"> | 39 | <property stdset="1"> |
40 | <name>name</name> | 40 | <name>name</name> |
41 | <cstring>Layout30</cstring> | 41 | <cstring>Layout9</cstring> |
42 | </property> | 42 | </property> |
43 | <hbox> | 43 | <vbox> |
44 | <property stdset="1"> | 44 | <property stdset="1"> |
45 | <name>margin</name> | 45 | <name>margin</name> |
@@ -54,5 +54,5 @@ | |||
54 | <property stdset="1"> | 54 | <property stdset="1"> |
55 | <name>name</name> | 55 | <name>name</name> |
56 | <cstring>Layout24</cstring> | 56 | <cstring>Layout8</cstring> |
57 | </property> | 57 | </property> |
58 | <vbox> | 58 | <vbox> |
@@ -66,4 +66,100 @@ | |||
66 | </property> | 66 | </property> |
67 | <widget> | 67 | <widget> |
68 | <class>QGroupBox</class> | ||
69 | <property stdset="1"> | ||
70 | <name>name</name> | ||
71 | <cstring>GroupBox1</cstring> | ||
72 | </property> | ||
73 | <property stdset="1"> | ||
74 | <name>title</name> | ||
75 | <string>Vmemo</string> | ||
76 | </property> | ||
77 | <grid> | ||
78 | <property stdset="1"> | ||
79 | <name>margin</name> | ||
80 | <number>11</number> | ||
81 | </property> | ||
82 | <property stdset="1"> | ||
83 | <name>spacing</name> | ||
84 | <number>6</number> | ||
85 | </property> | ||
86 | <widget row="0" column="0" > | ||
87 | <class>QLayoutWidget</class> | ||
88 | <property stdset="1"> | ||
89 | <name>name</name> | ||
90 | <cstring>Layout15</cstring> | ||
91 | </property> | ||
92 | <vbox> | ||
93 | <property stdset="1"> | ||
94 | <name>margin</name> | ||
95 | <number>0</number> | ||
96 | </property> | ||
97 | <property stdset="1"> | ||
98 | <name>spacing</name> | ||
99 | <number>6</number> | ||
100 | </property> | ||
101 | <widget> | ||
102 | <class>QLabel</class> | ||
103 | <property stdset="1"> | ||
104 | <name>name</name> | ||
105 | <cstring>sampleRateLabel</cstring> | ||
106 | </property> | ||
107 | <property stdset="1"> | ||
108 | <name>text</name> | ||
109 | <string>Sample Rate</string> | ||
110 | </property> | ||
111 | </widget> | ||
112 | <widget> | ||
113 | <class>QComboBox</class> | ||
114 | <item> | ||
115 | <property> | ||
116 | <name>text</name> | ||
117 | <string>11025</string> | ||
118 | </property> | ||
119 | </item> | ||
120 | <item> | ||
121 | <property> | ||
122 | <name>text</name> | ||
123 | <string>22050</string> | ||
124 | </property> | ||
125 | </item> | ||
126 | <item> | ||
127 | <property> | ||
128 | <name>text</name> | ||
129 | <string>44100</string> | ||
130 | </property> | ||
131 | </item> | ||
132 | <property stdset="1"> | ||
133 | <name>name</name> | ||
134 | <cstring>sampleRate</cstring> | ||
135 | </property> | ||
136 | </widget> | ||
137 | <widget> | ||
138 | <class>QCheckBox</class> | ||
139 | <property stdset="1"> | ||
140 | <name>name</name> | ||
141 | <cstring>stereoCheckBox</cstring> | ||
142 | </property> | ||
143 | <property stdset="1"> | ||
144 | <name>text</name> | ||
145 | <string>Stereo</string> | ||
146 | </property> | ||
147 | </widget> | ||
148 | <widget> | ||
149 | <class>QCheckBox</class> | ||
150 | <property stdset="1"> | ||
151 | <name>name</name> | ||
152 | <cstring>sixteenBitCheckBox</cstring> | ||
153 | </property> | ||
154 | <property stdset="1"> | ||
155 | <name>text</name> | ||
156 | <string>16 bit</string> | ||
157 | </property> | ||
158 | </widget> | ||
159 | </vbox> | ||
160 | </widget> | ||
161 | </grid> | ||
162 | </widget> | ||
163 | <widget> | ||
68 | <class>QCheckBox</class> | 164 | <class>QCheckBox</class> |
69 | <property stdset="1"> | 165 | <property stdset="1"> |
@@ -73,5 +169,5 @@ | |||
73 | <property stdset="1"> | 169 | <property stdset="1"> |
74 | <name>text</name> | 170 | <name>text</name> |
75 | <string>Screen sound</string> | 171 | <string>Screen sounds</string> |
76 | </property> | 172 | </property> |
77 | </widget> | 173 | </widget> |
@@ -84,12 +180,71 @@ | |||
84 | <property stdset="1"> | 180 | <property stdset="1"> |
85 | <name>text</name> | 181 | <name>text</name> |
86 | <string>Keyboard sound</string> | 182 | <string>Keyboard sounds</string> |
87 | </property> | 183 | </property> |
88 | </widget> | 184 | </widget> |
185 | </vbox> | ||
186 | </widget> | ||
187 | <spacer> | ||
188 | <property> | ||
189 | <name>name</name> | ||
190 | <cstring>Spacer10</cstring> | ||
191 | </property> | ||
192 | <property stdset="1"> | ||
193 | <name>orientation</name> | ||
194 | <enum>Vertical</enum> | ||
195 | </property> | ||
196 | <property stdset="1"> | ||
197 | <name>sizeType</name> | ||
198 | <enum>Expanding</enum> | ||
199 | </property> | ||
200 | <property> | ||
201 | <name>sizeHint</name> | ||
202 | <size> | ||
203 | <width>20</width> | ||
204 | <height>20</height> | ||
205 | </size> | ||
206 | </property> | ||
207 | </spacer> | ||
208 | </vbox> | ||
209 | </widget> | ||
210 | <widget row="0" column="0" > | ||
211 | <class>QGroupBox</class> | ||
212 | <property stdset="1"> | ||
213 | <name>name</name> | ||
214 | <cstring>GroupBox3</cstring> | ||
215 | </property> | ||
216 | <property stdset="1"> | ||
217 | <name>title</name> | ||
218 | <string>Levels</string> | ||
219 | </property> | ||
220 | <vbox> | ||
221 | <property stdset="1"> | ||
222 | <name>margin</name> | ||
223 | <number>11</number> | ||
224 | </property> | ||
225 | <property stdset="1"> | ||
226 | <name>spacing</name> | ||
227 | <number>6</number> | ||
228 | </property> | ||
229 | <widget> | ||
230 | <class>QLayoutWidget</class> | ||
231 | <property stdset="1"> | ||
232 | <name>name</name> | ||
233 | <cstring>Layout10</cstring> | ||
234 | </property> | ||
235 | <vbox> | ||
236 | <property stdset="1"> | ||
237 | <name>margin</name> | ||
238 | <number>0</number> | ||
239 | </property> | ||
240 | <property stdset="1"> | ||
241 | <name>spacing</name> | ||
242 | <number>6</number> | ||
243 | </property> | ||
89 | <widget> | 244 | <widget> |
90 | <class>QLayoutWidget</class> | 245 | <class>QLayoutWidget</class> |
91 | <property stdset="1"> | 246 | <property stdset="1"> |
92 | <name>name</name> | 247 | <name>name</name> |
93 | <cstring>Layout11</cstring> | 248 | <cstring>Layout16</cstring> |
94 | </property> | 249 | </property> |
95 | <hbox> | 250 | <hbox> |
@@ -105,5 +260,5 @@ | |||
105 | <property> | 260 | <property> |
106 | <name>name</name> | 261 | <name>name</name> |
107 | <cstring>Spacer3_2_2</cstring> | 262 | <cstring>Spacer37</cstring> |
108 | </property> | 263 | </property> |
109 | <property stdset="1"> | 264 | <property stdset="1"> |
@@ -152,5 +307,5 @@ | |||
152 | <property> | 307 | <property> |
153 | <name>name</name> | 308 | <name>name</name> |
154 | <cstring>Spacer3_2</cstring> | 309 | <cstring>Spacer7</cstring> |
155 | </property> | 310 | </property> |
156 | <property stdset="1"> | 311 | <property stdset="1"> |
@@ -176,5 +331,5 @@ | |||
176 | <property stdset="1"> | 331 | <property stdset="1"> |
177 | <name>name</name> | 332 | <name>name</name> |
178 | <cstring>Layout11</cstring> | 333 | <cstring>Layout13</cstring> |
179 | </property> | 334 | </property> |
180 | <hbox> | 335 | <hbox> |
@@ -188,66 +343,22 @@ | |||
188 | </property> | 343 | </property> |
189 | <widget> | 344 | <widget> |
190 | <class>QLayoutWidget</class> | 345 | <class>QLabel</class> |
191 | <property stdset="1"> | 346 | <property stdset="1"> |
192 | <name>name</name> | 347 | <name>name</name> |
193 | <cstring>Layout7</cstring> | 348 | <cstring>volLabel</cstring> |
349 | </property> | ||
350 | <property stdset="1"> | ||
351 | <name>text</name> | ||
352 | <string>Output</string> | ||
194 | </property> | 353 | </property> |
195 | <vbox> | ||
196 | <property stdset="1"> | ||
197 | <name>margin</name> | ||
198 | <number>0</number> | ||
199 | </property> | ||
200 | <property stdset="1"> | ||
201 | <name>spacing</name> | ||
202 | <number>6</number> | ||
203 | </property> | ||
204 | <widget> | ||
205 | <class>QLabel</class> | ||
206 | <property stdset="1"> | ||
207 | <name>name</name> | ||
208 | <cstring>volLabel</cstring> | ||
209 | </property> | ||
210 | <property stdset="1"> | ||
211 | <name>text</name> | ||
212 | <string>Volume</string> | ||
213 | </property> | ||
214 | </widget> | ||
215 | <widget> | ||
216 | <class>QSlider</class> | ||
217 | <property stdset="1"> | ||
218 | <name>name</name> | ||
219 | <cstring>volume</cstring> | ||
220 | </property> | ||
221 | <property stdset="1"> | ||
222 | <name>maxValue</name> | ||
223 | <number>100</number> | ||
224 | </property> | ||
225 | <property stdset="1"> | ||
226 | <name>value</name> | ||
227 | <number>50</number> | ||
228 | </property> | ||
229 | <property stdset="1"> | ||
230 | <name>orientation</name> | ||
231 | <enum>Vertical</enum> | ||
232 | </property> | ||
233 | <property stdset="1"> | ||
234 | <name>tickmarks</name> | ||
235 | <enum>Right</enum> | ||
236 | </property> | ||
237 | <property stdset="1"> | ||
238 | <name>tickInterval</name> | ||
239 | <number>5</number> | ||
240 | </property> | ||
241 | </widget> | ||
242 | </vbox> | ||
243 | </widget> | 354 | </widget> |
244 | <spacer> | 355 | <spacer> |
245 | <property> | 356 | <property> |
246 | <name>name</name> | 357 | <name>name</name> |
247 | <cstring>Spacer5_2</cstring> | 358 | <cstring>Spacer20</cstring> |
248 | </property> | 359 | </property> |
249 | <property stdset="1"> | 360 | <property stdset="1"> |
250 | <name>orientation</name> | 361 | <name>orientation</name> |
251 | <enum>Vertical</enum> | 362 | <enum>Horizontal</enum> |
252 | </property> | 363 | </property> |
253 | <property stdset="1"> | 364 | <property stdset="1"> |
@@ -264,58 +375,35 @@ | |||
264 | </spacer> | 375 | </spacer> |
265 | <widget> | 376 | <widget> |
266 | <class>QLayoutWidget</class> | 377 | <class>QLabel</class> |
267 | <property stdset="1"> | 378 | <property stdset="1"> |
268 | <name>name</name> | 379 | <name>name</name> |
269 | <cstring>Layout8</cstring> | 380 | <cstring>micLabel</cstring> |
381 | </property> | ||
382 | <property stdset="1"> | ||
383 | <name>text</name> | ||
384 | <string>Mic</string> | ||
270 | </property> | 385 | </property> |
271 | <vbox> | ||
272 | <property stdset="1"> | ||
273 | <name>margin</name> | ||
274 | <number>0</number> | ||
275 | </property> | ||
276 | <property stdset="1"> | ||
277 | <name>spacing</name> | ||
278 | <number>6</number> | ||
279 | </property> | ||
280 | <widget> | ||
281 | <class>QLabel</class> | ||
282 | <property stdset="1"> | ||
283 | <name>name</name> | ||
284 | <cstring>micLabel</cstring> | ||
285 | </property> | ||
286 | <property stdset="1"> | ||
287 | <name>text</name> | ||
288 | <string>Microphone</string> | ||
289 | </property> | ||
290 | </widget> | ||
291 | <widget> | ||
292 | <class>QSlider</class> | ||
293 | <property stdset="1"> | ||
294 | <name>name</name> | ||
295 | <cstring>mic</cstring> | ||
296 | </property> | ||
297 | <property stdset="1"> | ||
298 | <name>maxValue</name> | ||
299 | <number>100</number> | ||
300 | </property> | ||
301 | <property stdset="1"> | ||
302 | <name>value</name> | ||
303 | <number>50</number> | ||
304 | </property> | ||
305 | <property stdset="1"> | ||
306 | <name>orientation</name> | ||
307 | <enum>Vertical</enum> | ||
308 | </property> | ||
309 | <property stdset="1"> | ||
310 | <name>tickmarks</name> | ||
311 | <enum>Right</enum> | ||
312 | </property> | ||
313 | <property stdset="1"> | ||
314 | <name>tickInterval</name> | ||
315 | <number>5</number> | ||
316 | </property> | ||
317 | </widget> | ||
318 | </vbox> | ||
319 | </widget> | 386 | </widget> |
387 | <spacer> | ||
388 | <property> | ||
389 | <name>name</name> | ||
390 | <cstring>Spacer17</cstring> | ||
391 | </property> | ||
392 | <property stdset="1"> | ||
393 | <name>orientation</name> | ||
394 | <enum>Horizontal</enum> | ||
395 | </property> | ||
396 | <property stdset="1"> | ||
397 | <name>sizeType</name> | ||
398 | <enum>Expanding</enum> | ||
399 | </property> | ||
400 | <property> | ||
401 | <name>sizeHint</name> | ||
402 | <size> | ||
403 | <width>20</width> | ||
404 | <height>20</height> | ||
405 | </size> | ||
406 | </property> | ||
407 | </spacer> | ||
320 | </hbox> | 408 | </hbox> |
321 | </widget> | 409 | </widget> |
@@ -335,8 +423,35 @@ | |||
335 | <number>6</number> | 423 | <number>6</number> |
336 | </property> | 424 | </property> |
425 | <widget> | ||
426 | <class>QSlider</class> | ||
427 | <property stdset="1"> | ||
428 | <name>name</name> | ||
429 | <cstring>volume</cstring> | ||
430 | </property> | ||
431 | <property stdset="1"> | ||
432 | <name>maxValue</name> | ||
433 | <number>100</number> | ||
434 | </property> | ||
435 | <property stdset="1"> | ||
436 | <name>value</name> | ||
437 | <number>50</number> | ||
438 | </property> | ||
439 | <property stdset="1"> | ||
440 | <name>orientation</name> | ||
441 | <enum>Vertical</enum> | ||
442 | </property> | ||
443 | <property stdset="1"> | ||
444 | <name>tickmarks</name> | ||
445 | <enum>Right</enum> | ||
446 | </property> | ||
447 | <property stdset="1"> | ||
448 | <name>tickInterval</name> | ||
449 | <number>5</number> | ||
450 | </property> | ||
451 | </widget> | ||
337 | <spacer> | 452 | <spacer> |
338 | <property> | 453 | <property> |
339 | <name>name</name> | 454 | <name>name</name> |
340 | <cstring>Spacer3_2_3</cstring> | 455 | <cstring>Spacer19</cstring> |
341 | </property> | 456 | </property> |
342 | <property stdset="1"> | 457 | <property stdset="1"> |
@@ -357,27 +472,28 @@ | |||
357 | </spacer> | 472 | </spacer> |
358 | <widget> | 473 | <widget> |
359 | <class>QLabel</class> | 474 | <class>QSlider</class> |
360 | <property stdset="1"> | 475 | <property stdset="1"> |
361 | <name>name</name> | 476 | <name>name</name> |
362 | <cstring>PixmapLabel2_2</cstring> | 477 | <cstring>mic</cstring> |
363 | </property> | 478 | </property> |
364 | <property stdset="1"> | 479 | <property stdset="1"> |
365 | <name>pixmap</name> | 480 | <name>maxValue</name> |
366 | <pixmap>image1</pixmap> | 481 | <number>100</number> |
367 | </property> | 482 | </property> |
368 | <property stdset="1"> | 483 | <property stdset="1"> |
369 | <name>scaledContents</name> | 484 | <name>value</name> |
370 | <bool>false</bool> | 485 | <number>50</number> |
371 | </property> | 486 | </property> |
372 | </widget> | ||
373 | <widget> | ||
374 | <class>QLabel</class> | ||
375 | <property stdset="1"> | 487 | <property stdset="1"> |
376 | <name>name</name> | 488 | <name>orientation</name> |
377 | <cstring>TextLabel2_2</cstring> | 489 | <enum>Vertical</enum> |
378 | </property> | 490 | </property> |
379 | <property stdset="1"> | 491 | <property stdset="1"> |
380 | <name>text</name> | 492 | <name>tickmarks</name> |
381 | <string>Silent</string> | 493 | <enum>Right</enum> |
494 | </property> | ||
495 | <property stdset="1"> | ||
496 | <name>tickInterval</name> | ||
497 | <number>5</number> | ||
382 | </property> | 498 | </property> |
383 | </widget> | 499 | </widget> |
@@ -385,5 +501,5 @@ | |||
385 | <property> | 501 | <property> |
386 | <name>name</name> | 502 | <name>name</name> |
387 | <cstring>Spacer2_2</cstring> | 503 | <cstring>Spacer18</cstring> |
388 | </property> | 504 | </property> |
389 | <property stdset="1"> | 505 | <property stdset="1"> |
@@ -405,35 +521,14 @@ | |||
405 | </hbox> | 521 | </hbox> |
406 | </widget> | 522 | </widget> |
407 | </vbox> | ||
408 | </widget> | ||
409 | <widget> | ||
410 | <class>QLayoutWidget</class> | ||
411 | <property stdset="1"> | ||
412 | <name>name</name> | ||
413 | <cstring>Layout29</cstring> | ||
414 | </property> | ||
415 | <vbox> | ||
416 | <property stdset="1"> | ||
417 | <name>margin</name> | ||
418 | <number>0</number> | ||
419 | </property> | ||
420 | <property stdset="1"> | ||
421 | <name>spacing</name> | ||
422 | <number>6</number> | ||
423 | </property> | ||
424 | <widget> | 523 | <widget> |
425 | <class>QGroupBox</class> | 524 | <class>QLayoutWidget</class> |
426 | <property stdset="1"> | 525 | <property stdset="1"> |
427 | <name>name</name> | 526 | <name>name</name> |
428 | <cstring>GroupBox1</cstring> | 527 | <cstring>Layout17</cstring> |
429 | </property> | ||
430 | <property stdset="1"> | ||
431 | <name>title</name> | ||
432 | <string>Record Defaults</string> | ||
433 | </property> | 528 | </property> |
434 | <grid> | 529 | <hbox> |
435 | <property stdset="1"> | 530 | <property stdset="1"> |
436 | <name>margin</name> | 531 | <name>margin</name> |
437 | <number>11</number> | 532 | <number>0</number> |
438 | </property> | 533 | </property> |
439 | <property stdset="1"> | 534 | <property stdset="1"> |
@@ -441,108 +536,77 @@ | |||
441 | <number>6</number> | 536 | <number>6</number> |
442 | </property> | 537 | </property> |
443 | <widget row="0" column="0" > | 538 | <spacer> |
444 | <class>QLayoutWidget</class> | 539 | <property> |
540 | <name>name</name> | ||
541 | <cstring>Spacer38</cstring> | ||
542 | </property> | ||
543 | <property stdset="1"> | ||
544 | <name>orientation</name> | ||
545 | <enum>Horizontal</enum> | ||
546 | </property> | ||
547 | <property stdset="1"> | ||
548 | <name>sizeType</name> | ||
549 | <enum>Expanding</enum> | ||
550 | </property> | ||
551 | <property> | ||
552 | <name>sizeHint</name> | ||
553 | <size> | ||
554 | <width>20</width> | ||
555 | <height>20</height> | ||
556 | </size> | ||
557 | </property> | ||
558 | </spacer> | ||
559 | <widget> | ||
560 | <class>QLabel</class> | ||
445 | <property stdset="1"> | 561 | <property stdset="1"> |
446 | <name>name</name> | 562 | <name>name</name> |
447 | <cstring>Layout28</cstring> | 563 | <cstring>PixmapLabel2_2</cstring> |
564 | </property> | ||
565 | <property stdset="1"> | ||
566 | <name>pixmap</name> | ||
567 | <pixmap>image1</pixmap> | ||
568 | </property> | ||
569 | <property stdset="1"> | ||
570 | <name>scaledContents</name> | ||
571 | <bool>false</bool> | ||
448 | </property> | 572 | </property> |
449 | <vbox> | ||
450 | <property stdset="1"> | ||
451 | <name>margin</name> | ||
452 | <number>0</number> | ||
453 | </property> | ||
454 | <property stdset="1"> | ||
455 | <name>spacing</name> | ||
456 | <number>6</number> | ||
457 | </property> | ||
458 | <widget> | ||
459 | <class>QLabel</class> | ||
460 | <property stdset="1"> | ||
461 | <name>name</name> | ||
462 | <cstring>sampleRateLabel</cstring> | ||
463 | </property> | ||
464 | <property stdset="1"> | ||
465 | <name>text</name> | ||
466 | <string>Rate (5k-44k)</string> | ||
467 | </property> | ||
468 | </widget> | ||
469 | <widget> | ||
470 | <class>QLineEdit</class> | ||
471 | <property stdset="1"> | ||
472 | <name>name</name> | ||
473 | <cstring>sampleRate</cstring> | ||
474 | </property> | ||
475 | </widget> | ||
476 | <widget> | ||
477 | <class>QCheckBox</class> | ||
478 | <property stdset="1"> | ||
479 | <name>name</name> | ||
480 | <cstring>stereoCheckBox</cstring> | ||
481 | </property> | ||
482 | <property stdset="1"> | ||
483 | <name>text</name> | ||
484 | <string>Stereo</string> | ||
485 | </property> | ||
486 | </widget> | ||
487 | <widget> | ||
488 | <class>QCheckBox</class> | ||
489 | <property stdset="1"> | ||
490 | <name>name</name> | ||
491 | <cstring>sixteenBitCheckBox</cstring> | ||
492 | </property> | ||
493 | <property stdset="1"> | ||
494 | <name>text</name> | ||
495 | <string>16 bit</string> | ||
496 | </property> | ||
497 | </widget> | ||
498 | </vbox> | ||
499 | </widget> | 573 | </widget> |
500 | </grid> | 574 | <widget> |
575 | <class>QLabel</class> | ||
576 | <property stdset="1"> | ||
577 | <name>name</name> | ||
578 | <cstring>TextLabel2_2</cstring> | ||
579 | </property> | ||
580 | <property stdset="1"> | ||
581 | <name>text</name> | ||
582 | <string>Silent</string> | ||
583 | </property> | ||
584 | </widget> | ||
585 | <spacer> | ||
586 | <property> | ||
587 | <name>name</name> | ||
588 | <cstring>Spacer8</cstring> | ||
589 | </property> | ||
590 | <property stdset="1"> | ||
591 | <name>orientation</name> | ||
592 | <enum>Horizontal</enum> | ||
593 | </property> | ||
594 | <property stdset="1"> | ||
595 | <name>sizeType</name> | ||
596 | <enum>Expanding</enum> | ||
597 | </property> | ||
598 | <property> | ||
599 | <name>sizeHint</name> | ||
600 | <size> | ||
601 | <width>20</width> | ||
602 | <height>20</height> | ||
603 | </size> | ||
604 | </property> | ||
605 | </spacer> | ||
606 | </hbox> | ||
501 | </widget> | 607 | </widget> |
502 | <spacer> | ||
503 | <property> | ||
504 | <name>name</name> | ||
505 | <cstring>Spacer9</cstring> | ||
506 | </property> | ||
507 | <property stdset="1"> | ||
508 | <name>orientation</name> | ||
509 | <enum>Vertical</enum> | ||
510 | </property> | ||
511 | <property stdset="1"> | ||
512 | <name>sizeType</name> | ||
513 | <enum>Expanding</enum> | ||
514 | </property> | ||
515 | <property> | ||
516 | <name>sizeHint</name> | ||
517 | <size> | ||
518 | <width>20</width> | ||
519 | <height>20</height> | ||
520 | </size> | ||
521 | </property> | ||
522 | </spacer> | ||
523 | </vbox> | 608 | </vbox> |
524 | </widget> | 609 | </widget> |
525 | <spacer> | 610 | </vbox> |
526 | <property> | ||
527 | <name>name</name> | ||
528 | <cstring>Spacer10</cstring> | ||
529 | </property> | ||
530 | <property stdset="1"> | ||
531 | <name>orientation</name> | ||
532 | <enum>Horizontal</enum> | ||
533 | </property> | ||
534 | <property stdset="1"> | ||
535 | <name>sizeType</name> | ||
536 | <enum>Expanding</enum> | ||
537 | </property> | ||
538 | <property> | ||
539 | <name>sizeHint</name> | ||
540 | <size> | ||
541 | <width>20</width> | ||
542 | <height>20</height> | ||
543 | </size> | ||
544 | </property> | ||
545 | </spacer> | ||
546 | </hbox> | ||
547 | </widget> | 611 | </widget> |
548 | </grid> | 612 | </grid> |