2 Copyright 2004-2005 Chris Tallon
4 This file is part of VOMP.
6 VOMP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 VOMP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with VOMP; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "vvideorec.h"
23 VVideoRec::VVideoRec(Recording* rec)
25 player = new Player(Command::getInstance());
27 vdr = VDR::getInstance();
31 Video* video = Video::getInstance();
32 setDimensions(video->getScreenHeight(), video->getScreenWidth());
33 Colour transparent(0, 0, 0, 0);
34 setBackgroundColour(transparent);
37 VVideoRec::~VVideoRec()
42 void VVideoRec::draw()
47 void VVideoRec::go(ULLONG startPosition)
49 ULLONG recLength = vdr->streamRecording(myRec);
51 player->setLength(recLength);
52 player->setPosition(startPosition);
56 int VVideoRec::handleCommand(int command)
62 player->play(); // do resync
76 player->togglePause();
79 case Remote::SKIPFORWARD:
81 player->skipForward(60);
84 case Remote::SKIPBACK:
86 player->skipBackward(60);
91 player->toggleFastForward();
96 player->skipBackward(10);
101 player->skipForward(10);
104 // case Remote::REVERSE:
106 // player->toggleFastBackward();
116 case Remote::ZERO: player->jumpToPercent(0); return 2;
117 case Remote::ONE: player->jumpToPercent(10); return 2;
118 case Remote::TWO: player->jumpToPercent(20); return 2;
119 case Remote::THREE: player->jumpToPercent(30); return 2;
120 case Remote::FOUR: player->jumpToPercent(40); return 2;
121 case Remote::FIVE: player->jumpToPercent(50); return 2;
122 case Remote::SIX: player->jumpToPercent(60); return 2;
123 case Remote::SEVEN: player->jumpToPercent(70); return 2;
124 case Remote::EIGHT: player->jumpToPercent(80); return 2;
125 case Remote::NINE: player->jumpToPercent(90); return 2;