]> git.vomp.tv Git - vompclient.git/blob - vlivebanner.cc
Un-hardcoded all the colours
[vompclient.git] / vlivebanner.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 "vlivebanner.h"
22
23 VLiveBanner::VLiveBanner()
24 {
25   setScreenPos(130, 370);
26   setDimensions(120, 500);
27
28   setBackgroundColour(Colour::VIEWBACKGROUND);
29   setTitleBarOn(1);
30   setTitleText("The channel name");
31   setTitleBarColour(Colour::TITLEBARBACKGROUND);
32
33   sl.setScreenPos(screenX, screenY + 30);
34   sl.setDimensions(height - 60, width);
35 }
36
37 VLiveBanner::~VLiveBanner()
38 {
39 }
40
41 void VLiveBanner::draw()
42 {
43   int success = VDR::getInstance()->getChannelSchedule(1);
44
45   if (!success)
46   {
47     sl.addOption("No channel data available", 1);
48   }
49   else
50   {
51     sl.addOption("This Programme", 1);
52     sl.addOption("The Next Programme", 0);
53     sl.addOption("The Programme after that", 0);
54   }
55
56   View::draw();
57   sl.draw();
58   rectangle(0, height - 30, width, 30, titleBarColour);
59 }
60
61 int VLiveBanner::handleCommand(int command)
62 {
63   switch (command)
64   {
65     case Remote::OK:
66     case Remote::BACK:
67     {
68       return 4;
69     }
70     case Remote::UP:
71     {
72       sl.up();
73       sl.draw();
74
75       show();
76       return 2;
77     }
78     case Remote::DOWN:
79     {
80       sl.down();
81       sl.draw();
82
83       show();
84       return 2;
85     }
86   }
87
88   return 1;
89 }