diff options
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - * $Id: setup.h,v 1.1 2004/06/07 19:09:20 lordjaxom Exp $ + * $Id: setup.h,v 1.2 2004/06/12 19:16:11 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_SETUP_H @@ -8,13 +8,26 @@ #include "common.h" #include <vdr/menuitems.h> +class cText2SkinSetup { +public: + cText2SkinSetup(void); + + bool SetupParse(const char *Name, const char *Value); + + int MaxCacheFill; +}; + class cText2SkinSetupPage: public cMenuSetupPage { +private: + cText2SkinSetup mData; + public: cText2SkinSetupPage(void); virtual ~cText2SkinSetupPage(); - virtual void Store(void) {} - virtual eOSState ProcessKey(eKeys Key); + virtual void Store(void); }; +extern cText2SkinSetup Text2SkinSetup; + #endif // VDR_TEXT2SKIN_SETUP_H |