-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 21 | ||||
-rw-r--r-- | noncore/settings/sound/soundsettingsbase.ui | 499 |
2 files changed, 325 insertions, 195 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 1143e82..17dbdc0 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp | |||
@@ -1,102 +1,117 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include "soundsettings.h" | 20 | #include "soundsettings.h" |
21 | 21 | ||
22 | #include <qpe/config.h> | 22 | #include <qpe/config.h> |
23 | #include <qpe/qcopenvelope_qws.h> | 23 | #include <qpe/qcopenvelope_qws.h> |
24 | #include <qapplication.h> | 24 | #include <qapplication.h> |
25 | #include <qslider.h> | 25 | #include <qslider.h> |
26 | #include <qcheckbox.h> | 26 | #include <qcheckbox.h> |
27 | #include <qlineedit.h> | 27 | #include <qlineedit.h> |
28 | 28 | ||
29 | SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) | 29 | SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) |
30 | : SoundSettingsBase( parent, name, TRUE, fl ) | 30 | : SoundSettingsBase( parent, name, TRUE, fl ) |
31 | { | 31 | { |
32 | Config config( "Sound" ); | 32 | Config config( "Sound" ); |
33 | config.setGroup( "System" ); | 33 | config.setGroup( "System" ); |
34 | volume->setValue(100-config.readNumEntry("Volume")); | 34 | volume->setValue(100-config.readNumEntry("Volume")); |
35 | mic->setValue(100-config.readNumEntry("Mic")); | 35 | mic->setValue(100-config.readNumEntry("Mic")); |
36 | touchsound->setChecked(config.readBoolEntry("Touch")); | 36 | touchsound->setChecked(config.readBoolEntry("Touch")); |
37 | keysound->setChecked(config.readBoolEntry("Key")); | 37 | keysound->setChecked(config.readBoolEntry("Key")); |
38 | dblClickRuns->setText(config.readEntry("DblClickVolumeRuns", | 38 | |
39 | "/opt/QtPalmtop/bin/vmemomanager")); | 39 | config.setGroup("Record"); |
40 | sampleRate->setText(config.readEntry("SampleRate", "11025")); | ||
41 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | ||
42 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); | ||
40 | 43 | ||
41 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); | 44 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); |
42 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); | 45 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); |
43 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); | 46 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); |
44 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); | 47 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); |
45 | } | 48 | } |
46 | 49 | ||
47 | void SoundSettings::reject() | 50 | void SoundSettings::reject() |
48 | { | 51 | { |
49 | Config config( "Sound" ); | 52 | Config config( "Sound" ); |
50 | config.setGroup( "System" ); | 53 | config.setGroup( "System" ); |
51 | setVolume(100-config.readNumEntry("Volume")); | 54 | setVolume(100-config.readNumEntry("Volume")); |
52 | setMic(100-config.readNumEntry("Mic")); | 55 | setMic(100-config.readNumEntry("Mic")); |
53 | 56 | ||
57 | config.setGroup("Record"); | ||
58 | sampleRate->setText(config.readEntry("SampleRate", "11025")); | ||
59 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | ||
60 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); | ||
61 | |||
54 | QDialog::reject(); | 62 | QDialog::reject(); |
55 | } | 63 | } |
56 | 64 | ||
57 | void SoundSettings::accept() | 65 | void SoundSettings::accept() |
58 | { | 66 | { |
59 | Config config( "Sound" ); | 67 | Config config( "Sound" ); |
60 | config.setGroup( "System" ); | 68 | config.setGroup( "System" ); |
61 | config.writeEntry("Volume",100-volume->value()); | 69 | config.writeEntry("Volume",100-volume->value()); |
62 | config.writeEntry("Mic",100-mic->value()); | 70 | config.writeEntry("Mic",100-mic->value()); |
63 | config.writeEntry("Touch",touchsound->isChecked()); | 71 | config.writeEntry("Touch",touchsound->isChecked()); |
64 | config.writeEntry("Key",keysound->isChecked()); | 72 | config.writeEntry("Key",keysound->isChecked()); |
65 | config.writeEntry("DblClickVolumeRuns", dblClickRuns->text()); | 73 | |
66 | setVolume(volume->value()); | 74 | setVolume(volume->value()); |
75 | setMic(mic->value()); | ||
76 | |||
77 | config.setGroup("Record"); | ||
78 | config.writeEntry("SampleRate",sampleRate->text()); | ||
79 | config.writeEntry("Stereo",stereoCheckBox->isChecked()); | ||
80 | config.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked()); | ||
81 | |||
67 | QDialog::accept(); | 82 | QDialog::accept(); |
68 | } | 83 | } |
69 | 84 | ||
70 | void SoundSettings::setVolume(int v) | 85 | void SoundSettings::setVolume(int v) |
71 | { | 86 | { |
72 | Config config( "Sound" ); | 87 | Config config( "Sound" ); |
73 | config.setGroup( "System" ); | 88 | config.setGroup( "System" ); |
74 | config.writeEntry("Volume",100-v); | 89 | config.writeEntry("Volume",100-v); |
75 | #if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) | 90 | #if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) |
76 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; | 91 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; |
77 | #endif | 92 | #endif |
78 | } | 93 | } |
79 | 94 | ||
80 | void SoundSettings::setMic(int m) | 95 | void SoundSettings::setMic(int m) |
81 | { | 96 | { |
82 | Config config( "Sound" ); | 97 | Config config( "Sound" ); |
83 | config.setGroup( "System" ); | 98 | config.setGroup( "System" ); |
84 | config.writeEntry("Mic",100-m); | 99 | config.writeEntry("Mic",100-m); |
85 | #if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) | 100 | #if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) |
86 | QCopEnvelope( "QPE/System", "micChange(bool)" ) << FALSE; | 101 | QCopEnvelope( "QPE/System", "micChange(bool)" ) << FALSE; |
87 | #endif | 102 | #endif |
88 | } | 103 | } |
89 | 104 | ||
90 | void SoundSettings::volumeChanged( bool ) | 105 | void SoundSettings::volumeChanged( bool ) |
91 | { | 106 | { |
92 | Config config( "Sound" ); | 107 | Config config( "Sound" ); |
93 | config.setGroup( "System" ); | 108 | config.setGroup( "System" ); |
94 | volume->setValue(100-config.readNumEntry("Volume")); | 109 | volume->setValue(100-config.readNumEntry("Volume")); |
95 | } | 110 | } |
96 | 111 | ||
97 | void SoundSettings::micChanged( bool ) | 112 | void SoundSettings::micChanged( bool ) |
98 | { | 113 | { |
99 | Config config( "Sound" ); | 114 | Config config( "Sound" ); |
100 | config.setGroup( "System" ); | 115 | config.setGroup( "System" ); |
101 | mic->setValue(100-config.readNumEntry("Mic")); | 116 | mic->setValue(100-config.readNumEntry("Mic")); |
102 | } | 117 | } |
diff --git a/noncore/settings/sound/soundsettingsbase.ui b/noncore/settings/sound/soundsettingsbase.ui index 0b2b2be..f47f77e 100644 --- a/noncore/settings/sound/soundsettingsbase.ui +++ b/noncore/settings/sound/soundsettingsbase.ui | |||
@@ -1,445 +1,560 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>SoundSettingsBase</class> | 2 | <class>SoundSettingsBase</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>SoundSettingsBase</cstring> | 7 | <cstring>SoundSettingsBase</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>376</width> | 14 | <width>372</width> |
15 | <height>441</height> | 15 | <height>441</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Sound Settings</string> | 20 | <string>Sound Settings</string> |
21 | </property> | 21 | </property> |
22 | <property> | 22 | <property> |
23 | <name>layoutMargin</name> | 23 | <name>layoutMargin</name> |
24 | </property> | 24 | </property> |
25 | <property> | 25 | <property> |
26 | <name>layoutSpacing</name> | 26 | <name>layoutSpacing</name> |
27 | </property> | 27 | </property> |
28 | <grid> | 28 | <grid> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>11</number> | 31 | <number>11</number> |
32 | </property> | 32 | </property> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | 34 | <name>spacing</name> |
35 | <number>6</number> | 35 | <number>6</number> |
36 | </property> | 36 | </property> |
37 | <widget row="0" column="0" > | 37 | <widget row="0" column="0" > |
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>Layout8</cstring> | 41 | <cstring>Layout30</cstring> |
42 | </property> | 42 | </property> |
43 | <vbox> | 43 | <hbox> |
44 | <property stdset="1"> | 44 | <property stdset="1"> |
45 | <name>margin</name> | 45 | <name>margin</name> |
46 | <number>0</number> | 46 | <number>0</number> |
47 | </property> | 47 | </property> |
48 | <property stdset="1"> | 48 | <property stdset="1"> |
49 | <name>spacing</name> | 49 | <name>spacing</name> |
50 | <number>6</number> | 50 | <number>6</number> |
51 | </property> | 51 | </property> |
52 | <widget> | 52 | <widget> |
53 | <class>QCheckBox</class> | ||
54 | <property stdset="1"> | ||
55 | <name>name</name> | ||
56 | <cstring>keysound</cstring> | ||
57 | </property> | ||
58 | <property stdset="1"> | ||
59 | <name>text</name> | ||
60 | <string>Keyboard sound</string> | ||
61 | </property> | ||
62 | </widget> | ||
63 | <widget> | ||
64 | <class>QCheckBox</class> | ||
65 | <property stdset="1"> | ||
66 | <name>name</name> | ||
67 | <cstring>touchsound</cstring> | ||
68 | </property> | ||
69 | <property stdset="1"> | ||
70 | <name>text</name> | ||
71 | <string>Screen sound</string> | ||
72 | </property> | ||
73 | </widget> | ||
74 | <widget> | ||
75 | <class>QLabel</class> | ||
76 | <property stdset="1"> | ||
77 | <name>name</name> | ||
78 | <cstring>dblClickLabel</cstring> | ||
79 | </property> | ||
80 | <property stdset="1"> | ||
81 | <name>text</name> | ||
82 | <string>Double Click Volume runs:</string> | ||
83 | </property> | ||
84 | </widget> | ||
85 | <widget> | ||
86 | <class>QLineEdit</class> | ||
87 | <property stdset="1"> | ||
88 | <name>name</name> | ||
89 | <cstring>dblClickRuns</cstring> | ||
90 | </property> | ||
91 | <property stdset="1"> | ||
92 | <name>text</name> | ||
93 | <string></string> | ||
94 | </property> | ||
95 | </widget> | ||
96 | <widget> | ||
97 | <class>QLayoutWidget</class> | 53 | <class>QLayoutWidget</class> |
98 | <property stdset="1"> | 54 | <property stdset="1"> |
99 | <name>name</name> | 55 | <name>name</name> |
100 | <cstring>Layout14</cstring> | 56 | <cstring>Layout24</cstring> |
101 | </property> | 57 | </property> |
102 | <hbox> | 58 | <vbox> |
103 | <property stdset="1"> | 59 | <property stdset="1"> |
104 | <name>margin</name> | 60 | <name>margin</name> |
105 | <number>0</number> | 61 | <number>0</number> |
106 | </property> | 62 | </property> |
107 | <property stdset="1"> | 63 | <property stdset="1"> |
108 | <name>spacing</name> | 64 | <name>spacing</name> |
109 | <number>6</number> | 65 | <number>6</number> |
110 | </property> | 66 | </property> |
111 | <widget> | 67 | <widget> |
68 | <class>QCheckBox</class> | ||
69 | <property stdset="1"> | ||
70 | <name>name</name> | ||
71 | <cstring>touchsound</cstring> | ||
72 | </property> | ||
73 | <property stdset="1"> | ||
74 | <name>text</name> | ||
75 | <string>Screen sound</string> | ||
76 | </property> | ||
77 | </widget> | ||
78 | <widget> | ||
79 | <class>QCheckBox</class> | ||
80 | <property stdset="1"> | ||
81 | <name>name</name> | ||
82 | <cstring>keysound</cstring> | ||
83 | </property> | ||
84 | <property stdset="1"> | ||
85 | <name>text</name> | ||
86 | <string>Keyboard sound</string> | ||
87 | </property> | ||
88 | </widget> | ||
89 | <widget> | ||
112 | <class>QLayoutWidget</class> | 90 | <class>QLayoutWidget</class> |
113 | <property stdset="1"> | 91 | <property stdset="1"> |
114 | <name>name</name> | 92 | <name>name</name> |
115 | <cstring>Layout7</cstring> | 93 | <cstring>Layout11</cstring> |
116 | </property> | 94 | </property> |
117 | <vbox> | 95 | <hbox> |
118 | <property stdset="1"> | 96 | <property stdset="1"> |
119 | <name>margin</name> | 97 | <name>margin</name> |
120 | <number>0</number> | 98 | <number>0</number> |
121 | </property> | 99 | </property> |
122 | <property stdset="1"> | 100 | <property stdset="1"> |
123 | <name>spacing</name> | 101 | <name>spacing</name> |
124 | <number>6</number> | 102 | <number>6</number> |
125 | </property> | 103 | </property> |
104 | <spacer> | ||
105 | <property> | ||
106 | <name>name</name> | ||
107 | <cstring>Spacer3_2_2</cstring> | ||
108 | </property> | ||
109 | <property stdset="1"> | ||
110 | <name>orientation</name> | ||
111 | <enum>Horizontal</enum> | ||
112 | </property> | ||
113 | <property stdset="1"> | ||
114 | <name>sizeType</name> | ||
115 | <enum>Expanding</enum> | ||
116 | </property> | ||
117 | <property> | ||
118 | <name>sizeHint</name> | ||
119 | <size> | ||
120 | <width>20</width> | ||
121 | <height>20</height> | ||
122 | </size> | ||
123 | </property> | ||
124 | </spacer> | ||
126 | <widget> | 125 | <widget> |
127 | <class>QLabel</class> | 126 | <class>QLabel</class> |
128 | <property stdset="1"> | 127 | <property stdset="1"> |
129 | <name>name</name> | 128 | <name>name</name> |
130 | <cstring>volLabel</cstring> | 129 | <cstring>PixmapLabel1_2</cstring> |
131 | </property> | 130 | </property> |
132 | <property stdset="1"> | 131 | <property stdset="1"> |
133 | <name>text</name> | 132 | <name>pixmap</name> |
134 | <string>Volume</string> | 133 | <pixmap>image0</pixmap> |
134 | </property> | ||
135 | <property stdset="1"> | ||
136 | <name>scaledContents</name> | ||
137 | <bool>false</bool> | ||
135 | </property> | 138 | </property> |
136 | </widget> | 139 | </widget> |
137 | <widget> | 140 | <widget> |
138 | <class>QSlider</class> | 141 | <class>QLabel</class> |
139 | <property stdset="1"> | 142 | <property stdset="1"> |
140 | <name>name</name> | 143 | <name>name</name> |
141 | <cstring>volume</cstring> | 144 | <cstring>TextLabel1_2</cstring> |
142 | </property> | 145 | </property> |
143 | <property stdset="1"> | 146 | <property stdset="1"> |
144 | <name>maxValue</name> | 147 | <name>text</name> |
145 | <number>100</number> | 148 | <string>Loud</string> |
146 | </property> | 149 | </property> |
147 | <property stdset="1"> | 150 | </widget> |
148 | <name>value</name> | 151 | <spacer> |
149 | <number>50</number> | 152 | <property> |
153 | <name>name</name> | ||
154 | <cstring>Spacer3_2</cstring> | ||
150 | </property> | 155 | </property> |
151 | <property stdset="1"> | 156 | <property stdset="1"> |
152 | <name>orientation</name> | 157 | <name>orientation</name> |
153 | <enum>Vertical</enum> | 158 | <enum>Horizontal</enum> |
154 | </property> | 159 | </property> |
155 | <property stdset="1"> | 160 | <property stdset="1"> |
156 | <name>tickmarks</name> | 161 | <name>sizeType</name> |
157 | <enum>Right</enum> | 162 | <enum>Expanding</enum> |
158 | </property> | 163 | </property> |
159 | <property stdset="1"> | 164 | <property> |
160 | <name>tickInterval</name> | 165 | <name>sizeHint</name> |
161 | <number>5</number> | 166 | <size> |
167 | <width>20</width> | ||
168 | <height>20</height> | ||
169 | </size> | ||
162 | </property> | 170 | </property> |
163 | </widget> | 171 | </spacer> |
164 | </vbox> | 172 | </hbox> |
165 | </widget> | 173 | </widget> |
166 | <widget> | 174 | <widget> |
167 | <class>QLayoutWidget</class> | 175 | <class>QLayoutWidget</class> |
168 | <property stdset="1"> | 176 | <property stdset="1"> |
169 | <name>name</name> | 177 | <name>name</name> |
170 | <cstring>Layout13</cstring> | 178 | <cstring>Layout11</cstring> |
171 | </property> | 179 | </property> |
172 | <vbox> | 180 | <hbox> |
173 | <property stdset="1"> | 181 | <property stdset="1"> |
174 | <name>margin</name> | 182 | <name>margin</name> |
175 | <number>0</number> | 183 | <number>0</number> |
176 | </property> | 184 | </property> |
177 | <property stdset="1"> | 185 | <property stdset="1"> |
178 | <name>spacing</name> | 186 | <name>spacing</name> |
179 | <number>6</number> | 187 | <number>6</number> |
180 | </property> | 188 | </property> |
181 | <widget> | 189 | <widget> |
182 | <class>QLayoutWidget</class> | 190 | <class>QLayoutWidget</class> |
183 | <property stdset="1"> | 191 | <property stdset="1"> |
184 | <name>name</name> | 192 | <name>name</name> |
185 | <cstring>Layout11</cstring> | 193 | <cstring>Layout7</cstring> |
186 | </property> | 194 | </property> |
187 | <hbox> | 195 | <vbox> |
188 | <property stdset="1"> | 196 | <property stdset="1"> |
189 | <name>margin</name> | 197 | <name>margin</name> |
190 | <number>0</number> | 198 | <number>0</number> |
191 | </property> | 199 | </property> |
192 | <property stdset="1"> | 200 | <property stdset="1"> |
193 | <name>spacing</name> | 201 | <name>spacing</name> |
194 | <number>6</number> | 202 | <number>6</number> |
195 | </property> | 203 | </property> |
196 | <spacer> | ||
197 | <property> | ||
198 | <name>name</name> | ||
199 | <cstring>Spacer3_2_2</cstring> | ||
200 | </property> | ||
201 | <property stdset="1"> | ||
202 | <name>orientation</name> | ||
203 | <enum>Horizontal</enum> | ||
204 | </property> | ||
205 | <property stdset="1"> | ||
206 | <name>sizeType</name> | ||
207 | <enum>Expanding</enum> | ||
208 | </property> | ||
209 | <property> | ||
210 | <name>sizeHint</name> | ||
211 | <size> | ||
212 | <width>20</width> | ||
213 | <height>20</height> | ||
214 | </size> | ||
215 | </property> | ||
216 | </spacer> | ||
217 | <widget> | 204 | <widget> |
218 | <class>QLabel</class> | 205 | <class>QLabel</class> |
219 | <property stdset="1"> | 206 | <property stdset="1"> |
220 | <name>name</name> | 207 | <name>name</name> |
221 | <cstring>PixmapLabel1_2</cstring> | 208 | <cstring>volLabel</cstring> |
222 | </property> | 209 | </property> |
223 | <property stdset="1"> | 210 | <property stdset="1"> |
224 | <name>pixmap</name> | 211 | <name>text</name> |
225 | <pixmap>image0</pixmap> | 212 | <string>Volume</string> |
226 | </property> | ||
227 | <property stdset="1"> | ||
228 | <name>scaledContents</name> | ||
229 | <bool>false</bool> | ||
230 | </property> | 213 | </property> |
231 | </widget> | 214 | </widget> |
232 | <widget> | 215 | <widget> |
233 | <class>QLabel</class> | 216 | <class>QSlider</class> |
234 | <property stdset="1"> | 217 | <property stdset="1"> |
235 | <name>name</name> | 218 | <name>name</name> |
236 | <cstring>TextLabel1_2</cstring> | 219 | <cstring>volume</cstring> |
237 | </property> | 220 | </property> |
238 | <property stdset="1"> | 221 | <property stdset="1"> |
239 | <name>text</name> | 222 | <name>maxValue</name> |
240 | <string>Loud</string> | 223 | <number>100</number> |
241 | </property> | 224 | </property> |
242 | </widget> | 225 | <property stdset="1"> |
243 | <spacer> | 226 | <name>value</name> |
244 | <property> | 227 | <number>50</number> |
245 | <name>name</name> | ||
246 | <cstring>Spacer3_2</cstring> | ||
247 | </property> | 228 | </property> |
248 | <property stdset="1"> | 229 | <property stdset="1"> |
249 | <name>orientation</name> | 230 | <name>orientation</name> |
250 | <enum>Horizontal</enum> | 231 | <enum>Vertical</enum> |
251 | </property> | 232 | </property> |
252 | <property stdset="1"> | 233 | <property stdset="1"> |
253 | <name>sizeType</name> | 234 | <name>tickmarks</name> |
254 | <enum>Expanding</enum> | 235 | <enum>Right</enum> |
255 | </property> | 236 | </property> |
256 | <property> | 237 | <property stdset="1"> |
257 | <name>sizeHint</name> | 238 | <name>tickInterval</name> |
258 | <size> | 239 | <number>5</number> |
259 | <width>20</width> | ||
260 | <height>20</height> | ||
261 | </size> | ||
262 | </property> | 240 | </property> |
263 | </spacer> | 241 | </widget> |
264 | </hbox> | 242 | </vbox> |
265 | </widget> | 243 | </widget> |
266 | <spacer> | 244 | <spacer> |
267 | <property> | 245 | <property> |
268 | <name>name</name> | 246 | <name>name</name> |
269 | <cstring>Spacer5_2</cstring> | 247 | <cstring>Spacer5_2</cstring> |
270 | </property> | 248 | </property> |
271 | <property stdset="1"> | 249 | <property stdset="1"> |
272 | <name>orientation</name> | 250 | <name>orientation</name> |
273 | <enum>Vertical</enum> | 251 | <enum>Vertical</enum> |
274 | </property> | 252 | </property> |
275 | <property stdset="1"> | 253 | <property stdset="1"> |
276 | <name>sizeType</name> | 254 | <name>sizeType</name> |
277 | <enum>Expanding</enum> | 255 | <enum>Expanding</enum> |
278 | </property> | 256 | </property> |
279 | <property> | 257 | <property> |
280 | <name>sizeHint</name> | 258 | <name>sizeHint</name> |
281 | <size> | 259 | <size> |
282 | <width>20</width> | 260 | <width>20</width> |
283 | <height>20</height> | 261 | <height>20</height> |
284 | </size> | 262 | </size> |
285 | </property> | 263 | </property> |
286 | </spacer> | 264 | </spacer> |
287 | <widget> | 265 | <widget> |
288 | <class>QLayoutWidget</class> | 266 | <class>QLayoutWidget</class> |
289 | <property stdset="1"> | 267 | <property stdset="1"> |
290 | <name>name</name> | 268 | <name>name</name> |
291 | <cstring>Layout12</cstring> | 269 | <cstring>Layout8</cstring> |
292 | </property> | 270 | </property> |
293 | <hbox> | 271 | <vbox> |
294 | <property stdset="1"> | 272 | <property stdset="1"> |
295 | <name>margin</name> | 273 | <name>margin</name> |
296 | <number>0</number> | 274 | <number>0</number> |
297 | </property> | 275 | </property> |
298 | <property stdset="1"> | 276 | <property stdset="1"> |
299 | <name>spacing</name> | 277 | <name>spacing</name> |
300 | <number>6</number> | 278 | <number>6</number> |
301 | </property> | 279 | </property> |
302 | <spacer> | ||
303 | <property> | ||
304 | <name>name</name> | ||
305 | <cstring>Spacer3_2_3</cstring> | ||
306 | </property> | ||
307 | <property stdset="1"> | ||
308 | <name>orientation</name> | ||
309 | <enum>Horizontal</enum> | ||
310 | </property> | ||
311 | <property stdset="1"> | ||
312 | <name>sizeType</name> | ||
313 | <enum>Expanding</enum> | ||
314 | </property> | ||
315 | <property> | ||
316 | <name>sizeHint</name> | ||
317 | <size> | ||
318 | <width>20</width> | ||
319 | <height>20</height> | ||
320 | </size> | ||
321 | </property> | ||
322 | </spacer> | ||
323 | <widget> | 280 | <widget> |
324 | <class>QLabel</class> | 281 | <class>QLabel</class> |
325 | <property stdset="1"> | 282 | <property stdset="1"> |
326 | <name>name</name> | 283 | <name>name</name> |
327 | <cstring>PixmapLabel2_2</cstring> | 284 | <cstring>micLabel</cstring> |
328 | </property> | ||
329 | <property stdset="1"> | ||
330 | <name>pixmap</name> | ||
331 | <pixmap>image1</pixmap> | ||
332 | </property> | 285 | </property> |
333 | <property stdset="1"> | 286 | <property stdset="1"> |
334 | <name>scaledContents</name> | 287 | <name>text</name> |
335 | <bool>false</bool> | 288 | <string>Microphone</string> |
336 | </property> | 289 | </property> |
337 | </widget> | 290 | </widget> |
338 | <widget> | 291 | <widget> |
339 | <class>QLabel</class> | 292 | <class>QSlider</class> |
340 | <property stdset="1"> | 293 | <property stdset="1"> |
341 | <name>name</name> | 294 | <name>name</name> |
342 | <cstring>TextLabel2_2</cstring> | 295 | <cstring>mic</cstring> |
343 | </property> | 296 | </property> |
344 | <property stdset="1"> | 297 | <property stdset="1"> |
345 | <name>text</name> | 298 | <name>maxValue</name> |
346 | <string>Silent</string> | 299 | <number>100</number> |
347 | </property> | 300 | </property> |
348 | </widget> | 301 | <property stdset="1"> |
349 | <spacer> | 302 | <name>value</name> |
350 | <property> | 303 | <number>50</number> |
351 | <name>name</name> | ||
352 | <cstring>Spacer2_2</cstring> | ||
353 | </property> | 304 | </property> |
354 | <property stdset="1"> | 305 | <property stdset="1"> |
355 | <name>orientation</name> | 306 | <name>orientation</name> |
356 | <enum>Horizontal</enum> | 307 | <enum>Vertical</enum> |
357 | </property> | 308 | </property> |
358 | <property stdset="1"> | 309 | <property stdset="1"> |
359 | <name>sizeType</name> | 310 | <name>tickmarks</name> |
360 | <enum>Expanding</enum> | 311 | <enum>Right</enum> |
361 | </property> | 312 | </property> |
362 | <property> | 313 | <property stdset="1"> |
363 | <name>sizeHint</name> | 314 | <name>tickInterval</name> |
364 | <size> | 315 | <number>5</number> |
365 | <width>20</width> | ||
366 | <height>20</height> | ||
367 | </size> | ||
368 | </property> | 316 | </property> |
369 | </spacer> | 317 | </widget> |
370 | </hbox> | 318 | </vbox> |
371 | </widget> | 319 | </widget> |
372 | </vbox> | 320 | </hbox> |
373 | </widget> | 321 | </widget> |
374 | <widget> | 322 | <widget> |
375 | <class>QLayoutWidget</class> | 323 | <class>QLayoutWidget</class> |
376 | <property stdset="1"> | 324 | <property stdset="1"> |
377 | <name>name</name> | 325 | <name>name</name> |
378 | <cstring>Layout8</cstring> | 326 | <cstring>Layout12</cstring> |
379 | </property> | 327 | </property> |
380 | <vbox> | 328 | <hbox> |
381 | <property stdset="1"> | 329 | <property stdset="1"> |
382 | <name>margin</name> | 330 | <name>margin</name> |
383 | <number>0</number> | 331 | <number>0</number> |
384 | </property> | 332 | </property> |
385 | <property stdset="1"> | 333 | <property stdset="1"> |
386 | <name>spacing</name> | 334 | <name>spacing</name> |
387 | <number>6</number> | 335 | <number>6</number> |
388 | </property> | 336 | </property> |
337 | <spacer> | ||
338 | <property> | ||
339 | <name>name</name> | ||
340 | <cstring>Spacer3_2_3</cstring> | ||
341 | </property> | ||
342 | <property stdset="1"> | ||
343 | <name>orientation</name> | ||
344 | <enum>Horizontal</enum> | ||
345 | </property> | ||
346 | <property stdset="1"> | ||
347 | <name>sizeType</name> | ||
348 | <enum>Expanding</enum> | ||
349 | </property> | ||
350 | <property> | ||
351 | <name>sizeHint</name> | ||
352 | <size> | ||
353 | <width>20</width> | ||
354 | <height>20</height> | ||
355 | </size> | ||
356 | </property> | ||
357 | </spacer> | ||
389 | <widget> | 358 | <widget> |
390 | <class>QLabel</class> | 359 | <class>QLabel</class> |
391 | <property stdset="1"> | 360 | <property stdset="1"> |
392 | <name>name</name> | 361 | <name>name</name> |
393 | <cstring>micLabel</cstring> | 362 | <cstring>PixmapLabel2_2</cstring> |
394 | </property> | 363 | </property> |
395 | <property stdset="1"> | 364 | <property stdset="1"> |
396 | <name>text</name> | 365 | <name>pixmap</name> |
397 | <string>Microphone</string> | 366 | <pixmap>image1</pixmap> |
367 | </property> | ||
368 | <property stdset="1"> | ||
369 | <name>scaledContents</name> | ||
370 | <bool>false</bool> | ||
398 | </property> | 371 | </property> |
399 | </widget> | 372 | </widget> |
400 | <widget> | 373 | <widget> |
401 | <class>QSlider</class> | 374 | <class>QLabel</class> |
402 | <property stdset="1"> | 375 | <property stdset="1"> |
403 | <name>name</name> | 376 | <name>name</name> |
404 | <cstring>mic</cstring> | 377 | <cstring>TextLabel2_2</cstring> |
405 | </property> | 378 | </property> |
406 | <property stdset="1"> | 379 | <property stdset="1"> |
407 | <name>maxValue</name> | 380 | <name>text</name> |
408 | <number>100</number> | 381 | <string>Silent</string> |
409 | </property> | 382 | </property> |
410 | <property stdset="1"> | 383 | </widget> |
411 | <name>value</name> | 384 | <spacer> |
412 | <number>50</number> | 385 | <property> |
386 | <name>name</name> | ||
387 | <cstring>Spacer2_2</cstring> | ||
413 | </property> | 388 | </property> |
414 | <property stdset="1"> | 389 | <property stdset="1"> |
415 | <name>orientation</name> | 390 | <name>orientation</name> |
416 | <enum>Vertical</enum> | 391 | <enum>Horizontal</enum> |
417 | </property> | 392 | </property> |
418 | <property stdset="1"> | 393 | <property stdset="1"> |
419 | <name>tickmarks</name> | 394 | <name>sizeType</name> |
420 | <enum>Right</enum> | 395 | <enum>Expanding</enum> |
421 | </property> | 396 | </property> |
397 | <property> | ||
398 | <name>sizeHint</name> | ||
399 | <size> | ||
400 | <width>20</width> | ||
401 | <height>20</height> | ||
402 | </size> | ||
403 | </property> | ||
404 | </spacer> | ||
405 | </hbox> | ||
406 | </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> | ||
425 | <class>QGroupBox</class> | ||
426 | <property stdset="1"> | ||
427 | <name>name</name> | ||
428 | <cstring>GroupBox1</cstring> | ||
429 | </property> | ||
430 | <property stdset="1"> | ||
431 | <name>title</name> | ||
432 | <string>Record Defaults</string> | ||
433 | </property> | ||
434 | <grid> | ||
435 | <property stdset="1"> | ||
436 | <name>margin</name> | ||
437 | <number>11</number> | ||
438 | </property> | ||
439 | <property stdset="1"> | ||
440 | <name>spacing</name> | ||
441 | <number>6</number> | ||
442 | </property> | ||
443 | <widget row="0" column="0" > | ||
444 | <class>QLayoutWidget</class> | ||
422 | <property stdset="1"> | 445 | <property stdset="1"> |
423 | <name>tickInterval</name> | 446 | <name>name</name> |
424 | <number>5</number> | 447 | <cstring>Layout28</cstring> |
425 | </property> | 448 | </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> | ||
426 | </widget> | 499 | </widget> |
427 | </vbox> | 500 | </grid> |
428 | </widget> | 501 | </widget> |
429 | </hbox> | 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> | ||
430 | </widget> | 524 | </widget> |
431 | </vbox> | 525 | <spacer> |
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> | ||
432 | </widget> | 547 | </widget> |
433 | </grid> | 548 | </grid> |
434 | </widget> | 549 | </widget> |
435 | <images> | 550 | <images> |
436 | <image> | 551 | <image> |
437 | <name>image0</name> | 552 | <name>image0</name> |
438 | <data format="XPM.GZ" length="409">789cd3d7528808f055d0d2e72a2e492cc94c5648ce482c52d04a29cdcdad8c8eb5ade6523234530022630543251d2e253d856405bffcbc54103b11c856360003105719c44d4b8371f590803210638829a38b2983115c2c112a8224969808d60716868a2582c440aa94a1628960a00755a5ac8c2aa64c8118c23c6cf6c2dda787e23eb03f602af1fa17395c6aadb9008c9350cb</data> | 553 | <data format="XPM.GZ" length="409">789cd3d7528808f055d0d2e72a2e492cc94c5648ce482c52d04a29cdcdad8c8eb5ade6523234530022630543251d2e253d856405bffcbc54103b11c856360003105719c44d4b8371f590803210638829a38b2983115c2c112a8224969808d60716868a2582c440aa94a1628960a00755a5ac8c2aa64c8118c23c6cf6c2dda787e23eb03f602af1fa17395c6aadb9008c9350cb</data> |
439 | </image> | 554 | </image> |
440 | <image> | 555 | <image> |
441 | <name>image1</name> | 556 | <name>image1</name> |
442 | <data format="XPM.GZ" length="409">789cd3d7528808f055d0d2e72a2e492cc94c5648ce482c52d04a29cdcdad8c8eb5ade6523234530022630543251d2e253d856405bffcbc54105b19c856360003103711c44d4b8371f5d000c962ca9862ca9862ca60b1440806bb0a0c80dcc444304616030924a2a983a8d423a80ed93c6cf6e2701f567f100c835a6b2e0025ab4ee4</data> | 557 | <data format="XPM.GZ" length="409">789cd3d7528808f055d0d2e72a2e492cc94c5648ce482c52d04a29cdcdad8c8eb5ade6523234530022630543251d2e253d856405bffcbc54105b19c856360003103711c44d4b8371f5d000c962ca9862ca9862ca60b1440806bb0a0c80dcc444304616030924a2a983a8d423a80ed93c6cf6e2701f567f100c835a6b2e0025ab4ee4</data> |
443 | </image> | 558 | </image> |
444 | </images> | 559 | </images> |
445 | </UI> | 560 | </UI> |