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