summaryrefslogtreecommitdiff
path: root/menuitems.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-01-19 14:59:46 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2003-01-19 14:59:46 +0100
commit413b22dc636dbd78f7acd0dd816cde933fe6a78d (patch)
treeecedee45e76a4de00196c01743160910ce3a6403 /menuitems.h
parentc1dcc3e5a597f6feb470c83577e4684a188dff1a (diff)
downloadvdr-413b22dc636dbd78f7acd0dd816cde933fe6a78d.tar.gz
vdr-413b22dc636dbd78f7acd0dd816cde933fe6a78d.tar.bz2
Implemented actual user input for CAM enquiry menus
Diffstat (limited to 'menuitems.h')
-rw-r--r--menuitems.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/menuitems.h b/menuitems.h
index 4752d4bb..f9b2ff30 100644
--- a/menuitems.h
+++ b/menuitems.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menuitems.h 1.4 2002/08/15 11:28:26 kls Exp $
+ * $Id: menuitems.h 1.5 2003/01/12 15:06:23 kls Exp $
*/
#ifndef __MENUITEMS_H
@@ -42,6 +42,17 @@ public:
cMenuEditBoolItem(const char *Name, int *Value, const char *FalseString = NULL, const char *TrueString = NULL);
};
+class cMenuEditNumItem : public cMenuEditItem {
+protected:
+ char *value;
+ int length;
+ bool blind;
+ virtual void Set(void);
+public:
+ cMenuEditNumItem(const char *Name, char *Value, int Length, bool Blind = false);
+ virtual eOSState ProcessKey(eKeys Key);
+ };
+
class cMenuEditChrItem : public cMenuEditItem {
private:
char *value;