2 Copyright 2005 Brian Walton
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, see <https://www.gnu.org/licenses/>.
26 #include "messagequeue.h"
31 #include "wselectlist.h"
37 //#define WINDOW_WIDTH (150)
38 #define MINUTE_SCALE (3)
42 class VEpg : public Boxx, public MessageReceiver, public TimerReceiver
45 VEpg(MessageReceiver* parent, UINT currentChannel, ChannelList* tchanList);
47 static VEpg* getInstance();
50 int handleCommand(int command); // deal with commands (from remote control)
51 void draw(); // draw epg view
52 void processMessage(Message* m);
53 void timercall(int clientReference);
56 static VEpg* instance;
58 void setInfo(Event* event); // display details of selected programme
59 void drawgrid(); // redraws grid and select programme
61 void setCurrentChannel();
63 WSelectList chanListbox; // listbox to display available channels
64 WTextbox progTitle; // area to display time and title of selected programme
65 WTextbox progInfo; // area to display details of selected programme
66 EventList* eventList; // list of events (programmes) for a channel
67 Event thisEvent; // the selected event
68 time_t selTime; // current selection time
69 UINT e; // temp used to point to an event
70 ChannelList* chanList; // list of available channels
71 tm* epgtime; // selected time within epg
72 tm* Ltime; // time of LHS of epg view
73 time_t ltime; // time of LHS of epg view
74 time_t lastEnd; // end time of last painted cell - used to look for gaps in epg
76 std::vector<EventList*> eventLista;
79 void updateChanList();
80 void updateEventList();
81 void paintCell(Event* event, int yOffset, const DrawStyle& bg, const DrawStyle& fg);
82 time_t prevHour(time_t* t);
83 MessageReceiver* parent;
86 UINT currentChannelIndex;