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