author | llornkcor <llornkcor> | 2002-06-16 18:56:32 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-16 18:56:32 (UTC) |
commit | b1d106338eca0c28573e2fc83c63c8ed3c76a239 (patch) (side-by-side diff) | |
tree | fce10ba80c7cac1052e7226f62b750188b92f5eb | |
parent | 0a92e4f6ac0f3f288dbd0b83489366eb0760975a (diff) | |
download | opie-b1d106338eca0c28573e2fc83c63c8ed3c76a239.zip opie-b1d106338eca0c28573e2fc83c63c8ed3c76a239.tar.gz opie-b1d106338eca0c28573e2fc83c63c8ed3c76a239.tar.bz2 |
made mute config
-rw-r--r-- | core/applets/volumeapplet/volume.cpp | 7 | ||||
-rw-r--r-- | core/applets/volumeapplet/volumeappletimpl.cpp | 12 |
2 files changed, 17 insertions, 2 deletions
diff --git a/core/applets/volumeapplet/volume.cpp b/core/applets/volumeapplet/volume.cpp index 069f8ab..19e71c5 100644 --- a/core/applets/volumeapplet/volume.cpp +++ b/core/applets/volumeapplet/volume.cpp @@ -332,2 +332,9 @@ void VolumeApplet::mute( bool toggled ) writeSystemVolume(); + Config cfg("qpe"); + cfg.setGroup("Volume"); + if(muted) + cfg.writeEntry("Mute", "TRUE"); + else + cfg.writeEntry("Mute", "FALSE"); + cfg.write(); } diff --git a/core/applets/volumeapplet/volumeappletimpl.cpp b/core/applets/volumeapplet/volumeappletimpl.cpp index fb2b79f..943e71a 100644 --- a/core/applets/volumeapplet/volumeappletimpl.cpp +++ b/core/applets/volumeapplet/volumeappletimpl.cpp @@ -22,3 +22,3 @@ #include <qpe/qcopenvelope_qws.h> - +#include <qpe/config.h> @@ -38,3 +38,11 @@ QWidget *VolumeAppletImpl::applet( QWidget *parent ) volume = new VolumeApplet( parent ); - QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << TRUE; //mute + + Config cfg("qpe"); + cfg.setGroup("Volume"); + QString foo = cfg.readEntry("Mute","TRUE"); + bool muted; + if(foo.find("TRUE",0,TRUE) != -1) + muted = TRUE; + else muted = FALSE; + QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << muted; //mute return volume; |