]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: colour.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
8bbe427f | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "colour.h" | |
13 | #endif | |
14 | ||
15 | #include "wx/gdicmn.h" | |
16 | ||
071a2d78 RR |
17 | #include <gdk/gdk.h> |
18 | #include <gdk/gdkprivate.h> | |
c801d85f KB |
19 | |
20 | //----------------------------------------------------------------------------- | |
21 | // wxColour | |
22 | //----------------------------------------------------------------------------- | |
23 | ||
24 | class wxColourRefData: public wxObjectRefData | |
25 | { | |
26 | public: | |
8bbe427f | 27 | |
68dda785 VZ |
28 | wxColourRefData(); |
29 | ~wxColourRefData(); | |
30 | void FreeColour(); | |
8bbe427f | 31 | |
c801d85f KB |
32 | GdkColor m_color; |
33 | GdkColormap *m_colormap; | |
34 | bool m_hasPixel; | |
8bbe427f | 35 | |
c801d85f KB |
36 | friend wxColour; |
37 | }; | |
38 | ||
68dda785 | 39 | wxColourRefData::wxColourRefData() |
c801d85f | 40 | { |
1ecc4d80 RR |
41 | m_color.red = 0; |
42 | m_color.green = 0; | |
43 | m_color.blue = 0; | |
44 | m_color.pixel = 0; | |
45 | m_colormap = (GdkColormap *) NULL; | |
46 | m_hasPixel = FALSE; | |
ff7b1510 | 47 | } |
c801d85f | 48 | |
68dda785 | 49 | wxColourRefData::~wxColourRefData() |
c801d85f | 50 | { |
1ecc4d80 | 51 | FreeColour(); |
ff7b1510 | 52 | } |
c801d85f | 53 | |
68dda785 | 54 | void wxColourRefData::FreeColour() |
c801d85f KB |
55 | { |
56 | // if (m_hasPixel) gdk_colors_free( m_colormap, &m_color, 1, 0 ); | |
ff7b1510 | 57 | } |
c801d85f KB |
58 | |
59 | //----------------------------------------------------------------------------- | |
60 | ||
61 | #define M_COLDATA ((wxColourRefData *)m_refData) | |
62 | ||
63 | #define SHIFT (8*(sizeof(short int)-sizeof(char))) | |
64 | ||
65 | IMPLEMENT_DYNAMIC_CLASS(wxColour,wxGDIObject) | |
66 | ||
68dda785 | 67 | wxColour::wxColour() |
c801d85f | 68 | { |
ff7b1510 | 69 | } |
c801d85f | 70 | |
4b5f3fe6 | 71 | wxColour::wxColour( unsigned char red, unsigned char green, unsigned char blue ) |
c801d85f | 72 | { |
1ecc4d80 RR |
73 | m_refData = new wxColourRefData(); |
74 | M_COLDATA->m_color.red = ((unsigned short)red) << SHIFT; | |
75 | M_COLDATA->m_color.green = ((unsigned short)green) << SHIFT; | |
76 | M_COLDATA->m_color.blue = ((unsigned short)blue) << SHIFT; | |
77 | M_COLDATA->m_color.pixel = 0; | |
ff7b1510 | 78 | } |
8bbe427f | 79 | |
68dda785 | 80 | void wxColour::InitFromName( const wxString &colourName ) |
c801d85f | 81 | { |
1ecc4d80 RR |
82 | wxNode *node = (wxNode *) NULL; |
83 | if ( (wxTheColourDatabase) && (node = wxTheColourDatabase->Find(colourName)) ) | |
c801d85f | 84 | { |
1ecc4d80 RR |
85 | wxColour *col = (wxColour*)node->Data(); |
86 | UnRef(); | |
87 | if (col) Ref( *col ); | |
88 | } | |
89 | else | |
90 | { | |
91 | m_refData = new wxColourRefData(); | |
93c5dd39 | 92 | if (!gdk_color_parse( colourName.mb_str(), &M_COLDATA->m_color )) |
1ecc4d80 | 93 | { |
223d09f6 | 94 | wxFAIL_MSG( wxT("wxColour: couldn't find colour") ); |
1ecc4d80 RR |
95 | |
96 | delete m_refData; | |
97 | m_refData = (wxObjectRefData *) NULL; | |
98 | } | |
ff7b1510 | 99 | } |
ff7b1510 | 100 | } |
c801d85f KB |
101 | |
102 | wxColour::wxColour( const wxColour& col ) | |
8bbe427f | 103 | { |
1ecc4d80 | 104 | Ref( col ); |
ff7b1510 | 105 | } |
c801d85f | 106 | |
68dda785 | 107 | wxColour::~wxColour() |
c801d85f | 108 | { |
ff7b1510 | 109 | } |
c801d85f | 110 | |
8bbe427f VZ |
111 | wxColour& wxColour::operator = ( const wxColour& col ) |
112 | { | |
1ecc4d80 RR |
113 | if (*this == col) return (*this); |
114 | Ref( col ); | |
115 | return *this; | |
ff7b1510 | 116 | } |
c801d85f | 117 | |
33b64e6f | 118 | bool wxColour::operator == ( const wxColour& col ) const |
8bbe427f | 119 | { |
2b62ab35 RR |
120 | if (m_refData == col.m_refData) return TRUE; |
121 | ||
122 | if (!m_refData) return FALSE; | |
123 | if (!col.m_refData) return FALSE; | |
124 | ||
125 | GdkColor *own = &(((wxColourRefData*)m_refData)->m_color); | |
126 | GdkColor *other = &(((wxColourRefData*)col.m_refData)->m_color); | |
127 | if (own->red != other->red) return FALSE; | |
128 | if (own->blue != other->blue) return FALSE; | |
129 | if (own->green != other->green) return FALSE; | |
130 | ||
131 | return TRUE; | |
ff7b1510 | 132 | } |
c801d85f | 133 | |
33b64e6f | 134 | bool wxColour::operator != ( const wxColour& col) const |
8bbe427f | 135 | { |
1ecc4d80 | 136 | return m_refData != col.m_refData; |
ff7b1510 | 137 | } |
c801d85f | 138 | |
4b5f3fe6 | 139 | void wxColour::Set( unsigned char red, unsigned char green, unsigned char blue ) |
c801d85f | 140 | { |
1ecc4d80 RR |
141 | UnRef(); |
142 | m_refData = new wxColourRefData(); | |
143 | M_COLDATA->m_color.red = ((unsigned short)red) << SHIFT; | |
144 | M_COLDATA->m_color.green = ((unsigned short)green) << SHIFT; | |
145 | M_COLDATA->m_color.blue = ((unsigned short)blue) << SHIFT; | |
146 | M_COLDATA->m_color.pixel = 0; | |
ff7b1510 | 147 | } |
c801d85f | 148 | |
68dda785 | 149 | unsigned char wxColour::Red() const |
c801d85f | 150 | { |
223d09f6 | 151 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); |
8bbe427f | 152 | |
1ecc4d80 | 153 | return (unsigned char)(M_COLDATA->m_color.red >> SHIFT); |
ff7b1510 | 154 | } |
c801d85f | 155 | |
68dda785 | 156 | unsigned char wxColour::Green() const |
c801d85f | 157 | { |
223d09f6 | 158 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); |
8bbe427f | 159 | |
1ecc4d80 | 160 | return (unsigned char)(M_COLDATA->m_color.green >> SHIFT); |
ff7b1510 | 161 | } |
c801d85f | 162 | |
68dda785 | 163 | unsigned char wxColour::Blue() const |
c801d85f | 164 | { |
223d09f6 | 165 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); |
8bbe427f | 166 | |
1ecc4d80 | 167 | return (unsigned char)(M_COLDATA->m_color.blue >> SHIFT); |
ff7b1510 | 168 | } |
c801d85f | 169 | |
68dda785 | 170 | bool wxColour::Ok() const |
c801d85f | 171 | { |
1ecc4d80 | 172 | return (m_refData != NULL); |
ff7b1510 | 173 | } |
c801d85f KB |
174 | |
175 | void wxColour::CalcPixel( GdkColormap *cmap ) | |
176 | { | |
1ecc4d80 | 177 | if (!Ok()) return; |
8bbe427f | 178 | |
1ecc4d80 | 179 | if ((M_COLDATA->m_hasPixel) && (M_COLDATA->m_colormap == cmap)) return; |
f234c60c | 180 | |
1ecc4d80 | 181 | M_COLDATA->FreeColour(); |
8bbe427f | 182 | |
f6fcbb63 RR |
183 | GdkColormapPrivate *private_colormap = (GdkColormapPrivate*) cmap; |
184 | if ((private_colormap->visual->type == GDK_VISUAL_GRAYSCALE) || | |
185 | (private_colormap->visual->type == GDK_VISUAL_PSEUDO_COLOR)) | |
01111366 | 186 | { |
f6fcbb63 RR |
187 | GdkColor *colors = cmap->colors; |
188 | int max = 3 * (65536); | |
189 | int index = -1; | |
8bbe427f | 190 | |
f6fcbb63 RR |
191 | for (int i = 0; i < cmap->size; i++) |
192 | { | |
193 | int rdiff = (M_COLDATA->m_color.red - colors[i].red); | |
194 | int gdiff = (M_COLDATA->m_color.green - colors[i].green); | |
195 | int bdiff = (M_COLDATA->m_color.blue - colors[i].blue); | |
196 | int sum = ABS (rdiff) + ABS (gdiff) + ABS (bdiff); | |
197 | if (sum < max) { index = i; max = sum; } | |
198 | } | |
199 | ||
200 | M_COLDATA->m_hasPixel = TRUE; | |
201 | M_COLDATA->m_color.pixel = index; | |
202 | } | |
1ecc4d80 RR |
203 | else |
204 | { | |
205 | M_COLDATA->m_hasPixel = gdk_color_alloc( cmap, &M_COLDATA->m_color ); | |
206 | } | |
8bbe427f | 207 | |
1ecc4d80 | 208 | M_COLDATA->m_colormap = cmap; |
ff7b1510 | 209 | } |
c801d85f | 210 | |
68dda785 | 211 | int wxColour::GetPixel() const |
c801d85f | 212 | { |
223d09f6 | 213 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); |
8bbe427f | 214 | |
1ecc4d80 | 215 | return M_COLDATA->m_color.pixel; |
ff7b1510 | 216 | } |
c801d85f | 217 | |
68dda785 | 218 | GdkColor *wxColour::GetColor() const |
c801d85f | 219 | { |
223d09f6 | 220 | wxCHECK_MSG( Ok(), (GdkColor *) NULL, wxT("invalid colour") ); |
8bbe427f | 221 | |
1ecc4d80 | 222 | return &M_COLDATA->m_color; |
ff7b1510 | 223 | } |
c801d85f KB |
224 | |
225 |