]>
Commit | Line | Data |
---|---|---|
83df96d6 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: colour.cpp | |
3 | // Purpose: wxColour class | |
3cd0b8c5 | 4 | // Author: Julian Smart, Robert Roebling |
83df96d6 JS |
5 | // Modified by: |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
3cd0b8c5 | 8 | // Copyright: (c) Julian Smart, Robert Roebling |
83df96d6 JS |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
83df96d6 JS |
12 | |
13 | #ifdef __GNUG__ | |
14 | #pragma implementation "colour.h" | |
15 | #endif | |
16 | ||
17 | #include "wx/gdicmn.h" | |
887dd52f | 18 | #include "wx/app.h" |
83df96d6 | 19 | |
7266b672 | 20 | #include "wx/x11/private.h" |
83df96d6 | 21 | |
3cd0b8c5 RR |
22 | //----------------------------------------------------------------------------- |
23 | // wxColour | |
24 | //----------------------------------------------------------------------------- | |
83df96d6 | 25 | |
3cd0b8c5 | 26 | class wxColourRefData: public wxObjectRefData |
83df96d6 | 27 | { |
3cd0b8c5 RR |
28 | public: |
29 | wxColourRefData() | |
30 | { | |
31 | m_color.red = 0; | |
32 | m_color.green = 0; | |
33 | m_color.blue = 0; | |
34 | m_color.pixel = 0; | |
35 | m_colormap = (WXColormap *) NULL; | |
36 | m_hasPixel = FALSE; | |
37 | } | |
38 | ||
39 | ~wxColourRefData() | |
40 | { | |
41 | FreeColour(); | |
42 | } | |
83df96d6 | 43 | |
3cd0b8c5 RR |
44 | bool operator == (const wxColourRefData& data) const |
45 | { | |
46 | return (m_colormap == data.m_colormap && | |
47 | m_hasPixel == data.m_hasPixel && | |
48 | m_color.red == data.m_color.red && | |
49 | m_color.green == data.m_color.green && | |
50 | m_color.blue == data.m_color.blue && | |
51 | m_color.pixel == data.m_color.pixel); | |
52 | } | |
53 | ||
54 | void FreeColour(); | |
55 | void AllocColour( WXColormap cmap ); | |
56 | ||
57 | XColor m_color; | |
58 | WXColormap m_colormap; | |
59 | bool m_hasPixel; | |
60 | ||
61 | friend class wxColour; | |
62 | ||
63 | // reference counter for systems with <= 8-Bit display | |
64 | static unsigned short colMapAllocCounter[ 256 ]; | |
65 | }; | |
66 | ||
67 | unsigned short wxColourRefData::colMapAllocCounter[ 256 ] = | |
68 | { | |
69 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
70 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
71 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
72 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
73 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
74 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
75 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
76 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
77 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
78 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
79 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
80 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
81 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 | |
82 | }; | |
83 | ||
84 | void wxColourRefData::FreeColour() | |
83df96d6 | 85 | { |
ac014163 | 86 | #if 0 |
3cd0b8c5 RR |
87 | if (m_colormap) |
88 | { | |
89 | Colormap cm = (Colormap)m_colormap; | |
90 | ||
3cd0b8c5 RR |
91 | GdkColormapPrivate *private_colormap = (GdkColormapPrivate*) m_colormap; |
92 | if ((private_colormap->visual->type == GDK_VISUAL_GRAYSCALE) || | |
93 | (private_colormap->visual->type == GDK_VISUAL_PSEUDO_COLOR)) | |
94 | { | |
95 | int idx = m_color.pixel; | |
96 | colMapAllocCounter[ idx ] = colMapAllocCounter[ idx ] - 1; | |
97 | ||
98 | if (colMapAllocCounter[ idx ] == 0) | |
99 | gdk_colormap_free_colors( m_colormap, &m_color, 1 ); | |
100 | } | |
3cd0b8c5 | 101 | } |
ac014163 | 102 | #endif |
83df96d6 JS |
103 | } |
104 | ||
3cd0b8c5 | 105 | void wxColourRefData::AllocColour( WXColormap cmap ) |
83df96d6 | 106 | { |
3cd0b8c5 RR |
107 | if (m_hasPixel && (m_colormap == cmap)) |
108 | return; | |
109 | ||
110 | FreeColour(); | |
111 | ||
112 | #if 0 | |
113 | GdkColormapPrivate *private_colormap = (GdkColormapPrivate*) cmap; | |
114 | if ((private_colormap->visual->type == GDK_VISUAL_GRAYSCALE) || | |
115 | (private_colormap->visual->type == GDK_VISUAL_PSEUDO_COLOR)) | |
116 | { | |
117 | m_hasPixel = gdk_colormap_alloc_color( cmap, &m_color, FALSE, TRUE ); | |
118 | int idx = m_color.pixel; | |
119 | colMapAllocCounter[ idx ] = colMapAllocCounter[ idx ] + 1; | |
120 | } | |
121 | else | |
122 | #endif | |
123 | { | |
124 | m_hasPixel = XAllocColor( wxGlobalDisplay(), (Colormap) cmap, &m_color ); | |
125 | } | |
126 | m_colormap = cmap; | |
83df96d6 JS |
127 | } |
128 | ||
3cd0b8c5 RR |
129 | //----------------------------------------------------------------------------- |
130 | ||
131 | #define M_COLDATA ((wxColourRefData *)m_refData) | |
132 | ||
133 | #define SHIFT (8*(sizeof(short int)-sizeof(char))) | |
134 | ||
135 | IMPLEMENT_DYNAMIC_CLASS(wxColour,wxGDIObject) | |
136 | ||
137 | wxColour::wxColour( unsigned char red, unsigned char green, unsigned char blue ) | |
83df96d6 | 138 | { |
3cd0b8c5 RR |
139 | m_refData = new wxColourRefData(); |
140 | M_COLDATA->m_color.red = ((unsigned short)red) << SHIFT; | |
141 | M_COLDATA->m_color.green = ((unsigned short)green) << SHIFT; | |
142 | M_COLDATA->m_color.blue = ((unsigned short)blue) << SHIFT; | |
143 | M_COLDATA->m_color.pixel = 0; | |
83df96d6 JS |
144 | } |
145 | ||
3cd0b8c5 | 146 | void wxColour::InitFromName( const wxString &colourName ) |
83df96d6 | 147 | { |
3cd0b8c5 RR |
148 | wxNode *node = (wxNode *) NULL; |
149 | if ( (wxTheColourDatabase) && (node = wxTheColourDatabase->Find(colourName)) ) | |
83df96d6 | 150 | { |
3cd0b8c5 RR |
151 | wxColour *col = (wxColour*)node->Data(); |
152 | UnRef(); | |
153 | if (col) Ref( *col ); | |
83df96d6 JS |
154 | } |
155 | else | |
156 | { | |
3cd0b8c5 | 157 | m_refData = new wxColourRefData(); |
887dd52f RR |
158 | |
159 | M_COLDATA->m_colormap = wxTheApp->GetMainColormap( wxGlobalDisplay() ); | |
160 | ||
3cd0b8c5 RR |
161 | if (!XParseColor( wxGlobalDisplay(), (Colormap) M_COLDATA->m_colormap, colourName.mb_str(), &M_COLDATA->m_color )) |
162 | { | |
163 | // VZ: asserts are good in general but this one is triggered by | |
164 | // calling wxColourDatabase::FindColour() with an | |
165 | // unrecognized colour name and this can't be avoided from the | |
166 | // user code, so don't give it here | |
167 | // | |
168 | // a better solution would be to changed code in FindColour() | |
169 | ||
170 | //wxFAIL_MSG( wxT("wxColour: couldn't find colour") ); | |
171 | ||
172 | delete m_refData; | |
173 | m_refData = (wxObjectRefData *) NULL; | |
174 | } | |
83df96d6 JS |
175 | } |
176 | } | |
177 | ||
3cd0b8c5 | 178 | wxColour::~wxColour() |
83df96d6 JS |
179 | { |
180 | } | |
181 | ||
3cd0b8c5 | 182 | bool wxColour::operator == ( const wxColour& col ) const |
83df96d6 | 183 | { |
3cd0b8c5 RR |
184 | if (m_refData == col.m_refData) return TRUE; |
185 | ||
186 | if (!m_refData || !col.m_refData) return FALSE; | |
187 | ||
188 | XColor *own = &(((wxColourRefData*)m_refData)->m_color); | |
189 | XColor *other = &(((wxColourRefData*)col.m_refData)->m_color); | |
190 | if (own->red != other->red) return FALSE; | |
191 | if (own->blue != other->blue) return FALSE; | |
192 | if (own->green != other->green) return FALSE; | |
193 | ||
194 | return TRUE; | |
83df96d6 JS |
195 | } |
196 | ||
3cd0b8c5 RR |
197 | wxObjectRefData *wxColour::CreateRefData() const |
198 | { | |
199 | return new wxColourRefData; | |
200 | } | |
83df96d6 | 201 | |
3cd0b8c5 RR |
202 | wxObjectRefData *wxColour::CloneRefData(const wxObjectRefData *data) const |
203 | { | |
204 | return new wxColourRefData(*(wxColourRefData *)data); | |
205 | } | |
83df96d6 | 206 | |
3cd0b8c5 | 207 | void wxColour::Set( unsigned char red, unsigned char green, unsigned char blue ) |
83df96d6 | 208 | { |
3cd0b8c5 | 209 | AllocExclusive(); |
83df96d6 | 210 | |
3cd0b8c5 RR |
211 | m_refData = new wxColourRefData(); |
212 | M_COLDATA->m_color.red = ((unsigned short)red) << SHIFT; | |
213 | M_COLDATA->m_color.green = ((unsigned short)green) << SHIFT; | |
214 | M_COLDATA->m_color.blue = ((unsigned short)blue) << SHIFT; | |
215 | M_COLDATA->m_color.pixel = 0; | |
83df96d6 JS |
216 | } |
217 | ||
3cd0b8c5 RR |
218 | unsigned char wxColour::Red() const |
219 | { | |
220 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); | |
221 | ||
222 | return (unsigned char)(M_COLDATA->m_color.red >> SHIFT); | |
223 | } | |
224 | ||
225 | unsigned char wxColour::Green() const | |
226 | { | |
227 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); | |
228 | ||
229 | return (unsigned char)(M_COLDATA->m_color.green >> SHIFT); | |
230 | } | |
231 | ||
232 | unsigned char wxColour::Blue() const | |
233 | { | |
234 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); | |
235 | ||
236 | return (unsigned char)(M_COLDATA->m_color.blue >> SHIFT); | |
237 | } | |
238 | ||
239 | void wxColour::CalcPixel( WXColormap cmap ) | |
240 | { | |
887dd52f RR |
241 | wxCHECK_RET( Ok(), wxT("invalid colour") ); |
242 | ||
243 | wxCHECK_RET( cmap, wxT("invalid colormap") ); | |
3cd0b8c5 RR |
244 | |
245 | M_COLDATA->AllocColour( cmap ); | |
246 | } | |
247 | ||
248 | unsigned long wxColour::GetPixel() const | |
249 | { | |
250 | wxCHECK_MSG( Ok(), 0, wxT("invalid colour") ); | |
251 | ||
252 | return M_COLDATA->m_color.pixel; | |
253 | } | |
254 | ||
255 | WXColor *wxColour::GetColor() const | |
256 | { | |
257 | wxCHECK_MSG( Ok(), (WXColor *) NULL, wxT("invalid colour") ); | |
258 | ||
259 | return (WXColor*) &M_COLDATA->m_color; | |
83df96d6 | 260 | } |