diff options
Diffstat (limited to 'kolf/kvolumecontrol.h')
-rw-r--r-- | kolf/kvolumecontrol.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/kolf/kvolumecontrol.h b/kolf/kvolumecontrol.h new file mode 100644 index 00000000..3f0306a8 --- /dev/null +++ b/kolf/kvolumecontrol.h @@ -0,0 +1,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 |