summaryrefslogtreecommitdiff
path: root/displayvolume.h
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-07-22 12:40:35 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-07-22 14:52:00 +0200
commit65a100dbfb2fe98ac796b51aafe2280dbde04fc2 (patch)
tree4b1bbe186400bcf87afe693af27e1abd3e0124cb /displayvolume.h
parent027961e2ce7f20a9db208c6e774efad225e5628a (diff)
downloadskin-lcarsng-65a100dbfb2fe98ac796b51aafe2280dbde04fc2.tar.gz
skin-lcarsng-65a100dbfb2fe98ac796b51aafe2280dbde04fc2.tar.bz2
Separate displayvolume
Diffstat (limited to 'displayvolume.h')
-rw-r--r--displayvolume.h18
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);
+ };