summaryrefslogtreecommitdiff
path: root/views/displayreplayview.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2014-10-28 18:09:10 +0100
committerlouis <louis.braun@gmx.de>2014-10-28 18:09:10 +0100
commita7b3b7333f8f1688940608e35832b9475e57dfe0 (patch)
treeeb6a3b17d6261cc026f19094175d637e6e5f4130 /views/displayreplayview.h
parentabd8fd8db042ae860bb5346ce886ee961a847ae6 (diff)
downloadvdr-plugin-skindesigner-a7b3b7333f8f1688940608e35832b9475e57dfe0.tar.gz
vdr-plugin-skindesigner-a7b3b7333f8f1688940608e35832b9475e57dfe0.tar.bz2
added 'active' Token for cutting marks
Diffstat (limited to 'views/displayreplayview.h')
-rw-r--r--views/displayreplayview.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/views/displayreplayview.h b/views/displayreplayview.h
index 750ec95..e637214 100644
--- a/views/displayreplayview.h
+++ b/views/displayreplayview.h
@@ -7,6 +7,11 @@
class cDisplayReplayView : public cView {
private:
cString lastDate;
+ int numMarksLast;
+ int *lastMarks;
+ int markActive;
+ bool MarksChanged(const cMarks *marks, int current);
+ void RememberMarks(const cMarks *marks);
virtual void Action(void);
public:
cDisplayReplayView(cTemplateView *tmplView);
@@ -20,7 +25,7 @@ public:
void DrawCurrent(const char *current);
void DrawTotal(const char *total);
void DrawProgressBar(int current, int total);
- void DrawMarks(const cMarks *marks, int total);
+ void DrawMarks(const cMarks *marks, int current, int total);
void DrawControlIcons(bool play, bool forward, int speed, bool modeOnly);
void DrawJump(const char *jump);
void DrawMessage(eMessageType type, const char *text);