summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettings.cpp
authorllornkcor <llornkcor>2002-03-17 13:08:37 (UTC)
committer llornkcor <llornkcor>2002-03-17 13:08:37 (UTC)
commit2f18edca6cc3539298deccee89e6f4dd7a2570a2 (patch) (side-by-side diff)
tree58eefa2b254a4c30a266681bd077e0e8029384e3 /noncore/settings/sound/soundsettings.cpp
parent578725ca25862c0b06b1991a7bc8ffc2ad8ae13e (diff)
downloadopie-2f18edca6cc3539298deccee89e6f4dd7a2570a2.zip
opie-2f18edca6cc3539298deccee89e6f4dd7a2570a2.tar.gz
opie-2f18edca6cc3539298deccee89e6f4dd7a2570a2.tar.bz2
changed line edit to combo, and changed labels and layout
Diffstat (limited to 'noncore/settings/sound/soundsettings.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.cpp21
1 files changed, 18 insertions, 3 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
@@ -25,6 +25,8 @@
#include <qslider.h>
#include <qcheckbox.h>
#include <qlineedit.h>
+#include <qcombobox.h>
+
SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl )
: SoundSettingsBase( parent, name, TRUE, fl )
@@ -37,7 +39,14 @@ SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl )
keysound->setChecked(config.readBoolEntry("Key"));
config.setGroup("Record");
- sampleRate->setText(config.readEntry("SampleRate", "11025"));
+ int rate=config.readNumEntry("SampleRate", 11025);
+ if(rate == 11025)
+ sampleRate->setCurrentItem(0);
+ else if(rate == 22050)
+ sampleRate->setCurrentItem(1);
+ else if(rate==44100)
+ sampleRate->setCurrentItem(2);
+
stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0));
sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0));
@@ -55,7 +64,13 @@ void SoundSettings::reject()
setMic(100-config.readNumEntry("Mic"));
config.setGroup("Record");
- sampleRate->setText(config.readEntry("SampleRate", "11025"));
+ int rate=config.readNumEntry("SampleRate", 11025);
+ if(rate == 11025)
+ sampleRate->setCurrentItem(0);
+ else if(rate == 22050)
+ sampleRate->setCurrentItem(1);
+ else if(rate==44100)
+ sampleRate->setCurrentItem(2);
stereoCheckBox->setChecked(config.readNumEntry("Stereo", 0));
sixteenBitCheckBox->setChecked(config.readNumEntry("SixteenBit", 0));
@@ -75,7 +90,7 @@ void SoundSettings::accept()
setMic(mic->value());
config.setGroup("Record");
- config.writeEntry("SampleRate",sampleRate->text());
+ config.writeEntry("SampleRate",sampleRate->currentText());
config.writeEntry("Stereo",stereoCheckBox->isChecked());
config.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked());