summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/volumecontrol.cpp
blob: b3f5f8d3665615cb2302c859ef30b2c92912c6da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

#include <qpe/config.h>
#include "qpe/qcopenvelope_qws.h"

#include "volumecontrol.h"

int VolumeControl::volume() {
    Config cfg( "qpe" );
    cfg. setGroup( "Volume" );
    m_volumePerc = cfg. readNumEntry( "VolumePercent", 50 );
    
    return m_volumePerc;
}


void VolumeControl::setVolume( int volumePerc ) {
     Config cfg("qpe");
    cfg.setGroup("Volume");

    if ( volumePerc > 100 ) {
        volumePerc = 100;
    }
    if ( volumePerc < 0 ) {
        volumePerc = 0;
    }

    m_volumePerc = volumePerc;
    cfg.writeEntry("VolumePercent", volumePerc );
    QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false;
//    QCopEnvelope( "QPE/System", "setVolume(int,int)" ) << 0, volumePerc;
}


void VolumeControl::incVol( int ammount ) {
    int oldVol = volume();
    setVolume( oldVol + ammount);
}

void VolumeControl::decVol( int ammount ) {
     int oldVol = volume();
    setVolume( oldVol - ammount);
}


VolumeControl::VolumeControl( ) {
    volume();
}

VolumeControl::~VolumeControl() {
    QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false;
}

void VolumeControl::setMute(bool on) {
   QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << on;
}