diff options
| author | louis <louis.braun@gmx.de> | 2014-09-27 09:25:14 +0200 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2014-09-27 09:25:14 +0200 |
| commit | b0509b5182b6e0d04f05e6b3d5676b0d21f51966 (patch) | |
| tree | 22b302342f22843e0815eb5f516c85f1478cbf0b /displayvolume.h | |
| download | vdr-plugin-skindesigner-0.0.1.tar.gz vdr-plugin-skindesigner-0.0.1.tar.bz2 | |
initial commit version 0.0.10.0.1
Diffstat (limited to 'displayvolume.h')
| -rw-r--r-- | displayvolume.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/displayvolume.h b/displayvolume.h new file mode 100644 index 0000000..1bfc877 --- /dev/null +++ b/displayvolume.h @@ -0,0 +1,21 @@ +#ifndef __DISPLAYVOLUME_H +#define __DISPLAYVOLUME_H + +#include <vdr/skins.h> +#include "config.h" +#include "libtemplate/template.h" +#include "views/displayvolumeview.h" + +class cSDDisplayVolume : public cSkinDisplayVolume { +private: + cDisplayVolumeView *volumeView; + bool doOutput; + bool initial; +public: + cSDDisplayVolume(cTemplate *volumeTemplate); + virtual ~cSDDisplayVolume(); + virtual void SetVolume(int Current, int Total, bool Mute); + virtual void Flush(void); +}; + +#endif //__DISPLAYVOLUME_H
\ No newline at end of file |
