author | llornkcor <llornkcor> | 2002-08-16 12:22:46 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-08-16 12:22:46 (UTC) |
commit | 5144bf5607a246441f5b37dd0bbb9564017ce017 (patch) (unidiff) | |
tree | c6f29d27a14426562f7cfa622230cce5879bd3df /noncore | |
parent | 2ce537c4275c5071a85efae8e9862b5fd9ceb6ae (diff) | |
download | opie-5144bf5607a246441f5b37dd0bbb9564017ce017.zip opie-5144bf5607a246441f5b37dd0bbb9564017ce017.tar.gz opie-5144bf5607a246441f5b37dd0bbb9564017ce017.tar.bz2 |
added mute and changed qcop from volumeChange to setVolume
-rw-r--r-- | noncore/multimedia/opieplayer2/volumecontrol.cpp | 7 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/volumecontrol.h | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/volumecontrol.cpp b/noncore/multimedia/opieplayer2/volumecontrol.cpp index b8ec0df..219f63e 100644 --- a/noncore/multimedia/opieplayer2/volumecontrol.cpp +++ b/noncore/multimedia/opieplayer2/volumecontrol.cpp | |||
@@ -29,7 +29,8 @@ void VolumeControl::setVolume( int volumePerc ) { | |||
29 | 29 | ||
30 | m_volumePerc = volumePerc; | 30 | m_volumePerc = volumePerc; |
31 | cfg.writeEntry("VolumePercent", volumePerc ); | 31 | cfg.writeEntry("VolumePercent", volumePerc ); |
32 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false; | 32 | // QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false; |
33 | QCopEnvelope( "QPE/System", "setVolume(int,int)" ) << 0, volumePerc; | ||
33 | } | 34 | } |
34 | 35 | ||
35 | 36 | ||
@@ -52,7 +53,9 @@ VolumeControl::~VolumeControl() { | |||
52 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false; | 53 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false; |
53 | } | 54 | } |
54 | 55 | ||
55 | 56 | void VolumeControl::setMute(bool on) { | |
57 | QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << on; | ||
58 | } | ||
56 | 59 | ||
57 | 60 | ||
58 | 61 | ||
diff --git a/noncore/multimedia/opieplayer2/volumecontrol.h b/noncore/multimedia/opieplayer2/volumecontrol.h index 37be398..d0d34a2 100644 --- a/noncore/multimedia/opieplayer2/volumecontrol.h +++ b/noncore/multimedia/opieplayer2/volumecontrol.h | |||
@@ -35,6 +35,7 @@ public slots: | |||
35 | */ | 35 | */ |
36 | void setVolume( int volumePerc ); | 36 | void setVolume( int volumePerc ); |
37 | 37 | ||
38 | void setMute(bool); | ||
38 | 39 | ||
39 | 40 | ||
40 | private: | 41 | private: |