diff options
author | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
commit | e0de96fc7168daeaf414fb6196e08969468427d2 (patch) | |
tree | de7f2dfb83796a7c77e5600a23b8b6b26f284796 /setup.h | |
parent | 6094765d94e4caaf0813039dff826b731f277753 (diff) | |
download | vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.gz vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.bz2 |
- fixed Timebar which sometimes displayed something beyond 100%v0.0.2
- fixed scrolling in EPG detail display
- added "MenuEventEndTime", "MenuEventVPSTime" and "MenuEventDate"
- added "DateTimeF" and "MenuEventDateTimeF" for free formattable dates
- added parameter format that holds the format string for the above items
- implemented setup menu to flush image cache
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +/* + * $Id: setup.h,v 1.1 2004/06/07 19:09:20 lordjaxom Exp $ + */ + +#ifndef VDR_TEXT2SKIN_SETUP_H +#define VDR_TEXT2SKIN_SETUP_H + +#include "common.h" +#include <vdr/menuitems.h> + +class cText2SkinSetupPage: public cMenuSetupPage { +public: + cText2SkinSetupPage(void); + virtual ~cText2SkinSetupPage(); + + virtual void Store(void) {} + virtual eOSState ProcessKey(eKeys Key); +}; + +#endif // VDR_TEXT2SKIN_SETUP_H |