]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: gdicmn.cpp | |
3 | // Purpose: Common GDI classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
55d99c7a | 8 | // Copyright: (c) Julian Smart |
8bbe427f | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
c801d85f KB |
13 | #pragma implementation "gdicmn.h" |
14 | #endif | |
15 | ||
4dff3400 JJ |
16 | #ifdef __VMS |
17 | #define XtDisplay XTDISPLAY | |
18 | #endif | |
19 | ||
c801d85f KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
2432b92d | 27 | #include "wx/event.h" |
c801d85f KB |
28 | #include "wx/gdicmn.h" |
29 | #include "wx/brush.h" | |
30 | #include "wx/pen.h" | |
31 | #include "wx/bitmap.h" | |
32 | #include "wx/icon.h" | |
33 | #include "wx/cursor.h" | |
34 | #include "wx/font.h" | |
35 | #include "wx/palette.h" | |
46ccb510 | 36 | #include "wx/app.h" |
b0e0d661 | 37 | #include "wx/dc.h" |
b93d0c64 | 38 | #include "wx/utils.h" |
5100cabf | 39 | #include "wx/settings.h" |
222ed1d6 | 40 | #include "wx/hashmap.h" |
c801d85f | 41 | |
cb38104e | 42 | #include "wx/log.h" |
c801d85f KB |
43 | #include <string.h> |
44 | ||
2049ba38 | 45 | #ifdef __WXMSW__ |
9ed0d735 | 46 | #include "wx/msw/wrapwin.h" |
c801d85f KB |
47 | #endif |
48 | ||
46ccb510 | 49 | #ifdef __WXMOTIF__ |
338dd992 JJ |
50 | #ifdef __VMS__ |
51 | #pragma message disable nosimpint | |
52 | #endif | |
46ccb510 | 53 | #include <Xm/Xm.h> |
338dd992 JJ |
54 | #ifdef __VMS__ |
55 | #pragma message enable nosimpint | |
56 | #endif | |
46ccb510 JS |
57 | #endif |
58 | ||
7266b672 JS |
59 | #ifdef __WXX11__ |
60 | #include "X11/Xlib.h" | |
61 | #endif | |
62 | ||
99fd0d71 SC |
63 | #ifdef __WXMAC__ |
64 | #include "wx/mac/private.h" | |
e4a05ccd | 65 | #include "wx/mac/uma.h" |
99fd0d71 | 66 | #endif |
a23fd0e1 | 67 | |
cb73e600 SC |
68 | #if wxUSE_EXTENDED_RTTI |
69 | ||
70 | // wxPoint | |
71 | ||
72 | template<> void wxStringReadValue(const wxString &s , wxPoint &data ) | |
73 | { | |
c34e3c79 | 74 | wxSscanf(s, wxT("%d,%d"), &data.x , &data.y ) ; |
cb73e600 SC |
75 | } |
76 | ||
77 | template<> void wxStringWriteValue(wxString &s , const wxPoint &data ) | |
78 | { | |
c34e3c79 | 79 | s = wxString::Format(wxT("%d,%d"), data.x , data.y ) ; |
cb73e600 SC |
80 | } |
81 | ||
8805dbab | 82 | wxCUSTOM_TYPE_INFO(wxPoint, wxToStringConverter<wxPoint> , wxFromStringConverter<wxPoint>) |
cb73e600 SC |
83 | |
84 | template<> void wxStringReadValue(const wxString &s , wxSize &data ) | |
85 | { | |
c34e3c79 | 86 | wxSscanf(s, wxT("%d,%d"), &data.x , &data.y ) ; |
cb73e600 SC |
87 | } |
88 | ||
89 | template<> void wxStringWriteValue(wxString &s , const wxSize &data ) | |
90 | { | |
c34e3c79 | 91 | s = wxString::Format(wxT("%d,%d"), data.x , data.y ) ; |
cb73e600 SC |
92 | } |
93 | ||
8805dbab | 94 | wxCUSTOM_TYPE_INFO(wxSize, wxToStringConverter<wxSize> , wxFromStringConverter<wxSize>) |
cb73e600 SC |
95 | |
96 | #endif | |
97 | ||
45816ddd | 98 | IMPLEMENT_ABSTRACT_CLASS(wxDCBase, wxObject) |
c801d85f | 99 | |
d7a7546b | 100 | wxRect::wxRect(const wxPoint& point1, const wxPoint& point2) |
c801d85f | 101 | { |
d7a7546b VZ |
102 | x = point1.x; |
103 | y = point1.y; | |
104 | width = point2.x - point1.x; | |
105 | height = point2.y - point1.y; | |
8bbe427f | 106 | |
c801d85f KB |
107 | if (width < 0) |
108 | { | |
109 | width = -width; | |
d7a7546b | 110 | x = point2.x; |
c801d85f | 111 | } |
d7a7546b | 112 | width++; |
8bbe427f | 113 | |
c801d85f KB |
114 | if (height < 0) |
115 | { | |
116 | height = -height; | |
d7a7546b | 117 | y = point2.y; |
c801d85f | 118 | } |
d7a7546b | 119 | height++; |
c801d85f KB |
120 | } |
121 | ||
122 | wxRect::wxRect(const wxPoint& point, const wxSize& size) | |
123 | { | |
124 | x = point.x; y = point.y; | |
125 | width = size.x; height = size.y; | |
126 | } | |
127 | ||
a23fd0e1 | 128 | bool wxRect::operator==(const wxRect& rect) const |
c801d85f KB |
129 | { |
130 | return ((x == rect.x) && | |
131 | (y == rect.y) && | |
132 | (width == rect.width) && | |
133 | (height == rect.height)); | |
134 | } | |
135 | ||
45816ddd | 136 | wxRect& wxRect::operator += (const wxRect& rect) |
619d0528 | 137 | { |
45816ddd VZ |
138 | *this = (*this + rect); |
139 | return ( *this ) ; | |
dcb44466 JS |
140 | } |
141 | ||
142 | wxRect wxRect::operator + (const wxRect& rect) const | |
619d0528 | 143 | { |
45816ddd VZ |
144 | int x1 = wxMin(this->x, rect.x); |
145 | int y1 = wxMin(this->y, rect.y); | |
146 | int y2 = wxMax(y+height, rect.height+rect.y); | |
147 | int x2 = wxMax(x+width, rect.width+rect.x); | |
148 | return wxRect(x1, y1, x2-x1, y2-y1); | |
dcb44466 JS |
149 | } |
150 | ||
1e6feb95 VZ |
151 | wxRect& wxRect::Inflate(wxCoord dx, wxCoord dy) |
152 | { | |
153 | x -= dx; | |
154 | y -= dy; | |
155 | width += 2*dx; | |
156 | height += 2*dy; | |
157 | ||
158 | // check that we didn't make the rectangle invalid by accident (you almost | |
159 | // never want to have negative coords and never want negative size) | |
3379ed37 VZ |
160 | if ( x < 0 ) |
161 | x = 0; | |
162 | if ( y < 0 ) | |
163 | y = 0; | |
164 | ||
165 | // what else can we do? | |
166 | if ( width < 0 ) | |
167 | width = 0; | |
168 | if ( height < 0 ) | |
169 | height = 0; | |
1e6feb95 VZ |
170 | |
171 | return *this; | |
172 | } | |
173 | ||
dcb44466 JS |
174 | bool wxRect::Inside(int cx, int cy) const |
175 | { | |
45816ddd VZ |
176 | return ( (cx >= x) && (cy >= y) |
177 | && ((cy - y) < height) | |
178 | && ((cx - x) < width) | |
179 | ); | |
dcb44466 JS |
180 | } |
181 | ||
1e6feb95 VZ |
182 | wxRect& wxRect::Intersect(const wxRect& rect) |
183 | { | |
184 | int x2 = GetRight(), | |
185 | y2 = GetBottom(); | |
186 | ||
187 | if ( x < rect.x ) | |
188 | x = rect.x; | |
189 | if ( y < rect.y ) | |
190 | y = rect.y; | |
191 | if ( x2 > rect.GetRight() ) | |
192 | x2 = rect.GetRight(); | |
193 | if ( y2 > rect.GetBottom() ) | |
194 | y2 = rect.GetBottom(); | |
195 | ||
196 | width = x2 - x + 1; | |
197 | height = y2 - y + 1; | |
198 | ||
199 | if ( width <= 0 || height <= 0 ) | |
200 | { | |
201 | width = | |
202 | height = 0; | |
203 | } | |
204 | ||
205 | return *this; | |
206 | } | |
207 | ||
208 | bool wxRect::Intersects(const wxRect& rect) const | |
209 | { | |
210 | wxRect r = Intersect(rect); | |
211 | ||
212 | // if there is no intersection, both width and height are 0 | |
213 | return r.width != 0; | |
214 | } | |
215 | ||
c50f92d0 VZ |
216 | // ============================================================================ |
217 | // wxColourDatabase | |
218 | // ============================================================================ | |
219 | ||
220 | WX_DECLARE_STRING_HASH_MAP( wxColour *, wxStringToColourHashMap ); | |
221 | ||
222 | // ---------------------------------------------------------------------------- | |
223 | // wxColourDatabase ctor/dtor | |
224 | // ---------------------------------------------------------------------------- | |
222ed1d6 MB |
225 | |
226 | wxColourDatabase::wxColourDatabase () | |
c801d85f | 227 | { |
c50f92d0 VZ |
228 | // will be created on demand in Initialize() |
229 | m_map = NULL; | |
c801d85f KB |
230 | } |
231 | ||
6a6c0a8b | 232 | wxColourDatabase::~wxColourDatabase () |
c801d85f | 233 | { |
c50f92d0 VZ |
234 | if ( m_map ) |
235 | { | |
236 | WX_CLEAR_HASH_MAP(wxStringToColourHashMap, *m_map); | |
237 | ||
238 | delete m_map; | |
239 | } | |
222ed1d6 | 240 | |
19bf0c69 DW |
241 | #ifdef __WXPM__ |
242 | delete [] m_palTable; | |
243 | #endif | |
c801d85f KB |
244 | } |
245 | ||
246 | // Colour database stuff | |
c50f92d0 | 247 | void wxColourDatabase::Initialize() |
c801d85f | 248 | { |
c50f92d0 VZ |
249 | if ( m_map ) |
250 | { | |
251 | // already initialized | |
252 | return; | |
253 | } | |
254 | ||
255 | m_map = new wxStringToColourHashMap; | |
256 | ||
f6bcfd97 BP |
257 | static const struct wxColourDesc |
258 | { | |
259 | const wxChar *name; | |
260 | int r,g,b; | |
261 | } | |
262 | wxColourTable[] = | |
263 | { | |
5e2ab1ea | 264 | {wxT("AQUAMARINE"),112, 219, 147}, |
f6bcfd97 BP |
265 | {wxT("BLACK"),0, 0, 0}, |
266 | {wxT("BLUE"), 0, 0, 255}, | |
5e2ab1ea | 267 | {wxT("BLUE VIOLET"), 159, 95, 159}, |
f6bcfd97 | 268 | {wxT("BROWN"), 165, 42, 42}, |
5e2ab1ea VZ |
269 | {wxT("CADET BLUE"), 95, 159, 159}, |
270 | {wxT("CORAL"), 255, 127, 0}, | |
271 | {wxT("CORNFLOWER BLUE"), 66, 66, 111}, | |
f6bcfd97 | 272 | {wxT("CYAN"), 0, 255, 255}, |
5e2ab1ea VZ |
273 | {wxT("DARK GREY"), 47, 47, 47}, // ? |
274 | ||
275 | {wxT("DARK GREEN"), 47, 79, 47}, | |
276 | {wxT("DARK OLIVE GREEN"), 79, 79, 47}, | |
f6bcfd97 | 277 | {wxT("DARK ORCHID"), 153, 50, 204}, |
5e2ab1ea | 278 | {wxT("DARK SLATE BLUE"), 107, 35, 142}, |
f6bcfd97 | 279 | {wxT("DARK SLATE GREY"), 47, 79, 79}, |
5e2ab1ea VZ |
280 | {wxT("DARK TURQUOISE"), 112, 147, 219}, |
281 | {wxT("DIM GREY"), 84, 84, 84}, | |
282 | {wxT("FIREBRICK"), 142, 35, 35}, | |
283 | {wxT("FOREST GREEN"), 35, 142, 35}, | |
284 | {wxT("GOLD"), 204, 127, 50}, | |
285 | {wxT("GOLDENROD"), 219, 219, 112}, | |
286 | {wxT("GREY"), 128, 128, 128}, | |
f6bcfd97 | 287 | {wxT("GREEN"), 0, 255, 0}, |
5e2ab1ea VZ |
288 | {wxT("GREEN YELLOW"), 147, 219, 112}, |
289 | {wxT("INDIAN RED"), 79, 47, 47}, | |
290 | {wxT("KHAKI"), 159, 159, 95}, | |
291 | {wxT("LIGHT BLUE"), 191, 216, 216}, | |
292 | {wxT("LIGHT GREY"), 192, 192, 192}, | |
293 | {wxT("LIGHT STEEL BLUE"), 143, 143, 188}, | |
294 | {wxT("LIME GREEN"), 50, 204, 50}, | |
295 | {wxT("LIGHT MAGENTA"), 255, 0, 255}, | |
f6bcfd97 | 296 | {wxT("MAGENTA"), 255, 0, 255}, |
5e2ab1ea VZ |
297 | {wxT("MAROON"), 142, 35, 107}, |
298 | {wxT("MEDIUM AQUAMARINE"), 50, 204, 153}, | |
299 | {wxT("MEDIUM GREY"), 100, 100, 100}, | |
300 | {wxT("MEDIUM BLUE"), 50, 50, 204}, | |
301 | {wxT("MEDIUM FOREST GREEN"), 107, 142, 35}, | |
302 | {wxT("MEDIUM GOLDENROD"), 234, 234, 173}, | |
303 | {wxT("MEDIUM ORCHID"), 147, 112, 219}, | |
304 | {wxT("MEDIUM SEA GREEN"), 66, 111, 66}, | |
305 | {wxT("MEDIUM SLATE BLUE"), 127, 0, 255}, | |
306 | {wxT("MEDIUM SPRING GREEN"), 127, 255, 0}, | |
307 | {wxT("MEDIUM TURQUOISE"), 112, 219, 219}, | |
308 | {wxT("MEDIUM VIOLET RED"), 219, 112, 147}, | |
309 | {wxT("MIDNIGHT BLUE"), 47, 47, 79}, | |
310 | {wxT("NAVY"), 35, 35, 142}, | |
311 | {wxT("ORANGE"), 204, 50, 50}, | |
312 | {wxT("ORANGE RED"), 255, 0, 127}, | |
313 | {wxT("ORCHID"), 219, 112, 219}, | |
314 | {wxT("PALE GREEN"), 143, 188, 143}, | |
315 | {wxT("PINK"), 188, 143, 234}, | |
316 | {wxT("PLUM"), 234, 173, 234}, | |
317 | {wxT("PURPLE"), 176, 0, 255}, | |
f6bcfd97 | 318 | {wxT("RED"), 255, 0, 0}, |
5e2ab1ea VZ |
319 | {wxT("SALMON"), 111, 66, 66}, |
320 | {wxT("SEA GREEN"), 35, 142, 107}, | |
321 | {wxT("SIENNA"), 142, 107, 35}, | |
322 | {wxT("SKY BLUE"), 50, 153, 204}, | |
323 | {wxT("SLATE BLUE"), 0, 127, 255}, | |
f6bcfd97 | 324 | {wxT("SPRING GREEN"), 0, 255, 127}, |
5e2ab1ea VZ |
325 | {wxT("STEEL BLUE"), 35, 107, 142}, |
326 | {wxT("TAN"), 219, 147, 112}, | |
f6bcfd97 | 327 | {wxT("THISTLE"), 216, 191, 216}, |
5e2ab1ea VZ |
328 | {wxT("TURQUOISE"), 173, 234, 234}, |
329 | {wxT("VIOLET"), 79, 47, 79}, | |
330 | {wxT("VIOLET RED"), 204, 50, 153}, | |
331 | {wxT("WHEAT"), 216, 216, 191}, | |
f6bcfd97 BP |
332 | {wxT("WHITE"), 255, 255, 255}, |
333 | {wxT("YELLOW"), 255, 255, 0}, | |
aad6765c | 334 | {wxT("YELLOW GREEN"), 153, 204, 50} |
f6bcfd97 BP |
335 | }; |
336 | ||
c50f92d0 | 337 | size_t n; |
bf2c4b94 DW |
338 | |
339 | for ( n = 0; n < WXSIZEOF(wxColourTable); n++ ) | |
f6bcfd97 BP |
340 | { |
341 | const wxColourDesc& cc = wxColourTable[n]; | |
c50f92d0 | 342 | (*m_map)[cc.name] = new wxColour(cc.r, cc.g, cc.b); |
f6bcfd97 | 343 | } |
c50f92d0 | 344 | |
19bf0c69 DW |
345 | #ifdef __WXPM__ |
346 | m_palTable = new long[n]; | |
347 | for ( n = 0; n < WXSIZEOF(wxColourTable); n++ ) | |
348 | { | |
349 | const wxColourDesc& cc = wxColourTable[n]; | |
350 | m_palTable[n] = OS2RGB(cc.r,cc.g,cc.b); | |
351 | } | |
352 | m_nSize = n; | |
353 | #endif | |
c801d85f KB |
354 | } |
355 | ||
c50f92d0 VZ |
356 | // ---------------------------------------------------------------------------- |
357 | // wxColourDatabase operations | |
358 | // ---------------------------------------------------------------------------- | |
222ed1d6 | 359 | |
c50f92d0 | 360 | void wxColourDatabase::AddColour(const wxString& name, const wxColour& colour) |
222ed1d6 | 361 | { |
c50f92d0 | 362 | Initialize(); |
222ed1d6 | 363 | |
c50f92d0 VZ |
364 | // canonicalize the colour names before using them as keys: they should be |
365 | // in upper case | |
8f520a56 MB |
366 | wxString colName = name; |
367 | colName.MakeUpper(); | |
c50f92d0 VZ |
368 | |
369 | // ... and we also allow both grey/gray | |
370 | wxString colNameAlt = colName; | |
371 | if ( !colNameAlt.Replace(_T("GRAY"), _T("GREY")) ) | |
372 | { | |
373 | // but in this case it is not necessary so avoid extra search below | |
374 | colNameAlt.clear(); | |
375 | } | |
8f520a56 MB |
376 | |
377 | wxStringToColourHashMap::iterator it = m_map->find(colName); | |
c50f92d0 VZ |
378 | if ( it == m_map->end() && !colNameAlt.empty() ) |
379 | it = m_map->find(colNameAlt); | |
8f520a56 MB |
380 | if ( it != m_map->end() ) |
381 | { | |
c50f92d0 VZ |
382 | *(it->second) = colour; |
383 | } | |
384 | else // new colour | |
385 | { | |
386 | (*m_map)[name] = new wxColour(colour); | |
8f520a56 | 387 | } |
8f520a56 MB |
388 | } |
389 | ||
c50f92d0 | 390 | wxColour wxColourDatabase::Find(const wxString& colour) const |
c801d85f | 391 | { |
c50f92d0 VZ |
392 | wxColourDatabase * const self = wxConstCast(this, wxColourDatabase); |
393 | self->Initialize(); | |
394 | ||
395 | // first look among the existing colours | |
396 | ||
397 | // make the comparaison case insensitive and also match both grey and gray | |
f6bcfd97 BP |
398 | wxString colName = colour; |
399 | colName.MakeUpper(); | |
c50f92d0 VZ |
400 | wxString colNameAlt = colName; |
401 | if ( !colNameAlt.Replace(_T("GRAY"), _T("GREY")) ) | |
402 | colNameAlt.clear(); | |
f6bcfd97 | 403 | |
222ed1d6 | 404 | wxStringToColourHashMap::iterator it = m_map->find(colName); |
c50f92d0 VZ |
405 | if ( it == m_map->end() && !colNameAlt.empty() ) |
406 | it = m_map->find(colNameAlt); | |
222ed1d6 | 407 | if ( it != m_map->end() ) |
c50f92d0 | 408 | return *(it->second); |
34138703 | 409 | |
4e6b8309 VZ |
410 | // if we didn't find it, query the system, maybe it knows about it |
411 | #if defined(__WXGTK__) || defined(__X__) | |
412 | wxColour col = wxColour::CreateByName(colour); | |
8bbe427f | 413 | |
c50f92d0 VZ |
414 | if ( col.Ok() ) |
415 | { | |
416 | // cache it | |
417 | self->AddColour(colour, col); | |
418 | } | |
c801d85f | 419 | |
c50f92d0 VZ |
420 | return col; |
421 | #elif defined(__X__) | |
4e6b8309 | 422 | // TODO: move this to wxColour::CreateByName() |
c801d85f KB |
423 | XColor xcolour; |
424 | ||
2049ba38 | 425 | #ifdef __WXMOTIF__ |
46ccb510 | 426 | Display *display = XtDisplay((Widget) wxTheApp->GetTopLevelWidget()) ; |
c801d85f | 427 | #endif |
7266b672 JS |
428 | #ifdef __WXX11__ |
429 | Display* display = (Display*) wxGetDisplay(); | |
1c4a764c | 430 | #endif |
c801d85f | 431 | /* MATTHEW: [4] Use wxGetMainColormap */ |
2b5f62a0 | 432 | if (!XParseColor(display, (Colormap) wxTheApp->GetMainColormap((WXDisplay*) display), colour.ToAscii() ,&xcolour)) |
c50f92d0 | 433 | return NULL; |
c801d85f | 434 | |
0b5c0e1a JS |
435 | #if wxUSE_NANOX |
436 | unsigned char r = (unsigned char)(xcolour.red); | |
437 | unsigned char g = (unsigned char)(xcolour.green); | |
438 | unsigned char b = (unsigned char)(xcolour.blue); | |
439 | #else | |
c801d85f KB |
440 | unsigned char r = (unsigned char)(xcolour.red >> 8); |
441 | unsigned char g = (unsigned char)(xcolour.green >> 8); | |
442 | unsigned char b = (unsigned char)(xcolour.blue >> 8); | |
0b5c0e1a | 443 | #endif |
482ee397 | 444 | |
c50f92d0 | 445 | wxColour col(r, g, b); |
8f520a56 | 446 | AddColour(colour, col); |
c801d85f KB |
447 | |
448 | return col; | |
c50f92d0 VZ |
449 | #else // other platform |
450 | return wxNullColour; | |
451 | #endif // platforms | |
c801d85f KB |
452 | } |
453 | ||
c50f92d0 | 454 | wxString wxColourDatabase::FindName(const wxColour& colour) const |
c801d85f | 455 | { |
c50f92d0 VZ |
456 | wxColourDatabase * const self = wxConstCast(this, wxColourDatabase); |
457 | self->Initialize(); | |
8bbe427f | 458 | |
222ed1d6 MB |
459 | typedef wxStringToColourHashMap::iterator iterator; |
460 | ||
c50f92d0 | 461 | for ( iterator it = m_map->begin(), en = m_map->end(); it != en; ++it ) |
a23fd0e1 | 462 | { |
c50f92d0 | 463 | if ( *(it->second) == colour ) |
222ed1d6 | 464 | return it->first; |
a23fd0e1 | 465 | } |
c801d85f | 466 | |
222ed1d6 | 467 | return wxEmptyString; |
c801d85f KB |
468 | } |
469 | ||
c50f92d0 VZ |
470 | // ---------------------------------------------------------------------------- |
471 | // deprecated wxColourDatabase methods | |
472 | // ---------------------------------------------------------------------------- | |
473 | ||
474 | wxColour *wxColourDatabase::FindColour(const wxString& name) | |
475 | { | |
98de2b68 DS |
476 | // This function is deprecated, use Find() instead. |
477 | // Formerly this function sometimes would return a deletable pointer and | |
478 | // sometimes a non-deletable one (when returning a colour from the database). | |
479 | // Trying to delete the latter anyway results in problems, so probably | |
480 | // nobody ever freed the pointers. Currently it always returns a new | |
481 | // instance, which means there will be memory leaks. | |
482 | wxLogDebug(wxT("wxColourDataBase::FindColour():") | |
483 | wxT(" Please use wxColourDataBase::Find() instead")); | |
484 | ||
492e2a5b VZ |
485 | // using a static variable here is not the most elegant solution but unless |
486 | // we want to make wxStringToColourHashMap public (i.e. move it to the | |
487 | // header) so that we could have a member function returning | |
488 | // wxStringToColourHashMap::iterator, there is really no good way to do it | |
489 | // otherwise | |
490 | // | |
491 | // and knowing that this function is going to disappear in the next release | |
492 | // anyhow I don't want to waste time on this | |
98de2b68 | 493 | |
492e2a5b VZ |
494 | static wxColour s_col; |
495 | ||
496 | s_col = Find(name); | |
497 | if ( !s_col.Ok() ) | |
c50f92d0 VZ |
498 | return NULL; |
499 | ||
98de2b68 | 500 | return new wxColour(s_col); |
c50f92d0 VZ |
501 | } |
502 | ||
503 | // ============================================================================ | |
504 | // stock objects | |
505 | // ============================================================================ | |
506 | ||
7ecb8b06 VZ |
507 | void wxInitializeStockLists() |
508 | { | |
1c193821 | 509 | wxTheColourDatabase = new wxColourDatabase; |
1c193821 JS |
510 | |
511 | wxTheBrushList = new wxBrushList; | |
512 | wxThePenList = new wxPenList; | |
513 | wxTheFontList = new wxFontList; | |
514 | wxTheBitmapList = new wxBitmapList; | |
a3622daa | 515 | } |
c801d85f | 516 | |
a3622daa VZ |
517 | void wxInitializeStockObjects () |
518 | { | |
2049ba38 | 519 | #ifdef __WXMOTIF__ |
c801d85f KB |
520 | #endif |
521 | #ifdef __X__ | |
46ccb510 JS |
522 | // TODO |
523 | // wxFontPool = new XFontPool; | |
c801d85f KB |
524 | #endif |
525 | ||
696e1ea0 | 526 | // why under MSW fonts shouldn't have the standard system size? |
5100cabf | 527 | /* |
696e1ea0 VZ |
528 | #ifdef __WXMSW__ |
529 | static const int sizeFont = 10; | |
530 | #else | |
696e1ea0 | 531 | #endif |
5100cabf | 532 | */ |
2fe57169 | 533 | #if defined(__WXMAC__) |
b5c3e56d | 534 | // retrieve size of system font for all stock fonts |
99fd0d71 SC |
535 | int sizeFont = 12; |
536 | ||
99fd0d71 SC |
537 | Str255 fontName ; |
538 | SInt16 fontSize ; | |
539 | Style fontStyle ; | |
540 | ||
541 | GetThemeFont(kThemeSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ; | |
542 | sizeFont = fontSize ; | |
b5c3e56d | 543 | #if __WXMAC_CLASSIC__ |
d0bfeea6 | 544 | wxNORMAL_FONT = new wxFont (fontSize, wxMODERN, wxNORMAL, wxNORMAL , false , wxMacMakeStringFromPascal(fontName) ); |
b5c3e56d SC |
545 | #else |
546 | wxNORMAL_FONT = new wxFont () ; | |
547 | wxNORMAL_FONT->MacCreateThemeFont( kThemeSystemFont ); | |
548 | #endif | |
2fe57169 | 549 | #elif defined(__WXPM__) |
1b75810c | 550 | static const int sizeFont = 12; |
415ca026 | 551 | #else |
a756f210 | 552 | wxNORMAL_FONT = new wxFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); |
5100cabf | 553 | static const int sizeFont = wxNORMAL_FONT->GetPointSize(); |
415ca026 | 554 | #endif |
696e1ea0 | 555 | |
2fe57169 DW |
556 | #if defined(__WXPM__) |
557 | /* | |
558 | // Basic OS/2 has a fairly limited number of fonts and these are as good | |
559 | // as I can do to get something that looks halfway "wx" normal | |
560 | */ | |
482ee397 | 561 | wxNORMAL_FONT = new wxFont (sizeFont, wxMODERN, wxNORMAL, wxBOLD); |
1b75810c | 562 | wxSMALL_FONT = new wxFont (sizeFont - 4, wxSWISS, wxNORMAL, wxNORMAL); /* Helv */ |
2fe57169 DW |
563 | wxITALIC_FONT = new wxFont (sizeFont, wxROMAN, wxITALIC, wxNORMAL); |
564 | wxSWISS_FONT = new wxFont (sizeFont, wxSWISS, wxNORMAL, wxNORMAL); /* Helv */ | |
955e5433 | 565 | #elif defined(__WXMAC__) |
d0bfeea6 | 566 | wxSWISS_FONT = new wxFont (sizeFont, wxSWISS, wxNORMAL, wxNORMAL); /* Helv */ |
99fd0d71 | 567 | wxITALIC_FONT = new wxFont (sizeFont, wxROMAN, wxITALIC, wxNORMAL); |
b5c3e56d | 568 | #if __WXMAC_CLASSIC__ |
99fd0d71 | 569 | GetThemeFont(kThemeSmallSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ; |
44c44c82 | 570 | wxSMALL_FONT = new wxFont (fontSize, wxSWISS, wxNORMAL, wxNORMAL , false , wxMacMakeStringFromPascal( fontName ) ); |
b5c3e56d SC |
571 | #else |
572 | wxSMALL_FONT = new wxFont () ; | |
573 | wxSMALL_FONT->MacCreateThemeFont( kThemeSmallSystemFont ); | |
574 | #endif | |
2fe57169 | 575 | #else |
696e1ea0 VZ |
576 | wxSMALL_FONT = new wxFont (sizeFont - 2, wxSWISS, wxNORMAL, wxNORMAL); |
577 | wxITALIC_FONT = new wxFont (sizeFont, wxROMAN, wxITALIC, wxNORMAL); | |
578 | wxSWISS_FONT = new wxFont (sizeFont, wxSWISS, wxNORMAL, wxNORMAL); | |
2fe57169 | 579 | #endif |
c801d85f | 580 | |
9e0a12c9 MB |
581 | wxRED_PEN = new wxPen (wxT("RED"), 1, wxSOLID); |
582 | wxCYAN_PEN = new wxPen (wxT("CYAN"), 1, wxSOLID); | |
583 | wxGREEN_PEN = new wxPen (wxT("GREEN"), 1, wxSOLID); | |
584 | wxBLACK_PEN = new wxPen (wxT("BLACK"), 1, wxSOLID); | |
585 | wxWHITE_PEN = new wxPen (wxT("WHITE"), 1, wxSOLID); | |
586 | wxTRANSPARENT_PEN = new wxPen (wxT("BLACK"), 1, wxTRANSPARENT); | |
587 | wxBLACK_DASHED_PEN = new wxPen (wxT("BLACK"), 1, wxSHORT_DASH); | |
588 | wxGREY_PEN = new wxPen (wxT("GREY"), 1, wxSOLID); | |
589 | wxMEDIUM_GREY_PEN = new wxPen (wxT("MEDIUM GREY"), 1, wxSOLID); | |
590 | wxLIGHT_GREY_PEN = new wxPen (wxT("LIGHT GREY"), 1, wxSOLID); | |
591 | ||
592 | wxBLUE_BRUSH = new wxBrush (wxT("BLUE"), wxSOLID); | |
593 | wxGREEN_BRUSH = new wxBrush (wxT("GREEN"), wxSOLID); | |
594 | wxWHITE_BRUSH = new wxBrush (wxT("WHITE"), wxSOLID); | |
595 | wxBLACK_BRUSH = new wxBrush (wxT("BLACK"), wxSOLID); | |
596 | wxTRANSPARENT_BRUSH = new wxBrush (wxT("BLACK"), wxTRANSPARENT); | |
597 | wxCYAN_BRUSH = new wxBrush (wxT("CYAN"), wxSOLID); | |
598 | wxRED_BRUSH = new wxBrush (wxT("RED"), wxSOLID); | |
599 | wxGREY_BRUSH = new wxBrush (wxT("GREY"), wxSOLID); | |
600 | wxMEDIUM_GREY_BRUSH = new wxBrush (wxT("MEDIUM GREY"), wxSOLID); | |
601 | wxLIGHT_GREY_BRUSH = new wxBrush (wxT("LIGHT GREY"), wxSOLID); | |
602 | ||
603 | wxBLACK = new wxColour (wxT("BLACK")); | |
604 | wxWHITE = new wxColour (wxT("WHITE")); | |
605 | wxRED = new wxColour (wxT("RED")); | |
606 | wxBLUE = new wxColour (wxT("BLUE")); | |
607 | wxGREEN = new wxColour (wxT("GREEN")); | |
608 | wxCYAN = new wxColour (wxT("CYAN")); | |
609 | wxLIGHT_GREY = new wxColour (wxT("LIGHT GREY")); | |
c801d85f KB |
610 | |
611 | wxSTANDARD_CURSOR = new wxCursor (wxCURSOR_ARROW); | |
612 | wxHOURGLASS_CURSOR = new wxCursor (wxCURSOR_WAIT); | |
613 | wxCROSS_CURSOR = new wxCursor (wxCURSOR_CROSS); | |
614 | } | |
615 | ||
8bbe427f | 616 | void wxDeleteStockObjects () |
c801d85f | 617 | { |
a3622daa VZ |
618 | wxDELETE(wxNORMAL_FONT); |
619 | wxDELETE(wxSMALL_FONT); | |
620 | wxDELETE(wxITALIC_FONT); | |
621 | wxDELETE(wxSWISS_FONT); | |
622 | ||
623 | wxDELETE(wxRED_PEN); | |
624 | wxDELETE(wxCYAN_PEN); | |
625 | wxDELETE(wxGREEN_PEN); | |
626 | wxDELETE(wxBLACK_PEN); | |
627 | wxDELETE(wxWHITE_PEN); | |
628 | wxDELETE(wxTRANSPARENT_PEN); | |
629 | wxDELETE(wxBLACK_DASHED_PEN); | |
630 | wxDELETE(wxGREY_PEN); | |
631 | wxDELETE(wxMEDIUM_GREY_PEN); | |
632 | wxDELETE(wxLIGHT_GREY_PEN); | |
633 | ||
634 | wxDELETE(wxBLUE_BRUSH); | |
635 | wxDELETE(wxGREEN_BRUSH); | |
636 | wxDELETE(wxWHITE_BRUSH); | |
637 | wxDELETE(wxBLACK_BRUSH); | |
638 | wxDELETE(wxTRANSPARENT_BRUSH); | |
639 | wxDELETE(wxCYAN_BRUSH); | |
640 | wxDELETE(wxRED_BRUSH); | |
641 | wxDELETE(wxGREY_BRUSH); | |
642 | wxDELETE(wxMEDIUM_GREY_BRUSH); | |
643 | wxDELETE(wxLIGHT_GREY_BRUSH); | |
644 | ||
645 | wxDELETE(wxBLACK); | |
646 | wxDELETE(wxWHITE); | |
647 | wxDELETE(wxRED); | |
648 | wxDELETE(wxBLUE); | |
649 | wxDELETE(wxGREEN); | |
650 | wxDELETE(wxCYAN); | |
651 | wxDELETE(wxLIGHT_GREY); | |
652 | ||
653 | wxDELETE(wxSTANDARD_CURSOR); | |
654 | wxDELETE(wxHOURGLASS_CURSOR); | |
655 | wxDELETE(wxCROSS_CURSOR); | |
656 | } | |
657 | ||
7ecb8b06 VZ |
658 | void wxDeleteStockLists() |
659 | { | |
a3622daa VZ |
660 | wxDELETE(wxTheBrushList); |
661 | wxDELETE(wxThePenList); | |
662 | wxDELETE(wxTheFontList); | |
663 | wxDELETE(wxTheBitmapList); | |
c801d85f KB |
664 | } |
665 | ||
7ecb8b06 VZ |
666 | // ============================================================================ |
667 | // wxTheXXXList stuff (semi-obsolete) | |
668 | // ============================================================================ | |
669 | ||
670 | wxBitmapList::wxBitmapList() | |
c801d85f KB |
671 | { |
672 | } | |
673 | ||
6a6c0a8b | 674 | wxBitmapList::~wxBitmapList () |
c801d85f | 675 | { |
222ed1d6 | 676 | wxList::compatibility_iterator node = GetFirst (); |
c801d85f KB |
677 | while (node) |
678 | { | |
b1d4dd7a | 679 | wxBitmap *bitmap = (wxBitmap *) node->GetData (); |
222ed1d6 | 680 | wxList::compatibility_iterator next = node->GetNext (); |
4c444f19 JS |
681 | if (bitmap->GetVisible()) |
682 | delete bitmap; | |
c801d85f KB |
683 | node = next; |
684 | } | |
685 | } | |
686 | ||
687 | // Pen and Brush lists | |
6a6c0a8b | 688 | wxPenList::~wxPenList () |
c801d85f | 689 | { |
222ed1d6 | 690 | wxList::compatibility_iterator node = GetFirst (); |
c801d85f KB |
691 | while (node) |
692 | { | |
b1d4dd7a | 693 | wxPen *pen = (wxPen *) node->GetData (); |
222ed1d6 | 694 | wxList::compatibility_iterator next = node->GetNext (); |
4c444f19 JS |
695 | if (pen->GetVisible()) |
696 | delete pen; | |
c801d85f KB |
697 | node = next; |
698 | } | |
699 | } | |
700 | ||
701 | void wxPenList::AddPen (wxPen * pen) | |
702 | { | |
703 | Append (pen); | |
704 | } | |
705 | ||
706 | void wxPenList::RemovePen (wxPen * pen) | |
707 | { | |
708 | DeleteObject (pen); | |
709 | } | |
710 | ||
debe6624 | 711 | wxPen *wxPenList::FindOrCreatePen (const wxColour& colour, int width, int style) |
c801d85f | 712 | { |
222ed1d6 | 713 | for (wxList::compatibility_iterator node = GetFirst (); node; node = node->GetNext ()) |
13b6e335 | 714 | { |
b1d4dd7a | 715 | wxPen *each_pen = (wxPen *) node->GetData (); |
13b6e335 VZ |
716 | if (each_pen && |
717 | each_pen->GetVisible() && | |
718 | each_pen->GetWidth () == width && | |
719 | each_pen->GetStyle () == style && | |
720 | each_pen->GetColour ().Red () == colour.Red () && | |
721 | each_pen->GetColour ().Green () == colour.Green () && | |
722 | each_pen->GetColour ().Blue () == colour.Blue ()) | |
723 | return each_pen; | |
724 | } | |
725 | ||
726 | wxPen *pen = new wxPen (colour, width, style); | |
727 | if ( !pen->Ok() ) | |
c801d85f | 728 | { |
13b6e335 VZ |
729 | // don't save the invalid pens in the list |
730 | delete pen; | |
731 | ||
732 | return NULL; | |
c801d85f | 733 | } |
c801d85f | 734 | |
7ecb8b06 VZ |
735 | AddPen(pen); |
736 | ||
737 | // we'll delete it ourselves later | |
13b6e335 | 738 | pen->SetVisible(TRUE); |
6d167489 | 739 | |
13b6e335 | 740 | return pen; |
c801d85f KB |
741 | } |
742 | ||
6a6c0a8b | 743 | wxBrushList::~wxBrushList () |
c801d85f | 744 | { |
222ed1d6 | 745 | wxList::compatibility_iterator node = GetFirst (); |
c801d85f KB |
746 | while (node) |
747 | { | |
b1d4dd7a | 748 | wxBrush *brush = (wxBrush *) node->GetData (); |
222ed1d6 | 749 | wxList::compatibility_iterator next = node->GetNext (); |
799ea011 | 750 | if (brush && brush->GetVisible()) |
4c444f19 | 751 | delete brush; |
c801d85f KB |
752 | node = next; |
753 | } | |
754 | } | |
755 | ||
756 | void wxBrushList::AddBrush (wxBrush * brush) | |
757 | { | |
758 | Append (brush); | |
759 | } | |
760 | ||
debe6624 | 761 | wxBrush *wxBrushList::FindOrCreateBrush (const wxColour& colour, int style) |
c801d85f | 762 | { |
222ed1d6 | 763 | for (wxList::compatibility_iterator node = GetFirst (); node; node = node->GetNext ()) |
c801d85f | 764 | { |
b1d4dd7a | 765 | wxBrush *each_brush = (wxBrush *) node->GetData (); |
13b6e335 VZ |
766 | if (each_brush && |
767 | each_brush->GetVisible() && | |
768 | each_brush->GetStyle () == style && | |
769 | each_brush->GetColour ().Red () == colour.Red () && | |
770 | each_brush->GetColour ().Green () == colour.Green () && | |
771 | each_brush->GetColour ().Blue () == colour.Blue ()) | |
772 | return each_brush; | |
c801d85f | 773 | } |
6d167489 | 774 | |
13b6e335 VZ |
775 | wxBrush *brush = new wxBrush (colour, style); |
776 | ||
777 | if ( !brush->Ok() ) | |
778 | { | |
779 | // don't put the brushes we failed to create into the list | |
780 | delete brush; | |
781 | ||
782 | return NULL; | |
783 | } | |
6d167489 | 784 | |
7ecb8b06 VZ |
785 | AddBrush(brush); |
786 | ||
787 | // we'll delete it ourselves later | |
13b6e335 | 788 | brush->SetVisible(TRUE); |
6d167489 | 789 | |
13b6e335 | 790 | return brush; |
c801d85f KB |
791 | } |
792 | ||
c801d85f KB |
793 | void wxBrushList::RemoveBrush (wxBrush * brush) |
794 | { | |
795 | DeleteObject (brush); | |
796 | } | |
797 | ||
6a6c0a8b | 798 | wxFontList::~wxFontList () |
c801d85f | 799 | { |
222ed1d6 | 800 | wxList::compatibility_iterator node = GetFirst (); |
6d167489 | 801 | while (node) |
c801d85f | 802 | { |
6d167489 VZ |
803 | // Only delete objects that are 'visible', i.e. |
804 | // that have been created using FindOrCreate..., | |
805 | // where the pointers are expected to be shared | |
806 | // (and therefore not deleted by any one part of an app). | |
b1d4dd7a | 807 | wxFont *font = (wxFont *) node->GetData (); |
222ed1d6 | 808 | wxList::compatibility_iterator next = node->GetNext (); |
6d167489 VZ |
809 | if (font->GetVisible()) |
810 | delete font; | |
811 | node = next; | |
812 | } | |
c801d85f KB |
813 | } |
814 | ||
815 | void wxFontList::AddFont (wxFont * font) | |
816 | { | |
817 | Append (font); | |
818 | } | |
819 | ||
820 | void wxFontList::RemoveFont (wxFont * font) | |
821 | { | |
822 | DeleteObject (font); | |
823 | } | |
824 | ||
f6bcfd97 BP |
825 | wxFont *wxFontList::FindOrCreateFont(int pointSize, |
826 | int family, | |
827 | int style, | |
828 | int weight, | |
829 | bool underline, | |
830 | const wxString& facename, | |
831 | wxFontEncoding encoding) | |
c801d85f | 832 | { |
f6bcfd97 | 833 | wxFont *font = (wxFont *)NULL; |
222ed1d6 | 834 | wxList::compatibility_iterator node; |
b1d4dd7a | 835 | for ( node = GetFirst(); node; node = node->GetNext() ) |
c801d85f | 836 | { |
b1d4dd7a | 837 | font = (wxFont *)node->GetData(); |
f6bcfd97 BP |
838 | if ( font->GetVisible() && |
839 | font->Ok() && | |
840 | font->GetPointSize () == pointSize && | |
841 | font->GetStyle () == style && | |
842 | font->GetWeight () == weight && | |
843 | font->GetUnderlined () == underline ) | |
844 | { | |
845 | int fontFamily = font->GetFamily(); | |
846 | ||
619d0528 | 847 | #if defined(__WXGTK__) |
f6bcfd97 BP |
848 | // under GTK the default family is wxSWISS, so looking for a font |
849 | // with wxDEFAULT family should return a wxSWISS one instead of | |
850 | // creating a new one | |
851 | bool same = (fontFamily == family) || | |
852 | (fontFamily == wxSWISS && family == wxDEFAULT); | |
853 | #else // !GTK | |
854 | // VZ: but why elsewhere do we require an exact match? mystery... | |
855 | bool same = fontFamily == family; | |
856 | #endif // GTK/!GTK | |
857 | ||
858 | // empty facename matches anything at all: this is bad because | |
859 | // depending on which fonts are already created, we might get back | |
860 | // a different font if we create it with empty facename, but it is | |
861 | // still better than never matching anything in the cache at all | |
862 | // in this case | |
863 | if ( same && !!facename ) | |
864 | { | |
865 | const wxString& fontFace = font->GetFaceName(); | |
866 | ||
867 | // empty facename matches everything | |
868 | same = !fontFace || fontFace == facename; | |
869 | } | |
870 | ||
871 | if ( same && (encoding != wxFONTENCODING_DEFAULT) ) | |
872 | { | |
873 | // have to match the encoding too | |
874 | same = font->GetEncoding() == encoding; | |
875 | } | |
876 | ||
877 | if ( same ) | |
878 | { | |
879 | return font; | |
880 | } | |
881 | } | |
c801d85f | 882 | } |
6d167489 | 883 | |
f6bcfd97 BP |
884 | if ( !node ) |
885 | { | |
886 | // font not found, create the new one | |
887 | font = new wxFont(pointSize, family, style, weight, | |
888 | underline, facename, encoding); | |
889 | ||
7ecb8b06 VZ |
890 | AddFont(font); |
891 | ||
f6bcfd97 BP |
892 | // and mark it as being cacheable |
893 | font->SetVisible(TRUE); | |
894 | } | |
6d167489 | 895 | |
f6bcfd97 | 896 | return font; |
c801d85f KB |
897 | } |
898 | ||
899 | void wxBitmapList::AddBitmap(wxBitmap *bitmap) | |
8bbe427f VZ |
900 | { |
901 | Append(bitmap); | |
902 | } | |
903 | ||
c801d85f | 904 | void wxBitmapList::RemoveBitmap(wxBitmap *bitmap) |
8bbe427f VZ |
905 | { |
906 | DeleteObject(bitmap); | |
907 | } | |
c801d85f | 908 | |
6a6c0a8b JS |
909 | wxSize wxGetDisplaySize() |
910 | { | |
911 | int x, y; | |
912 | wxDisplaySize(& x, & y); | |
913 | return wxSize(x, y); | |
914 | } | |
915 | ||
ec5d7799 RD |
916 | wxRect wxGetClientDisplayRect() |
917 | { | |
918 | int x, y, width, height; | |
919 | wxClientDisplayRect(&x, &y, &width, &height); // call plat-specific version | |
920 | return wxRect(x, y, width, height); | |
921 | } | |
922 | ||
904a68b6 RL |
923 | wxSize wxGetDisplaySizeMM() |
924 | { | |
925 | int x, y; | |
926 | wxDisplaySizeMM(& x, & y); | |
927 | return wxSize(x, y); | |
928 | } | |
929 | ||
8bbe427f VZ |
930 | wxResourceCache::~wxResourceCache () |
931 | { | |
222ed1d6 | 932 | wxList::compatibility_iterator node = GetFirst (); |
f6bcfd97 | 933 | while (node) { |
b1d4dd7a | 934 | wxObject *item = (wxObject *)node->GetData(); |
f6bcfd97 | 935 | delete item; |
a3622daa | 936 | |
b1d4dd7a | 937 | node = node->GetNext (); |
a3622daa | 938 | } |
a3622daa VZ |
939 | } |
940 |