diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-01-27 14:35:54 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-01-27 14:35:54 +0100 |
commit | d0af2f90e75ba5b87542ff3ad0a6fb7b960d1e97 (patch) | |
tree | 7059b1853dca128451bedad070125478568ddb6e /menuitems.h | |
parent | f8274a9a9f45d69114803cf47c339f54ba5d7b9e (diff) | |
download | vdr-d0af2f90e75ba5b87542ff3ad0a6fb7b960d1e97.tar.gz vdr-d0af2f90e75ba5b87542ff3ad0a6fb7b960d1e97.tar.bz2 |
Implemented handling of DVB-S2
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/menuitems.h b/menuitems.h index 21890a3d..0fe4713c 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.22 2007/11/03 14:59:47 kls Exp $ + * $Id: menuitems.h 1.23 2008/01/26 15:52:53 kls Exp $ */ #ifndef __MENUITEMS_H @@ -159,6 +159,17 @@ public: virtual eOSState ProcessKey(eKeys Key); }; +class cMenuEditMapItem : public cMenuEditItem { +protected: + int *value; + const tChannelParameterMap *map; + const char *zeroString; + virtual void Set(void); +public: + cMenuEditMapItem(const char *Name, int *Value, const tChannelParameterMap *Map, const char *ZeroString = NULL); + virtual eOSState ProcessKey(eKeys Key); + }; + class cPlugin; class cMenuSetupPage : public cOsdMenu { |