diff options
author | lordjaxom <lordjaxom> | 2005-01-11 18:10:39 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-11 18:10:39 +0000 |
commit | ae9409091e078744ecc57468e8438990f6dea625 (patch) | |
tree | 375d50390d477f93aae63fca0acb108fc1c20818 /status.h | |
parent | cbaec15384bf747fd64cdbc08b3925cdbed4a31a (diff) | |
download | vdr-plugin-text2skin-ae9409091e078744ecc57468e8438990f6dea625.tar.gz vdr-plugin-text2skin-ae9409091e078744ecc57468e8438990f6dea625.tar.bz2 |
- implemented ReplayShuffle and ReplayLoop items
- moved OsdClear() for cosmetic reasons
Diffstat (limited to 'status.h')
-rw-r--r-- | status.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* - * $Id: status.h,v 1.3 2005/01/02 16:54:41 lordjaxom Exp $ + * $Id: status.h,v 1.4 2005/01/11 18:10:39 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_STATUS_H @@ -37,6 +37,8 @@ private: cText2SkinRender *mRender; eReplayMode mReplayMode; + bool mReplayIsLoop; + bool mReplayIsShuffle; tRecordings mRecordings; uint mCurrentRecording; uint mNextRecording; @@ -53,6 +55,8 @@ public: void SetRender(cText2SkinRender *Render); cxType GetTokenData(const txToken &Token); + + eReplayMode ReplayMode(void) const { return mReplayMode; } }; extern cText2SkinStatus Text2SkinStatus; |