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 "vchannellist.h"
23 VChannelList::VChannelList(ULONG type)
25 if (Video::getInstance()->getFormat() == Video::PAL)
34 setDimensions(570, 420);
36 setBackgroundColour(Colour::VIEWBACKGROUND);
39 if (type == VDR::VIDEO)
41 setTitleText("Channels");
43 else if (type == VDR::RADIO)
45 setTitleText("Radio Stations");
47 setTitleBarColour(Colour::TITLEBARBACKGROUND);
49 sl.setScreenPos(screenX + 10, screenY + 30 + 5);
50 sl.setDimensions(width - 20, height - 30 - 15 - 30);
53 VChannelList::~VChannelList()
57 for (UINT i = 0; i < chanList->size(); i++)
59 delete (*chanList)[i];
67 void VChannelList::setList(ChannelList* tlist)
80 for (UINT i = 0; i < chanList->size(); i++)
82 chan = (*chanList)[i];
83 sprintf(str, "%lu\t%s", chan->number, chan->name);
84 chan->index = sl.addOption(str, first);
90 void VChannelList::draw()
95 // Put the status stuff at the bottom
99 w.nextSymbol = WSymbol::UP;
100 w.setScreenPos(screenX + 20, screenY + 385);
103 w.nextSymbol = WSymbol::DOWN;
104 w.setScreenPos(screenX + 50, screenY + 385);
107 w.nextSymbol = WSymbol::SKIPBACK;
108 w.setScreenPos(screenX + 85, screenY + 385);
111 w.nextSymbol = WSymbol::SKIPFORWARD;
112 w.setScreenPos(screenX + 115, screenY + 385);
115 w.nextSymbol = WSymbol::PLAY;
116 w.setScreenPos(screenX + 150, screenY + 385);
122 void VChannelList::doShowingBar()
124 int topOption = sl.getTopOption() + 1;
125 if (sl.getNumOptions() == 0) topOption = 0;
128 sprintf(showing, "%i to %i of %i", topOption, sl.getBottomOption(), sl.getNumOptions());
130 b.setScreenPos(screenX + 220, screenY + 385);
131 b.setDimensions(160, 25);
132 b.fillColour(Colour::VIEWBACKGROUND);
133 b.drawText(showing, 0, 0, Colour::LIGHTTEXT);
136 int VChannelList::handleCommand(int command)
150 case Remote::DF_DOWN:
160 case Remote::SKIPBACK:
169 case Remote::SKIPFORWARD:
181 Channel* chan = NULL;
184 int currentOption = sl.getCurrentOption();
186 for (UINT i = 0; i < chanList->size(); i++)
188 chan = (*chanList)[i];
189 if (currentOption == chan->index) break;
193 if (chan == NULL) return 2;
195 if (chan->type == VDR::RADIO) return 2;
197 VVideoLive* v = new VVideoLive(chanList, chan->type);
198 v->setChannel(chan->number);
200 ViewMan::getInstance()->addNoLock(v);
211 // stop command getting to any more views