]> git.vomp.tv Git - vompclient.git/blob - colour.h
Fix leak in picture handling of osdvector, add static fallback pictures, some default...
[vompclient.git] / colour.h
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef COLOUR_H
22 #define COLOUR_H
23
24 class Colour
25 {
26   public:
27     Colour()
28       { red = 0; green = 0; blue = 0; alpha = 255; }
29
30     Colour(int Tred, int Tgreen, int Tblue)
31       { red = Tred; green = Tgreen; blue = Tblue; alpha = 255; }
32
33     Colour(int Tred, int Tgreen, int Tblue, int Talpha)
34       { red = Tred; green = Tgreen; blue = Tblue; alpha = Talpha; }
35
36     Colour(unsigned int color)
37         {
38                 red = (color & 0x00ff0000)>>16;
39                 green = (color & 0x0000ff00)>>8;
40                 blue = (color & 0x000000ff);
41                 alpha = (color & 0xff000000)>>24;
42         }
43
44     void set(int Tred, int Tgreen, int Tblue)
45       { red = Tred; green = Tgreen; blue = Tblue; alpha = 255; }
46
47     void set(int Tred, int Tgreen, int Tblue, int Talpha)
48       { red = Tred; green = Tgreen; blue = Tblue; alpha = Talpha; }
49
50     inline unsigned long rgba() const
51     {
52       return (alpha << 24) | (red << 16) | (green << 8) | blue;
53     }
54
55     int red;
56     int green;
57     int blue;
58     int alpha;
59
60
61
62
63 };
64
65 // TODO move to seperate File
66 class DrawStyle: public Colour
67 {
68 public:
69         DrawStyle()
70     { red = 0; green = 0; blue = 0; alpha = 255; ft=Color;ct=Global; }
71
72         DrawStyle(int Tred, int Tgreen, int Tblue)
73     { red = Tred; green = Tgreen; blue = Tblue; alpha = 255 ;ft=Color;ct=Global;  }
74
75         DrawStyle(int Tred, int Tgreen, int Tblue, int Talpha)
76      { red = Tred; green = Tgreen; blue = Tblue; alpha = Talpha; ft=Color;ct=Global;}
77         DrawStyle(unsigned int color)
78         {
79                 red = (color & 0x00ff0000)>>16;
80                 green = (color & 0x0000ff00)>>8;
81                 blue = (color & 0x000000ff);
82                 alpha = (color & 0xff000000)>>24;
83                 ft=Color;ct=Global;
84         }
85
86         enum FillType {
87                         Color,
88                         GradientLinear,
89                         GradientRadial,
90         };
91         enum CoordType {
92                 Global,
93                 Local
94         };
95
96         enum FillType ft;
97         enum CoordType ct; //not implemented yet
98         float x1,y1,x2,y2,r; // Parameter for gradient either relative to object or to global coordinate system
99         int num_colors; //max is 4, min is 0
100         Colour grad_col[4];
101         float grad_pos[3]; //Last position is alway 1.0 and first 0.0
102
103     static DrawStyle BLACK;
104     static DrawStyle RED;
105     static DrawStyle GREEN;
106     static DrawStyle YELLOW;
107     static DrawStyle BLUE;
108     static DrawStyle GREY;
109     static DrawStyle DARKGREY;
110     static DrawStyle VIEWBACKGROUND;
111     static DrawStyle VIEWTRANSPARENTBACKGROUND;
112     static DrawStyle LIVETVSYMBOLS;
113     static DrawStyle PROGRESSBAR;
114     static DrawStyle OSDBACKGROUND;
115     static DrawStyle TABVIEWBACKGROUND;
116     static DrawStyle TITLEBARBACKGROUND;
117     static DrawStyle SELECTBACKGROUND;
118     static DrawStyle SELECTHIGHLIGHT;
119     static DrawStyle SELECTDARKHIGHLIGHT;
120     static DrawStyle LIGHTTEXT;
121     static DrawStyle DARKTEXT;
122     static DrawStyle DANGER;
123     static DrawStyle BUTTONBACKGROUND;
124     static DrawStyle PROGRAMMEA;
125     static DrawStyle PROGRAMMEB;
126     static DrawStyle NOPROGRAMME;
127     static DrawStyle WALLPAPER; // this one is special, if transparent it means picture
128
129 };
130
131 class SkinFactory {
132 public:
133         static int getNumberofSkins();
134         static const char* *getSkinNames();
135         static bool InitSkin(int n);
136 };
137
138 #endif