From d309055320433e5fd899de53dc688d679609e6db Mon Sep 17 00:00:00 2001 From: lordjaxom Date: Sun, 23 May 2004 00:35:46 +0000 Subject: - Initial revision. --- loader.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 loader.h (limited to 'loader.h') diff --git a/loader.h b/loader.h new file mode 100644 index 0000000..194f2fa --- /dev/null +++ b/loader.h @@ -0,0 +1,32 @@ +/* + * $Id: loader.h,v 1.1.1.1 2004/05/23 00:08:03 lordjaxom Exp $ + */ + +#ifndef VDR_TEXT2SKIN_LOADER_H +#define VDR_TEXT2SKIN_LOADER_H + +#include + +class cText2SkinData; + +class cText2SkinLoader: public cSkin { +private: + cText2SkinData *mData; + const char *mDescription; + +public: + static void Start(void); + static void Load(const char *Skin); + + cText2SkinLoader(cText2SkinData *Data, const char *Skin, const char *Description); + ~cText2SkinLoader(); + + virtual const char *Description(void) { return mDescription; }; + virtual cSkinDisplayChannel *DisplayChannel(bool WithInfo); + virtual cSkinDisplayMenu *DisplayMenu(void); + virtual cSkinDisplayReplay *DisplayReplay(bool ModeOnly); + virtual cSkinDisplayVolume *DisplayVolume(void); + virtual cSkinDisplayMessage *DisplayMessage(void); +}; + +#endif // VDR_TEXT2SKIN_LOADER_H -- cgit v1.2.3