summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettings.cpp
Unidiff
Diffstat (limited to 'noncore/settings/sound/soundsettings.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp
new file mode 100644
index 0000000..92281f8
--- a/dev/null
+++ b/noncore/settings/sound/soundsettings.cpp
@@ -0,0 +1,64 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
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
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
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.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20#include "soundsettings.h"
21
22#include <qpe/config.h>
23#include <qpe/qcopenvelope_qws.h>
24
25#include <qslider.h>
26#include <qcheckbox.h>
27
28SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl )
29 : SoundSettingsBase( parent, name, TRUE, fl )
30{
31 Config config( "Sound" );
32
33 config.setGroup( "System" );
34 volume->setValue(100-config.readNumEntry("Volume"));
35 touchsound->setChecked(config.readBoolEntry("Touch"));
36 keysound->setChecked(config.readBoolEntry("Key"));
37
38 connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int)));
39}
40
41void SoundSettings::reject()
42{
43 Config config( "Sound" );
44 config.setGroup( "System" );
45 setVolume(100-config.readNumEntry("Volume"));
46
47 QDialog::reject();
48}
49
50void SoundSettings::accept()
51{
52 Config config( "Sound" );
53 config.setGroup( "System" );
54 config.writeEntry("Volume",100-volume->value());
55 config.writeEntry("Touch",touchsound->isChecked());
56 config.writeEntry("Key",keysound->isChecked());
57 setVolume(volume->value());
58 QDialog::accept();
59}
60
61void SoundSettings::setVolume(int v)
62{
63 QCopEnvelope( "QPE/System", "setVolume(int,int)" ) << 0 << 100-v;
64}