diff options
author | lordjaxom <lordjaxom> | 2004-12-17 19:56:21 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-17 19:56:21 +0000 |
commit | ac920774dee48c0a85b3c6fc8c6785c1a5dd8f6d (patch) | |
tree | d572f41490e8949a5e7323bf94b59c4034438afe /display.h | |
parent | b8f29c674cc0ccca207123342c1344bbd0f13796 (diff) | |
download | vdr-plugin-text2skin-1.0-pre5.tar.gz vdr-plugin-text2skin-1.0-pre5.tar.bz2 |
1.0-pre5v1.0-pre5
Diffstat (limited to 'display.h')
-rw-r--r-- | display.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* - * $Id: display.h,v 1.7 2004/12/14 20:02:31 lordjaxom Exp $ + * $Id: display.h,v 1.8 2004/12/17 19:56:16 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_SKIN_H @@ -23,6 +23,10 @@ private: const cEvent *mFollowing; eMessageType mType; std::string mText; + std::string mButtonRed; + std::string mButtonGreen; + std::string mButtonYellow; + std::string mButtonBlue; protected: virtual cxType GetTokenData(const txToken &Token); @@ -71,6 +75,10 @@ private: std::string mPrompt; eMessageType mType; std::string mText; + std::string mButtonRed; + std::string mButtonGreen; + std::string mButtonYellow; + std::string mButtonBlue; protected: virtual cxType GetTokenData(const txToken &Token); @@ -87,6 +95,7 @@ public: virtual void SetTotal(const char *Total); virtual void SetJump(const char *Jump); virtual void SetMessage(eMessageType Type, const char *Text); + virtual void SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue); virtual void Flush(void) { cText2SkinRender::Flush(); } }; |