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 "vradiolive.h"
23 VRadioLive::VRadioLive(ChannelList* tchanList)
25 player = new PlayerRadio();
27 vdr = VDR::getInstance();
32 setBackgroundColour(Colour::VIEWBACKGROUND);
35 VRadioLive::~VRadioLive()
40 void VRadioLive::draw()
45 int VRadioLive::handleCommand(int command)
63 vdr->streamChannel((*chanList)[currentChannel]->number);
73 vdr->streamChannel((*chanList)[currentChannel]->number);
82 void VRadioLive::setChannel(UINT number)
84 currentChannel = channelIndexFromNumber(number);
85 vdr->streamChannel((*chanList)[currentChannel]->number);
89 void VRadioLive::upChannel()
91 if (currentChannel == (chanList->size() - 1)) return; // at the end
96 void VRadioLive::downChannel()
98 if (currentChannel == 0) return; // at the start
103 UINT VRadioLive::channelIndexFromNumber(int number)
105 for(UINT i = 0; i < chanList->size(); i++)
107 if ((*chanList)[i]->number == (UINT)number) return i;