2 Copyright 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef VVIDEOLIVETV_H
22 #define VVIDEOLIVETV_H
33 #include "wselectlist.h"
34 #include "timerreceiver.h"
36 #include "wprogressbar.h"
46 class VVideoLiveTV : public Boxx, public TimerReceiver
49 VVideoLiveTV(ChannelList* chanList, ULONG initialChannelNumber, VChannelList* vchannelList);
51 int handleCommand(int command);
52 void processMessage(Message* m);
56 bool channelChange(UCHAR changeType, UINT newData);
57 // changeType = INDEX = (newData is a channel index in the list)
58 // = NUMBER = (newData is a real channel number)
59 // = OFFSET = (newData is UP or DOWN)
61 const static UCHAR INDEX = 1;
62 const static UCHAR NUMBER = 2;
63 const static UCHAR OFFSET = 3;
64 const static UCHAR PREVIOUS = 4;
65 const static UCHAR UP = 1;
66 const static UCHAR DOWN = 2;
68 void timercall(int ref);
76 ChannelList* chanList;
77 VChannelList* vchannelList;
84 UINT currentChannelIndex;
85 UINT previousChannelIndex;
91 void doLeftRight(bool right);
92 void doUpDown(bool down);
93 void doChanUpDown(int which); // UP or DOWN
94 void doKey(int command);
97 void doAudioSelector();
99 UINT upChannel(UINT index);
100 UINT downChannel(UINT index);
101 void toggleChopSides();
103 void displayOSD(bool newNowNextData);
107 void setNowNextData();
108 void setSummaryData();
109 void doAudioChannelSymbol();
110 void showUnavailable();
121 WTextbox osdChanName;
131 WSymbol sAspectRatio;
132 WProgressBar bufferBar;
133 WSymbol sAudioChannels;
134 WTextbox textUnavailable;
137 WTextbox textSummary;
138 Boxx summaryBlackLine;
140 Region osdSummaryRegion;