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
25 viewman = ViewMan::getInstance();
33 if (Video::getInstance()->getFormat() == Video::PAL)
35 setScreenPos(140, 170);
39 setScreenPos(130, 140);
42 setBackgroundColour(Colour::VIEWBACKGROUND);
44 setTitleBarColour(Colour::TITLEBARBACKGROUND);
46 sl.setSurface(surface);
47 sl.setSurfaceOffset(20, 40);
48 sl.setDimensions(170, 140);
50 setTitleText(tr("Welcome"));
51 sl.addOption(tr("1. Live TV"), 1, 1);
52 sl.addOption(tr("2. Radio"), 2, 0);
53 sl.addOption(tr("3. Recordings"), 3, 0);
54 sl.addOption(tr("4. Timers"), 4, 0);
55 sl.addOption(tr("5. Options"), 5, 0);
56 sl.addOption(tr("6. Reboot"), 6, 0);
58 jpeg.setSurface(surface);
59 jpeg.setSurfaceOffset(240, 60);
64 Timers::getInstance()->cancelTimer(this, 1);
71 jpeg.init("/vdr.jpg");
76 void VWelcome::drawClock()
78 // Blank the area first
79 rectangle(area.w - 60, 0, 60, 30, titleBarColour);
84 struct tm* tms = localtime(&t);
85 strftime(timeString, 19, "%H:%M", tms);
86 drawTextRJ(timeString, 450, 5, Colour::LIGHTTEXT);
88 time_t dt = 60 - (t % 60); // seconds to the next minute
89 if (dt == 0) dt = 60; // advance a whole minute if necessary
90 dt += t; // get a time_t value for it rather than using duration
91 // (so it will occur at the actual second and not second and a half)
93 Timers::getInstance()->setTimerT(this, 1, dt);
96 void VWelcome::timercall(int clientReference)
99 viewman->updateView(this, &clockRegion);
102 int VWelcome::handleCommand(int command)
111 viewman->updateView(this);
114 case Remote::DF_DOWN:
119 viewman->updateView(this);
149 Command::getInstance()->doReboot();
153 ULONG option = sl.getCurrentOptionData();
159 else if (option == 2)
164 else if (option == 3)
169 else if (option == 4)
174 else if (option == 5)
179 else if (option == 6)
181 Command::getInstance()->doReboot();
184 return 2; // never gets here
194 // case Remote::BACK:
203 void VWelcome::doChannelsList()
205 ChannelList* chanList = VDR::getInstance()->getChannelsList(VDR::VIDEO);
209 VChannelList* vchan = new VChannelList(VDR::VIDEO);
210 vchan->setList(chanList);
214 viewman->updateView(vchan);
218 Command::getInstance()->connectionLost();
222 void VWelcome::doRadioList()
224 ChannelList* chanList = VDR::getInstance()->getChannelsList(VDR::RADIO);
228 VChannelList* vchan = new VChannelList(VDR::RADIO);
229 vchan->setList(chanList);
233 viewman->updateView(vchan);
237 Command::getInstance()->connectionLost();
241 void VWelcome::doRecordingsList()
243 VRecordingList* vrec = new VRecordingList();
246 viewman->updateView(vrec);
250 Command::getInstance()->connectionLost();
254 void VWelcome::doTimersList()
256 VTimerList* vtl = new VTimerList();
258 viewman->updateView(vtl);
262 Command::getInstance()->connectionLost();
266 void VWelcome::doOptions()
268 VOptionsMenu* voptionsmenu = new VOptionsMenu();
269 voptionsmenu->draw();
270 viewman->add(voptionsmenu);
271 viewman->updateView(voptionsmenu);
274 void VWelcome::processMessage(Message* m)
276 if (m->message == Message::MOUSE_MOVE)
278 if (sl.mouseMove((m->parameter>>16)-getScreenX(),(m->parameter&0xFFFF)-getScreenY()))
281 viewman->updateView(this);
284 else if (m->message == Message::MOUSE_LBDOWN)
286 if (sl.mouseLBDOWN((m->parameter>>16)-getScreenX(),(m->parameter&0xFFFF)-getScreenY()))
288 ViewMan::getInstance()->handleCommand(Remote::OK); //simulate OK press