-rw-r--r-- | noncore/settings/sound/opie-sound.control | 2 | ||||
-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 44 | ||||
-rw-r--r-- | noncore/settings/sound/soundsettings.h | 4 |
3 files changed, 46 insertions, 4 deletions
diff --git a/noncore/settings/sound/opie-sound.control b/noncore/settings/sound/opie-sound.control index a1fe50f..a03c834 100644 --- a/noncore/settings/sound/opie-sound.control +++ b/noncore/settings/sound/opie-sound.control @@ -6,3 +6,3 @@ Architecture: arm Arch: iPAQ -Version: $QPE_VERSION-$SUB_VERSION +Version: $QPE_VERSION-$SUB_VERSION.1 Depends: opie-base ($QPE_VERSION) diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 92281f8..1143e82 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp @@ -23,5 +23,6 @@ #include <qpe/qcopenvelope_qws.h> - +#include <qapplication.h> #include <qslider.h> #include <qcheckbox.h> +#include <qlineedit.h> @@ -31,9 +32,14 @@ SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags 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")); + dblClickRuns->setText(config.readEntry("DblClickVolumeRuns", + "/opt/QtPalmtop/bin/vmemomanager")); connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int))); + connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); + connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); + connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); } @@ -45,2 +51,3 @@ void SoundSettings::reject() setVolume(100-config.readNumEntry("Volume")); + setMic(100-config.readNumEntry("Mic")); @@ -54,4 +61,6 @@ void SoundSettings::accept() config.writeEntry("Volume",100-volume->value()); + config.writeEntry("Mic",100-mic->value()); config.writeEntry("Touch",touchsound->isChecked()); config.writeEntry("Key",keysound->isChecked()); + config.writeEntry("DblClickVolumeRuns", dblClickRuns->text()); setVolume(volume->value()); @@ -62,3 +71,32 @@ void SoundSettings::setVolume(int v) { - QCopEnvelope( "QPE/System", "setVolume(int,int)" ) << 0 << 100-v; + Config config( "Sound" ); + config.setGroup( "System" ); + config.writeEntry("Volume",100-v); +#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) + QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; +#endif +} + +void SoundSettings::setMic(int m) +{ + Config config( "Sound" ); + config.setGroup( "System" ); + config.writeEntry("Mic",100-m); +#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) + QCopEnvelope( "QPE/System", "micChange(bool)" ) << FALSE; +#endif +} + +void SoundSettings::volumeChanged( bool ) +{ + Config config( "Sound" ); + config.setGroup( "System" ); + volume->setValue(100-config.readNumEntry("Volume")); +} + +void SoundSettings::micChanged( bool ) +{ + Config config( "Sound" ); + config.setGroup( "System" ); + mic->setValue(100-config.readNumEntry("Mic")); } diff --git a/noncore/settings/sound/soundsettings.h b/noncore/settings/sound/soundsettings.h index b5c8cee..7679c1e 100644 --- a/noncore/settings/sound/soundsettings.h +++ b/noncore/settings/sound/soundsettings.h @@ -39,2 +39,6 @@ private slots: void setVolume(int); + void setMic(int); + + void volumeChanged( bool muted ); + void micChanged( bool muted ); }; |