author | llornkcor <llornkcor> | 2002-03-19 00:58:28 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-03-19 00:58:28 (UTC) |
commit | d9bbf6f090bd5e35bf2ec7782cf77de049634149 (patch) (unidiff) | |
tree | 9e3bd25584c24d1850d90fd474ebaf517e946d9a | |
parent | 7ac89ca47c72729aad8a5a91c8be6ce9c223ab9c (diff) | |
download | opie-d9bbf6f090bd5e35bf2ec7782cf77de049634149.zip opie-d9bbf6f090bd5e35bf2ec7782cf77de049634149.tar.gz opie-d9bbf6f090bd5e35bf2ec7782cf77de049634149.tar.bz2 |
added 3200 samplerate to combo
-rw-r--r-- | noncore/settings/sound/sound.pro | 2 | ||||
-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 6 | ||||
-rw-r--r-- | noncore/settings/sound/soundsettingsbase.ui | 6 |
3 files changed, 12 insertions, 2 deletions
diff --git a/noncore/settings/sound/sound.pro b/noncore/settings/sound/sound.pro index 8b33ff2..fa87b86 100644 --- a/noncore/settings/sound/sound.pro +++ b/noncore/settings/sound/sound.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = ../../bin | 3 | DESTDIR = ../../bin |
4 | HEADERS = soundsettings.h | 4 | HEADERS = soundsettings.h |
5 | SOURCES = soundsettings.cpp main.cpp | 5 | SOURCES = soundsettings.cpp main.cpp |
6 | INTERFACES= soundsettingsbase.ui | 6 | INTERFACES= soundsettingsbase.ui |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(OPIEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = sound | 10 | TARGET = sound |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/pt_BR/sound.ts | 12 | TRANSLATIONS += ../../i18n/pt_BR/sound.ts |
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 55f6c99..467f23e 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp | |||
@@ -35,24 +35,26 @@ SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) | |||
35 | config.setGroup( "System" ); | 35 | config.setGroup( "System" ); |
36 | volume->setValue(100-config.readNumEntry("Volume")); | 36 | volume->setValue(100-config.readNumEntry("Volume")); |
37 | mic->setValue(100-config.readNumEntry("Mic")); | 37 | mic->setValue(100-config.readNumEntry("Mic")); |
38 | touchsound->setChecked(config.readBoolEntry("Touch")); | 38 | touchsound->setChecked(config.readBoolEntry("Touch")); |
39 | keysound->setChecked(config.readBoolEntry("Key")); | 39 | keysound->setChecked(config.readBoolEntry("Key")); |
40 | 40 | ||
41 | config.setGroup("Record"); | 41 | config.setGroup("Record"); |
42 | int rate=config.readNumEntry("SampleRate", 11025); | 42 | int rate=config.readNumEntry("SampleRate", 11025); |
43 | if(rate == 11025) | 43 | if(rate == 11025) |
44 | sampleRate->setCurrentItem(0); | 44 | sampleRate->setCurrentItem(0); |
45 | else if(rate == 22050) | 45 | else if(rate == 22050) |
46 | sampleRate->setCurrentItem(1); | 46 | sampleRate->setCurrentItem(1); |
47 | else if(rate == 32000) | ||
48 | sampleRate->setCurrentItem(2); | ||
47 | else if(rate==44100) | 49 | else if(rate==44100) |
48 | sampleRate->setCurrentItem(2); | 50 | sampleRate->setCurrentItem(2); |
49 | 51 | ||
50 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | 52 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); |
51 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 1)); | 53 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 1)); |
52 | 54 | ||
53 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); | 55 | connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); |
54 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); | 56 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); |
55 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); | 57 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); |
56 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); | 58 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); |
57 | } | 59 | } |
58 | 60 | ||
@@ -60,26 +62,28 @@ void SoundSettings::reject() | |||
60 | { | 62 | { |
61 | Config config( "Sound" ); | 63 | Config config( "Sound" ); |
62 | config.setGroup( "System" ); | 64 | config.setGroup( "System" ); |
63 | setVolume(100-config.readNumEntry("Volume")); | 65 | setVolume(100-config.readNumEntry("Volume")); |
64 | setMic(100-config.readNumEntry("Mic")); | 66 | setMic(100-config.readNumEntry("Mic")); |
65 | 67 | ||
66 | config.setGroup("Record"); | 68 | config.setGroup("Record"); |
67 | int rate=config.readNumEntry("SampleRate", 11025); | 69 | int rate=config.readNumEntry("SampleRate", 11025); |
68 | if(rate == 11025) | 70 | if(rate == 11025) |
69 | sampleRate->setCurrentItem(0); | 71 | sampleRate->setCurrentItem(0); |
70 | else if(rate == 22050) | 72 | else if(rate == 22050) |
71 | sampleRate->setCurrentItem(1); | 73 | sampleRate->setCurrentItem(1); |
72 | else if(rate==44100) | 74 | else if(rate == 32000) |
73 | sampleRate->setCurrentItem(2); | 75 | sampleRate->setCurrentItem(2); |
76 | else if(rate==44100) | ||
77 | sampleRate->setCurrentItem(3); | ||
74 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); | 78 | stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0)); |
75 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); | 79 | sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0)); |
76 | 80 | ||
77 | QDialog::reject(); | 81 | QDialog::reject(); |
78 | } | 82 | } |
79 | 83 | ||
80 | void SoundSettings::accept() | 84 | void SoundSettings::accept() |
81 | { | 85 | { |
82 | Config config( "Sound" ); | 86 | Config config( "Sound" ); |
83 | config.setGroup( "System" ); | 87 | config.setGroup( "System" ); |
84 | config.writeEntry("Volume",100-volume->value()); | 88 | config.writeEntry("Volume",100-volume->value()); |
85 | config.writeEntry("Mic",100-mic->value()); | 89 | config.writeEntry("Mic",100-mic->value()); |
diff --git a/noncore/settings/sound/soundsettingsbase.ui b/noncore/settings/sound/soundsettingsbase.ui index 0351fd8..97bea2d 100644 --- a/noncore/settings/sound/soundsettingsbase.ui +++ b/noncore/settings/sound/soundsettingsbase.ui | |||
@@ -117,24 +117,30 @@ | |||
117 | <string>11025</string> | 117 | <string>11025</string> |
118 | </property> | 118 | </property> |
119 | </item> | 119 | </item> |
120 | <item> | 120 | <item> |
121 | <property> | 121 | <property> |
122 | <name>text</name> | 122 | <name>text</name> |
123 | <string>22050</string> | 123 | <string>22050</string> |
124 | </property> | 124 | </property> |
125 | </item> | 125 | </item> |
126 | <item> | 126 | <item> |
127 | <property> | 127 | <property> |
128 | <name>text</name> | 128 | <name>text</name> |
129 | <string>32000</string> | ||
130 | </property> | ||
131 | </item> | ||
132 | <item> | ||
133 | <property> | ||
134 | <name>text</name> | ||
129 | <string>44100</string> | 135 | <string>44100</string> |
130 | </property> | 136 | </property> |
131 | </item> | 137 | </item> |
132 | <property stdset="1"> | 138 | <property stdset="1"> |
133 | <name>name</name> | 139 | <name>name</name> |
134 | <cstring>sampleRate</cstring> | 140 | <cstring>sampleRate</cstring> |
135 | </property> | 141 | </property> |
136 | </widget> | 142 | </widget> |
137 | <widget> | 143 | <widget> |
138 | <class>QCheckBox</class> | 144 | <class>QCheckBox</class> |
139 | <property stdset="1"> | 145 | <property stdset="1"> |
140 | <name>name</name> | 146 | <name>name</name> |