summaryrefslogtreecommitdiff
path: root/status.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-11 18:10:39 +0000
committerlordjaxom <lordjaxom>2005-01-11 18:10:39 +0000
commitae9409091e078744ecc57468e8438990f6dea625 (patch)
tree375d50390d477f93aae63fca0acb108fc1c20818 /status.h
parentcbaec15384bf747fd64cdbc08b3925cdbed4a31a (diff)
downloadvdr-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.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/status.h b/status.h
index 6ab5fee..643ebd8 100644
--- a/status.h
+++ b/status.h
@@ -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;