diff options
author | lordjaxom <lordjaxom> | 2004-06-13 18:40:59 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-13 18:40:59 +0000 |
commit | 3d738f9c8a5d48bb22b3330c036b6887b0f9d6c1 (patch) | |
tree | 218f9b266dbde63a76caa8548108e1dccec4afc7 /setup.h | |
parent | c73c6b62067cef765a85dd2a19dcc7296b813b2c (diff) | |
download | vdr-plugin-text2skin-3d738f9c8a5d48bb22b3330c036b6887b0f9d6c1.tar.gz vdr-plugin-text2skin-3d738f9c8a5d48bb22b3330c036b6887b0f9d6c1.tar.bz2 |
- added parameter alpha for imagesv0.0.4
- added ReplayMode as Logo to display a replaylogo (normal, vcd, mp3, dvd, ...)
- added some german and finnish (thx to Rolf Ahrenberg) translations
- fixed VPSTime which was displayed although is was equal to the StartTime
- fixed MenuItems which displayed non-Text items periodically
- fixed calculation of the editable width in the main menu
- fixed animation delay (specified in 1/100th, used 1/1000th)
- flushing cache when entering a new display (now the cache basically holds
all items necessary in one display)
- removed "flush image cache" from setup menu
- added "max. cache size" to setup menu
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 |