diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-05-03 14:15:21 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-05-03 14:15:21 +0200 |
commit | f161d1b2fe69d4fcfac37581fa60b5d9ce5ded11 (patch) | |
tree | ff65b9bcb3041e0733ebb1c59bac1203002c5903 /menuitems.h | |
parent | 34b3d467849d0e8192c9cfbd65a630973f602863 (diff) | |
download | vdr-f161d1b2fe69d4fcfac37581fa60b5d9ce5ded11.tar.gz vdr-f161d1b2fe69d4fcfac37581fa60b5d9ce5ded11.tar.bz2 |
OSD sizes in percent; automatic update of OSD size
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/menuitems.h b/menuitems.h index 8d68b7d4..48324757 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 2.1 2008/04/12 12:03:59 kls Exp $ + * $Id: menuitems.h 2.2 2009/05/03 12:50:34 kls Exp $ */ #ifndef __MENUITEMS_H @@ -64,6 +64,18 @@ public: virtual eOSState ProcessKey(eKeys Key); }; +class cMenuEditPrcItem : public cMenuEditItem { +protected: + double *value; + double min, max; + int decimals; + int factor; + virtual void Set(void); +public: + cMenuEditPrcItem(const char *Name, double *Value, double Min = 0.0, double Max = 1.0, int Decimals = 0); + virtual eOSState ProcessKey(eKeys Key); + }; + class cMenuEditChrItem : public cMenuEditItem { private: char *value; |