author | llornkcor <llornkcor> | 2002-04-20 03:15:10 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-20 03:15:10 (UTC) |
commit | a5a187837c30ba4e60a0f1c2374e683d2194a427 (patch) (side-by-side diff) | |
tree | aea27f50f1b23843f6d9f3bbab402870200f47dc | |
parent | 6f3e6c46027418f3bbbd2f5f576dff354436765d (diff) | |
download | opie-a5a187837c30ba4e60a0f1c2374e683d2194a427.zip opie-a5a187837c30ba4e60a0f1c2374e683d2194a427.tar.gz opie-a5a187837c30ba4e60a0f1c2374e683d2194a427.tar.bz2 |
hooked up user alert
-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 51522b3..c1918de 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp @@ -30,24 +30,25 @@ #include <qcombobox.h> SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) : SoundSettingsBase( parent, name, TRUE, fl ) { Config config( "Sound" ); config.setGroup( "System" ); volume->setValue(100-config.readNumEntry("Volume")); mic->setValue(100-config.readNumEntry("Mic")); touchsound->setChecked(config.readBoolEntry("Touch")); keysound->setChecked(config.readBoolEntry("Key")); + AlertCheckBox->setChecked(config.readBoolEntry("Alert")); config.setGroup("Record"); int rate=config.readNumEntry("SampleRate", 22050); if(rate == 11025) sampleRate->setCurrentItem(0); else if(rate == 22050) sampleRate->setCurrentItem(1); else if(rate == 32000) sampleRate->setCurrentItem(2); else if(rate==44100) sampleRate->setCurrentItem(2); @@ -86,25 +87,25 @@ void SoundSettings::reject() QDialog::reject(); } void SoundSettings::accept() { Config config( "Sound" ); config.setGroup( "System" ); config.writeEntry("Volume",100-volume->value()); config.writeEntry("Mic",100-mic->value()); config.writeEntry("Touch",touchsound->isChecked()); config.writeEntry("Key",keysound->isChecked()); - + config.writeEntry("Alert",AlertCheckBox->isChecked()); setVolume(volume->value()); setMic(mic->value()); config.setGroup("Record"); config.writeEntry("SampleRate",sampleRate->currentText()); config.writeEntry("Stereo",stereoCheckBox->isChecked()); config.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked()); QDialog::accept(); } void SoundSettings::setVolume(int v) |