mixeriface.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef MIXERIFACE_H
00021 #define MIXERIFACE_H
00022
00023 #include <dcopobject.h>
00024 #include <kdelibs_export.h>
00025
00026 class KDE_EXPORT MixerIface : public DCOPObject
00027 {
00028 K_DCOP
00029 k_dcop:
00030 virtual QString channelName() const = 0;
00031 virtual QString channelType() const = 0;
00032 virtual bool hasVolumeControl() const = 0;
00033 virtual float volume() const = 0;
00034 virtual bool setVolume( float volume ) = 0;
00035
00036 protected:
00037 MixerIface() : DCOPObject( "MixerIface" ) {}
00038 };
00039
00040 #endif // MIXERIFACE_H
00041
This file is part of the documentation for kdemm Library Version 3.4.2.