diff options
Diffstat (limited to 'displayreplay.h')
-rw-r--r-- | displayreplay.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/displayreplay.h b/displayreplay.h new file mode 100644 index 0000000..a63c8d8 --- /dev/null +++ b/displayreplay.h @@ -0,0 +1,34 @@ +#ifndef __DISPLAYREPLAY_H +#define __DISPLAYREPLAY_H + +#include <vdr/skins.h> +#include <vdr/thread.h> +#include "config.h" +#include "libtemplate/template.h" +#include "views/displayreplayview.h" + +class cSDDisplayReplay : public cSkinDisplayReplay { +private: + cDisplayReplayView *replayView; + bool initial; + bool doOutput; + bool modeOnly; + int numMarksLast; + int *lastMarks; + bool MarksChanged(void); + void RememberMarks(void); +public: + cSDDisplayReplay(cTemplate *replayTemplate, bool ModeOnly); + virtual ~cSDDisplayReplay(); + virtual void SetRecording(const cRecording *Recording); + virtual void SetTitle(const char *Title) {}; + virtual void SetMode(bool Play, bool Forward, int Speed); + virtual void SetProgress(int Current, int Total); + virtual void SetCurrent(const char *Current); + virtual void SetTotal(const char *Total); + virtual void SetJump(const char *Jump); + virtual void SetMessage(eMessageType Type, const char *Text); + virtual void Flush(void); +}; + +#endif //__DISPLAYREPLAY_H
\ No newline at end of file |