diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-04-12 13:39:12 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-04-12 13:39:12 +0200 |
commit | e59c6ac433e50f76986331a3ff2e610e60ddf4b5 (patch) | |
tree | 9e8139ac41547046bfdb969243b775da464a5102 /menuitems.h | |
parent | 0b82b38533792023097a47371b594075cdfb44aa (diff) | |
download | vdr-e59c6ac433e50f76986331a3ff2e610e60ddf4b5.tar.gz vdr-e59c6ac433e50f76986331a3ff2e610e60ddf4b5.tar.bz2 |
Re-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 0170f9b5..8d68b7d4 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.25 2008/02/16 16:09:58 kls Exp $ + * $Id: menuitems.h 2.1 2008/04/12 12:03:59 kls Exp $ */ #ifndef __MENUITEMS_H @@ -160,6 +160,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 { |