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 "vserverselect.h"
23 VServerSelect::VServerSelect(vector<VDRServer>& servers, void* treplyTo)
25 // I tried the whole passing using a reference here, but
26 // the program segfaulted when settitletext tried to new
27 // a char array. so now we have the messy dereferencing...
28 // anyway, now it doesn't use a object wide reference.
31 if (Video::getInstance()->getFormat() == Video::PAL)
33 setScreenPos(220, 200);
37 setScreenPos(210, 150);
40 setBackgroundColour(Colour::VIEWBACKGROUND);
42 setTitleBarColour(Colour::TITLEBARBACKGROUND);
43 setTitleText(tr("Choose a VDR server"));
45 sl.setSurface(surface);
46 sl.setSurfaceOffset(10, 30 + 5);
47 sl.setDimensions(area.w - 20, area.h - 30 - 15);
49 sl.addOption(servers[0].name, 0, 1);
50 for(UINT k = 1; k < servers.size(); k++)
52 sl.addOption(servers[k].name, 0, 0);
58 VServerSelect::~VServerSelect()
62 void VServerSelect::draw()
68 int VServerSelect::handleCommand(int command)
77 ViewMan::getInstance()->updateView(this);
85 ViewMan::getInstance()->updateView(this);
90 Message* m = new Message(); // Question/Answer mech. Better being messages
92 m->message = Message::SERVER_SELECTED;
93 m->parameter = sl.getCurrentOption();
94 Command::getInstance()->postMessageNoLock(m);