summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-03-09 17:11:49 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-03-09 17:11:49 +0100
commitd5c01bbe5a4de6861f523450121c6f4c00539561 (patch)
treefb01623822bce89a12e4b4828d4f729e8dba0b16 /menu.h
parentcb90e9b8dc05164c5a3f1b4550003a2a55409144 (diff)
downloadvdr-d5c01bbe5a4de6861f523450121c6f4c00539561.tar.gz
vdr-d5c01bbe5a4de6861f523450121c6f4c00539561.tar.bz2
Implemented OSD for Volume and Mute
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/menu.h b/menu.h
index fc0302ec..a5ea0e12 100644
--- a/menu.h
+++ b/menu.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 1.38 2002/03/08 15:46:36 kls Exp $
+ * $Id: menu.h 1.39 2002/03/09 15:54:24 kls Exp $
*/
#ifndef _MENU_H
@@ -41,6 +41,19 @@ public:
virtual eOSState ProcessKey(eKeys Key);
};
+class cDisplayVolume : public cOsdBase {
+private:
+ int timeout;
+ static cDisplayVolume *displayVolume;
+ void Show(void);
+ cDisplayVolume(void);
+public:
+ virtual ~cDisplayVolume();
+ static cDisplayVolume *Create(void);
+ static void Process(eKeys Key);
+ eOSState ProcessKey(eKeys Key);
+ };
+
class cMenuRecordingItem;
class cMenuRecordings : public cOsdMenu {