]> git.vomp.tv Git - vompclient.git/blob - vserverselect.cc
Switch over to updateView rather than show, EPG tweaks
[vompclient.git] / vserverselect.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
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.
10
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.
15
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
19 */
20
21 #include "vserverselect.h"
22
23 VServerSelect::VServerSelect(std::vector<char*>* serverIPs)
24 {
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.
29
30   create(300, 200);
31   if (Video::getInstance()->getFormat() == Video::PAL)
32   {
33     setScreenPos(220, 200);
34   }
35   else
36   {
37     setScreenPos(210, 150);
38   }
39
40   setBackgroundColour(Colour::VIEWBACKGROUND);
41   setTitleBarOn(1);
42   setTitleBarColour(Colour::TITLEBARBACKGROUND);
43   setTitleText(tr("Choose a VDR server"));
44
45   sl.setSurface(surface);
46   sl.setSurfaceOffset(10, 30 + 5);
47   sl.setDimensions(area.w - 20, area.h - 30 - 15);
48
49   sl.addOption((*serverIPs)[0], 1);
50   for(UINT k = 1; k < serverIPs->size(); k++)
51   {
52     sl.addOption((*serverIPs)[k], 0);
53   }
54 }
55
56 VServerSelect::~VServerSelect()
57 {
58 }
59
60 void VServerSelect::draw()
61 {
62   View::draw();
63   sl.draw();
64 }
65
66 int VServerSelect::handleCommand(int command)
67 {
68   switch(command)
69   {
70     case Remote::DF_UP:
71     case Remote::UP:
72     {
73       sl.up();
74       sl.draw();
75       ViewMan::getInstance()->updateView(this);
76       return 2;
77     }
78     case Remote::DF_DOWN:
79     case Remote::DOWN:
80     {
81       sl.down();
82       sl.draw();
83       ViewMan::getInstance()->updateView(this);
84       return 2;
85     }
86     case Remote::OK:
87     {
88       Message* m = new Message();
89       m->to = parent;
90       m->message = Message::SERVER_SELECTED;
91       m->parameter = sl.getCurrentOption();
92       ViewMan::getInstance()->postMessage(m);
93       return 4;
94     }
95   }
96
97   return 1;
98 }