]> git.vomp.tv Git - vompclient.git/blob - colour.cc
*** empty log message ***
[vompclient.git] / colour.cc
1 /*
2     Copyright 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 "colour.h"
22
23 /*
24 Real colours
25 */
26 Colour Colour::BLACK(0, 0, 0);
27 Colour Colour::RED(255, 0, 0);
28 Colour Colour::GREEN(0, 255, 0);
29 Colour Colour::VIDEOBLUE(0, 0, 150);
30 Colour Colour::VIEWBACKGROUND(0, 0, 100);
31 Colour Colour::TITLEBARBACKGROUND(0, 0, 200);
32 Colour Colour::SELECTHIGHLIGHT(240, 250, 80);
33 Colour Colour::LIGHTTEXT(255, 255, 255);
34 Colour Colour::DARKTEXT(0, 0, 100);
35 Colour Colour::DANGER(200, 0, 0);
36 Colour Colour::BUTTONBACKGROUND(0, 0, 150);
37 Colour Colour::PROGRAMMEB(80, 80, 240); // two colours used as alterating backgrounds for individual programmes in EPG
38 Colour Colour::PROGRAMMEA(40, 40, 120); // TODO fit epg style (colours) in with rest of application
39 Colour Colour::NOPROGRAMME(180, 180, 180); // no programme details colour
40
41
42 /*
43 Silly colours
44
45 Colour Colour::VIDEOBLUE(250, 0, 0);
46 Colour Colour::VIEWBACKGROUND(100, 0, 100);
47 Colour Colour::TITLEBARBACKGROUND(100, 0, 200);
48 Colour Colour::SELECTHIGHLIGHT(240, 250, 180);
49 Colour Colour::LIGHTTEXT(255, 0, 255);
50 Colour Colour::DARKTEXT(0, 0, 255);
51 Colour Colour::DANGER(200, 200, 0);
52 Colour Colour::BUTTONBACKGROUND(255, 255, 255);
53 */