-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 5 |
1 files changed, 3 insertions, 2 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 | |||
@@ -34,17 +34,18 @@ SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl ) | |||
34 | : SoundSettingsBase( parent, name, TRUE, fl ) | 34 | : SoundSettingsBase( parent, name, TRUE, fl ) |
35 | { | 35 | { |
36 | Config config( "Sound" ); | 36 | Config config( "Sound" ); |
37 | config.setGroup( "System" ); | 37 | config.setGroup( "System" ); |
38 | volume->setValue(100-config.readNumEntry("Volume")); | 38 | volume->setValue(100-config.readNumEntry("Volume")); |
39 | mic->setValue(100-config.readNumEntry("Mic")); | 39 | mic->setValue(100-config.readNumEntry("Mic")); |
40 | touchsound->setChecked(config.readBoolEntry("Touch")); | 40 | touchsound->setChecked(config.readBoolEntry("Touch")); |
41 | keysound->setChecked(config.readBoolEntry("Key")); | 41 | keysound->setChecked(config.readBoolEntry("Key")); |
42 | 42 | AlertCheckBox->setChecked(config.readBoolEntry("Alert")); | |
43 | |||
43 | config.setGroup("Record"); | 44 | config.setGroup("Record"); |
44 | int rate=config.readNumEntry("SampleRate", 22050); | 45 | int rate=config.readNumEntry("SampleRate", 22050); |
45 | if(rate == 11025) | 46 | if(rate == 11025) |
46 | sampleRate->setCurrentItem(0); | 47 | sampleRate->setCurrentItem(0); |
47 | else if(rate == 22050) | 48 | else if(rate == 22050) |
48 | sampleRate->setCurrentItem(1); | 49 | sampleRate->setCurrentItem(1); |
49 | else if(rate == 32000) | 50 | else if(rate == 32000) |
50 | sampleRate->setCurrentItem(2); | 51 | sampleRate->setCurrentItem(2); |
@@ -90,17 +91,17 @@ void SoundSettings::reject() | |||
90 | void SoundSettings::accept() | 91 | void SoundSettings::accept() |
91 | { | 92 | { |
92 | Config config( "Sound" ); | 93 | Config config( "Sound" ); |
93 | config.setGroup( "System" ); | 94 | config.setGroup( "System" ); |
94 | config.writeEntry("Volume",100-volume->value()); | 95 | config.writeEntry("Volume",100-volume->value()); |
95 | config.writeEntry("Mic",100-mic->value()); | 96 | config.writeEntry("Mic",100-mic->value()); |
96 | config.writeEntry("Touch",touchsound->isChecked()); | 97 | config.writeEntry("Touch",touchsound->isChecked()); |
97 | config.writeEntry("Key",keysound->isChecked()); | 98 | config.writeEntry("Key",keysound->isChecked()); |
98 | 99 | config.writeEntry("Alert",AlertCheckBox->isChecked()); | |
99 | setVolume(volume->value()); | 100 | setVolume(volume->value()); |
100 | setMic(mic->value()); | 101 | setMic(mic->value()); |
101 | 102 | ||
102 | config.setGroup("Record"); | 103 | config.setGroup("Record"); |
103 | config.writeEntry("SampleRate",sampleRate->currentText()); | 104 | config.writeEntry("SampleRate",sampleRate->currentText()); |
104 | config.writeEntry("Stereo",stereoCheckBox->isChecked()); | 105 | config.writeEntry("Stereo",stereoCheckBox->isChecked()); |
105 | config.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked()); | 106 | config.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked()); |
106 | 107 | ||