diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-22 12:40:35 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-22 14:52:00 +0200 |
commit | 65a100dbfb2fe98ac796b51aafe2280dbde04fc2 (patch) | |
tree | 4b1bbe186400bcf87afe693af27e1abd3e0124cb /displayvolume.h | |
parent | 027961e2ce7f20a9db208c6e774efad225e5628a (diff) | |
download | skin-lcarsng-65a100dbfb2fe98ac796b51aafe2280dbde04fc2.tar.gz skin-lcarsng-65a100dbfb2fe98ac796b51aafe2280dbde04fc2.tar.bz2 |
Separate displayvolume
Diffstat (limited to 'displayvolume.h')
-rw-r--r-- | displayvolume.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/displayvolume.h b/displayvolume.h new file mode 100644 index 0000000..d77c7b1 --- /dev/null +++ b/displayvolume.h @@ -0,0 +1,18 @@ +#include "lcarsng.h" +#include <vdr/font.h> + +// --- cLCARSNGDisplayVolume ----------------------------------------------- + +class cLCARSNGDisplayVolume : public cSkinDisplayVolume { +private: + cOsd *osd; + int x0, x1, x2, x3, x4, x5, x6, x7; + int y0, y1; + tColor frameColor; + int mute; +public: + cLCARSNGDisplayVolume(void); + virtual ~cLCARSNGDisplayVolume(); + virtual void SetVolume(int Current, int Total, bool Mute); + virtual void Flush(void); + }; |