]> git.vomp.tv Git - vompclient.git/blob - vserverselect.cc
Options view files added, new remote type supported
[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   if (Video::getInstance()->getFormat() == Video::PAL)
31   {
32     setScreenPos(220, 200);
33   }
34   else
35   {
36     setScreenPos(210, 150);
37   }
38   setDimensions(200, 300);
39   setBackgroundColour(Colour::VIEWBACKGROUND);
40   setTitleBarOn(1);
41   setTitleBarColour(Colour::TITLEBARBACKGROUND);
42   setTitleText("Choose a VDR server");
43
44   sl.setScreenPos(screenX + 10, screenY + 30 + 5);
45   sl.setDimensions(height - 30 - 15, width - 20);
46
47   sl.addOption((*serverIPs)[0], 1);
48   for(UINT k = 1; k < serverIPs->size(); k++)
49   {
50     sl.addOption((*serverIPs)[k], 0);
51   }
52 }
53
54 VServerSelect::~VServerSelect()
55 {
56 }
57
58 void VServerSelect::draw()
59 {
60   View::draw();
61   sl.draw();
62 }
63
64 int VServerSelect::handleCommand(int command)
65 {
66   switch(command)
67   {
68     case Remote::DF_UP:
69     case Remote::UP:
70     {
71       sl.up();
72       sl.draw();
73       show();
74       return 2;
75     }
76     case Remote::DF_DOWN:
77     case Remote::DOWN:
78     {
79       sl.down();
80       sl.draw();
81       show();
82       return 2;
83     }
84     case Remote::OK:
85     {
86       Message* m = new Message();
87       m->to = parent;
88       m->message = Message::SERVER_SELECTED;
89       m->parameter = sl.getCurrentOption();
90       ViewMan::getInstance()->postMessage(m);
91       return 4;
92     }
93   }
94
95   return 1;
96 }