blob: 3f0306a820a58361ece4fc4c3948fbf48be7aa95 (
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
|
#ifndef KVOLUMECONTROL_H
#define KVOLUMECONTROL_H
#include <arts/kplayobject.h>
#include <arts/artsflow.h>
#include <kdebug.h>
#include <qobject.h>
class KVolumeControl : public QObject
{
Q_OBJECT
public:
KVolumeControl(Arts::SoundServerV2 server, KPlayObject *parent);
KVolumeControl(double vol, Arts::SoundServerV2 server, KPlayObject *parent);
~KVolumeControl();
void setVolume(double);
double volume(void);
void init(Arts::SoundServerV2 server);
private:
Arts::StereoVolumeControl volumeControl;
Arts::Synth_AMAN_PLAY manager;
};
#endif
|