diff options
author | lordjaxom <lordjaxom> | 2004-06-05 18:06:22 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-05 18:06:22 +0000 |
commit | 6094765d94e4caaf0813039dff826b731f277753 (patch) | |
tree | fed79334167f26d5a81a6cae9be3f1341375a36f /text2skin.c | |
parent | e0c2ee1d37c0f213f22a04df71710bebe3526f85 (diff) | |
download | vdr-plugin-text2skin-6094765d94e4caaf0813039dff826b731f277753.tar.gz vdr-plugin-text2skin-6094765d94e4caaf0813039dff826b731f277753.tar.bz2 |
- added scrollable texts and "SymbolScrollUp" and "SymbolScrollDown"v0.0.1
- added "MenuText", "MenuEventTitle", "MenuEventShortText",
"MenuEventDescription", "MenuEventTime", "MenuRecording",
"SymbolEventRunning", "SymbolEventTimer" and "SymbolEventVPS"
- implemented image caching
- added english and german README
- removed some workarounds, and added a patch to vdr to the tree (will be
included in 1.3.10)
- fixed two bugs when displaying replay symbols
- implemented tabbed texts in menu
Diffstat (limited to 'text2skin.c')
-rw-r--r-- | text2skin.c | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/text2skin.c b/text2skin.c index 68602d2..bd52294 100644 --- a/text2skin.c +++ b/text2skin.c @@ -3,26 +3,15 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: text2skin.c,v 1.9 2004/06/02 19:55:55 lordjaxom Exp $ + * $Id: text2skin.c,v 1.10 2004/06/05 16:52:44 lordjaxom Exp $ */ +#include "text2skin.h" #include "loader.h" -#include <vdr/plugin.h> - -static const char *VERSION = "0.0.1-rc4"; -static const char *DESCRIPTION = "Loader for text-based skins"; - -class cText2SkinPlugin : public cPlugin { -private: -public: - cText2SkinPlugin(void); - virtual ~cText2SkinPlugin(); - virtual const char *Version(void) { return VERSION; } - virtual const char *Description(void) { return DESCRIPTION; } - virtual bool Start(void); - virtual cMenuSetupPage *SetupMenu(void); - virtual bool SetupParse(const char *Name, const char *Value); - }; + +const char *cText2SkinPlugin::VERSION = "0.0.1"; +const char *cText2SkinPlugin::THEMEVERSION = "0.0.1"; +const char *cText2SkinPlugin::DESCRIPTION = "Loader for text-based skins"; cText2SkinPlugin::cText2SkinPlugin(void) { |