diff options
author | lordjaxom <lordjaxom> | 2004-05-23 19:29:12 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-05-23 19:29:12 +0000 |
commit | 377ef2b18a6499a1ef0e540a74c4e54317efee85 (patch) | |
tree | 211342fe01d961a9fd621dce45b2672c520c49c5 /render.h | |
parent | d309055320433e5fd899de53dc688d679609e6db (diff) | |
download | vdr-plugin-text2skin-377ef2b18a6499a1ef0e540a74c4e54317efee85.tar.gz vdr-plugin-text2skin-377ef2b18a6499a1ef0e540a74c4e54317efee85.tar.bz2 |
- added "ChannelSmall" section (apparently VDR doesn't use it)v0.0.1-pre2
- added replay and message items
- added a german translation of the SKINS document (incomplete)
Diffstat (limited to 'render.h')
-rw-r--r-- | render.h | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -1,14 +1,14 @@ /* - * $Id: render.h,v 1.1.1.1 2004/05/23 00:08:03 lordjaxom Exp $ + * $Id: render.h,v 1.3 2004/05/23 19:20:26 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_RENDER_H #define VDR_TEXT2SKIN_RENDER_H +#include <vector> #include <vdr/osd.h> #include <vdr/skins.h> #include "data.h" -#include <vector> using std::vector; @@ -46,6 +46,8 @@ private: int mReplaySpeed; int mReplayCurrent; int mReplayTotal; + const char *mReplayCurrentText; + const char *mReplayTotalText; const char *mReplayJump; // message display @@ -86,6 +88,13 @@ protected: void DisplayMute(cText2SkinItem *Item); void DisplayProgressbar(cText2SkinItem *Item); void DisplayReplayTitle(cText2SkinItem *Item); + void DisplayReplayCurrent(cText2SkinItem *Item); + void DisplayReplayTotal(cText2SkinItem *Item); + void DisplayReplayJump(cText2SkinItem *Item); + void DisplayMessageStatus(cText2SkinItem *Item); + void DisplayMessageInfo(cText2SkinItem *Item); + void DisplayMessageWarning(cText2SkinItem *Item); + void DisplayMessageError(cText2SkinItem *Item); void DisplayMenuItems(cText2SkinItem *Item); public: |