2014-09-27 09:25:14 +02:00
|
|
|
#ifndef __DISPLAYREPLAYVIEW_H
|
|
|
|
#define __DISPLAYREPLAYVIEW_H
|
|
|
|
|
|
|
|
#include "../libtemplate/template.h"
|
|
|
|
#include "view.h"
|
2014-11-29 11:23:54 +01:00
|
|
|
#include "displayreplayonpauseview.h"
|
2014-09-27 09:25:14 +02:00
|
|
|
|
2015-01-06 06:07:48 +01:00
|
|
|
class cDisplayReplayView : public cView, public cViewHelpers {
|
2014-09-27 09:25:14 +02:00
|
|
|
private:
|
2014-11-29 11:23:54 +01:00
|
|
|
cDisplayReplayOnPauseView *onPauseView;
|
2014-10-28 18:09:10 +01:00
|
|
|
int numMarksLast;
|
|
|
|
int *lastMarks;
|
|
|
|
int markActive;
|
|
|
|
bool MarksChanged(const cMarks *marks, int current);
|
|
|
|
void RememberMarks(const cMarks *marks);
|
2014-09-27 09:25:14 +02:00
|
|
|
virtual void Action(void);
|
|
|
|
public:
|
|
|
|
cDisplayReplayView(cTemplateView *tmplView);
|
|
|
|
virtual ~cDisplayReplayView();
|
|
|
|
bool createOsd(void);
|
|
|
|
void DrawBackground(bool modeOnly);
|
2015-01-06 06:07:48 +01:00
|
|
|
void DrawDate(void);
|
|
|
|
void DrawTime(void);
|
2014-09-27 09:25:14 +02:00
|
|
|
void DrawTitle(const cRecording *recording);
|
2015-02-01 14:45:33 +01:00
|
|
|
void DrawTitle(const char *title);
|
2014-09-27 09:25:14 +02:00
|
|
|
void DrawRecordingInformation(const cRecording *recording);
|
|
|
|
void DrawScraperContent(const cRecording *recording);
|
|
|
|
void DrawCurrent(const char *current);
|
|
|
|
void DrawTotal(const char *total);
|
|
|
|
void DrawProgressBar(int current, int total);
|
2014-10-28 18:09:10 +01:00
|
|
|
void DrawMarks(const cMarks *marks, int current, int total);
|
2014-09-27 09:25:14 +02:00
|
|
|
void DrawControlIcons(bool play, bool forward, int speed, bool modeOnly);
|
|
|
|
void DrawJump(const char *jump);
|
|
|
|
void DrawMessage(eMessageType type, const char *text);
|
2014-11-29 11:23:54 +01:00
|
|
|
void DrawOnPause(bool modeOnly);
|
|
|
|
void ClearOnPause(void);
|
2015-01-22 18:08:12 +01:00
|
|
|
void DelayOnPause(void);
|
2015-01-06 06:23:36 +01:00
|
|
|
void DrawCustomTokens(void);
|
2014-09-27 09:25:14 +02:00
|
|
|
void DoFadeIn(void) { Start(); };
|
|
|
|
void Flush(void) { DoFlush(); };
|
|
|
|
};
|
|
|
|
#endif //__DISPLAYREPLAYVIEW_H
|