]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gdicmn.h
Added wxFopen to the MSLU code.
[wxWidgets.git] / include / wx / gdicmn.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: gdicmn.h
3// Purpose: Common GDI classes, types and declarations
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c)
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_GDICMNH__
13#define _WX_GDICMNH__
c801d85f 14
f03fc89f
VZ
15// ---------------------------------------------------------------------------
16// headers
17// ---------------------------------------------------------------------------
18
12028905 19#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
f03fc89f 20 #pragma interface "gdicmn.h"
c801d85f
KB
21#endif
22
ed39ff57 23#include "wx/setup.h"
c801d85f 24#include "wx/list.h"
34138703 25#include "wx/string.h"
ed39ff57 26#include "wx/fontenc.h"
bdcade0a 27#include "wx/hashmap.h"
c801d85f 28
f03fc89f
VZ
29// ---------------------------------------------------------------------------
30// forward declarations
31// ---------------------------------------------------------------------------
32
62a9d04c
VS
33class WXDLLIMPEXP_CORE wxBitmap;
34class WXDLLIMPEXP_CORE wxBrush;
35class WXDLLIMPEXP_CORE wxColour;
36class WXDLLIMPEXP_CORE wxCursor;
37class WXDLLIMPEXP_CORE wxFont;
38class WXDLLIMPEXP_CORE wxIcon;
39class WXDLLIMPEXP_CORE wxPalette;
40class WXDLLIMPEXP_CORE wxPen;
41class WXDLLIMPEXP_CORE wxRegion;
42class WXDLLIMPEXP_BASE wxString;
f03fc89f
VZ
43
44// ---------------------------------------------------------------------------
45// constants
46// ---------------------------------------------------------------------------
47
48// Bitmap flags
2aeec9ec 49enum wxBitmapType
f03fc89f 50{
6d167489
VZ
51 wxBITMAP_TYPE_INVALID, // should be == 0 for compatibility!
52 wxBITMAP_TYPE_BMP,
f03fc89f
VZ
53 wxBITMAP_TYPE_BMP_RESOURCE,
54 wxBITMAP_TYPE_RESOURCE = wxBITMAP_TYPE_BMP_RESOURCE,
55 wxBITMAP_TYPE_ICO,
56 wxBITMAP_TYPE_ICO_RESOURCE,
57 wxBITMAP_TYPE_CUR,
58 wxBITMAP_TYPE_CUR_RESOURCE,
59 wxBITMAP_TYPE_XBM,
60 wxBITMAP_TYPE_XBM_DATA,
61 wxBITMAP_TYPE_XPM,
62 wxBITMAP_TYPE_XPM_DATA,
63 wxBITMAP_TYPE_TIF,
64 wxBITMAP_TYPE_TIF_RESOURCE,
65 wxBITMAP_TYPE_GIF,
66 wxBITMAP_TYPE_GIF_RESOURCE,
67 wxBITMAP_TYPE_PNG,
68 wxBITMAP_TYPE_PNG_RESOURCE,
69 wxBITMAP_TYPE_JPEG,
70 wxBITMAP_TYPE_JPEG_RESOURCE,
bcc46c75
SB
71 wxBITMAP_TYPE_PNM,
72 wxBITMAP_TYPE_PNM_RESOURCE,
6523d119
GRG
73 wxBITMAP_TYPE_PCX,
74 wxBITMAP_TYPE_PCX_RESOURCE,
6d167489
VZ
75 wxBITMAP_TYPE_PICT,
76 wxBITMAP_TYPE_PICT_RESOURCE,
77 wxBITMAP_TYPE_ICON,
78 wxBITMAP_TYPE_ICON_RESOURCE,
658974ae 79 wxBITMAP_TYPE_ANI,
63f8abca 80 wxBITMAP_TYPE_IFF,
6d167489
VZ
81 wxBITMAP_TYPE_MACCURSOR,
82 wxBITMAP_TYPE_MACCURSOR_RESOURCE,
f03fc89f
VZ
83 wxBITMAP_TYPE_ANY = 50
84};
85
c801d85f 86// Standard cursors
f03fc89f
VZ
87enum wxStockCursor
88{
89 wxCURSOR_NONE, // should be 0
90 wxCURSOR_ARROW,
15dadf31 91 wxCURSOR_RIGHT_ARROW,
f03fc89f
VZ
92 wxCURSOR_BULLSEYE,
93 wxCURSOR_CHAR,
94 wxCURSOR_CROSS,
95 wxCURSOR_HAND,
96 wxCURSOR_IBEAM,
97 wxCURSOR_LEFT_BUTTON,
98 wxCURSOR_MAGNIFIER,
99 wxCURSOR_MIDDLE_BUTTON,
100 wxCURSOR_NO_ENTRY,
101 wxCURSOR_PAINT_BRUSH,
102 wxCURSOR_PENCIL,
103 wxCURSOR_POINT_LEFT,
104 wxCURSOR_POINT_RIGHT,
105 wxCURSOR_QUESTION_ARROW,
106 wxCURSOR_RIGHT_BUTTON,
107 wxCURSOR_SIZENESW,
108 wxCURSOR_SIZENS,
109 wxCURSOR_SIZENWSE,
110 wxCURSOR_SIZEWE,
111 wxCURSOR_SIZING,
112 wxCURSOR_SPRAYCAN,
113 wxCURSOR_WAIT,
114 wxCURSOR_WATCH,
115 wxCURSOR_BLANK,
ae53c98c
KB
116#ifdef __WXGTK__
117 wxCURSOR_DEFAULT, // standard X11 cursor
118#endif
5f7a6626 119#ifdef __WXMAC__
5d3e7b52 120 wxCURSOR_COPY_ARROW , // MacOS Theme Plus arrow
5f7a6626 121#endif
c801d85f 122#ifdef __X__
f03fc89f
VZ
123 // Not yet implemented for Windows
124 wxCURSOR_CROSS_REVERSE,
125 wxCURSOR_DOUBLE_ARROW,
126 wxCURSOR_BASED_ARROW_UP,
ea804aad 127 wxCURSOR_BASED_ARROW_DOWN,
f03fc89f
VZ
128#endif // X11
129
83f96286
RD
130 wxCURSOR_ARROWWAIT,
131
f03fc89f
VZ
132 wxCURSOR_MAX
133};
134
943d28e4
VZ
135#ifndef __WXGTK__
136 #define wxCURSOR_DEFAULT wxCURSOR_ARROW
137#endif
138
f03fc89f
VZ
139// ---------------------------------------------------------------------------
140// macros
141// ---------------------------------------------------------------------------
142
143/* Useful macro for creating icons portably, for example:
144
145 wxIcon *icon = new wxICON(mondrian);
146
147 expands into:
148
149 wxIcon *icon = new wxIcon("mondrian"); // On wxMSW
150 wxIcon *icon = new wxIcon(mondrian_xpm); // On wxGTK
151 */
152
153#ifdef __WXMSW__
154 // Load from a resource
2b5f62a0 155 #define wxICON(X) wxIcon(wxT(#X))
1777b9bb
DW
156#elif defined(__WXPM__)
157 // Load from a resource
2b5f62a0 158 #define wxICON(X) wxIcon(wxT(#X))
1e6feb95 159#elif defined(__WXMGL__)
1d965e2f
VS
160 // Initialize from an included XPM
161 #define wxICON(X) wxIcon( (const char**) X##_xpm )
f03fc89f
VZ
162#elif defined(__WXGTK__)
163 // Initialize from an included XPM
164 #define wxICON(X) wxIcon( (const char**) X##_xpm )
0532484d
GD
165#elif defined(__WXMAC__)
166 // Initialize from an included XPM
167 #define wxICON(X) wxIcon( (const char**) X##_xpm )
f03fc89f
VZ
168#elif defined(__WXMOTIF__)
169 // Initialize from an included XPM
170 #define wxICON(X) wxIcon( X##_xpm )
83df96d6
JS
171#elif defined(__WXX11__)
172 // Initialize from an included XPM
173 #define wxICON(X) wxIcon( X##_xpm )
f03fc89f
VZ
174#else
175 // This will usually mean something on any platform
2b5f62a0 176 #define wxICON(X) wxIcon(wxT(#X))
f03fc89f
VZ
177#endif // platform
178
0c5d3e1c
VZ
179/* Another macro: this one is for portable creation of bitmaps. We assume that
180 under Unix bitmaps live in XPMs and under Windows they're in ressources.
181 */
182
1d965e2f 183#if defined(__WXMSW__) || defined(__WXPM__)
2b5f62a0 184 #define wxBITMAP(name) wxBitmap(wxT(#name), wxBITMAP_TYPE_RESOURCE)
d22004c4
WS
185#elif defined(__WXGTK__) || \
186 defined(__WXMOTIF__) || \
187 defined(__WXX11__) || \
188 defined(__WXMAC__) || \
189 defined(__WXMGL__) || \
190 defined(__WXCOCOA__)
bab537dc
VS
191 // Initialize from an included XPM
192 #define wxBITMAP(name) wxBitmap( (const char**) name##_xpm )
b8aa1680 193#else // other platforms
0c5d3e1c
VZ
194 #define wxBITMAP(name) wxBitmap(name##_xpm, wxBITMAP_TYPE_XPM)
195#endif // platform
196
f03fc89f
VZ
197// ===========================================================================
198// classes
199// ===========================================================================
c801d85f 200
f03fc89f
VZ
201// ---------------------------------------------------------------------------
202// wxSize
203// ---------------------------------------------------------------------------
1e6feb95 204
6a6c0a8b 205class WXDLLEXPORT wxSize
c801d85f
KB
206{
207public:
e6c96a7c 208 // members are public for compatibility, don't use them directly.
72cdf4c9 209 int x, y;
f03fc89f
VZ
210
211 // constructors
7ee31b00
GD
212 wxSize() : x(0), y(0) { }
213 wxSize(int xx, int yy) : x(xx), y(yy) { }
f03fc89f
VZ
214
215 // no copy ctor or assignment operator - the defaults are ok
1e6feb95 216
f03fc89f 217 bool operator==(const wxSize& sz) const { return x == sz.x && y == sz.y; }
1e6feb95 218 bool operator!=(const wxSize& sz) const { return x != sz.x || y != sz.y; }
f03fc89f 219
f03fc89f
VZ
220 wxSize operator+(const wxSize& sz) { return wxSize(x + sz.x, y + sz.y); }
221 wxSize operator-(const wxSize& sz) { return wxSize(x - sz.x, y - sz.y); }
fc84bd05
WS
222 wxSize operator/(const int i) { return wxSize(x / i, y / i); }
223 wxSize operator*(const int i) { return wxSize(x * i, y * i); }
224
225 wxSize& operator+=(const wxSize& sz) { x += sz.x; y += sz.y; return *this; }
226 wxSize& operator-=(const wxSize& sz) { x -= sz.x; y -= sz.y; return *this; }
227 wxSize& operator/=(const int i) { x /= i; y /= i; return *this; }
228 wxSize& operator*=(const int i) { x *= i; y *= i; return *this; }
706f1421 229
5b087ae2
VZ
230 void IncTo(const wxSize& sz)
231 { if ( sz.x > x ) x = sz.x; if ( sz.y > y ) y = sz.y; }
232 void DecTo(const wxSize& sz)
233 { if ( sz.x < x ) x = sz.x; if ( sz.y < y ) y = sz.y; }
f03fc89f 234
eddf46fe
JS
235 // accessors
236 void Set(int xx, int yy) { x = xx; y = yy; }
72cdf4c9
VZ
237 void SetWidth(int w) { x = w; }
238 void SetHeight(int h) { y = h; }
cc775580 239
72cdf4c9
VZ
240 int GetWidth() const { return x; }
241 int GetHeight() const { return y; }
f03fc89f 242
5d3e7b52 243 bool IsFullySpecified() const { return x != wxDefaultCoord && y != wxDefaultCoord; }
706f1421
VZ
244
245 // combine this size with the other one replacing the default (i.e. equal
5d3e7b52 246 // to wxDefaultCoord) components of this object with those of the other
706f1421
VZ
247 void SetDefaults(const wxSize& size)
248 {
5d3e7b52 249 if ( x == wxDefaultCoord )
706f1421 250 x = size.x;
5d3e7b52 251 if ( y == wxDefaultCoord )
706f1421
VZ
252 y = size.y;
253 }
254
cc775580 255 // compatibility
72cdf4c9
VZ
256 int GetX() const { return x; }
257 int GetY() const { return y; }
c801d85f
KB
258};
259
f03fc89f
VZ
260// ---------------------------------------------------------------------------
261// Point classes: with real or integer coordinates
262// ---------------------------------------------------------------------------
764a3a49 263
6a6c0a8b 264class WXDLLEXPORT wxRealPoint
c801d85f 265{
f03fc89f
VZ
266public:
267 double x;
268 double y;
269
7ee31b00
GD
270 wxRealPoint() : x(0.0), y(0.0) { }
271 wxRealPoint(double xx, double yy) : x(xx), y(yy) { }
f03fc89f 272
f6bcfd97
BP
273 wxRealPoint operator+(const wxRealPoint& pt) const { return wxRealPoint(x + pt.x, y + pt.y); }
274 wxRealPoint operator-(const wxRealPoint& pt) const { return wxRealPoint(x - pt.x, y - pt.y); }
f03fc89f
VZ
275
276 bool operator==(const wxRealPoint& pt) const { return x == pt.x && y == pt.y; }
2b5f62a0 277 bool operator!=(const wxRealPoint& pt) const { return x != pt.x || y != pt.y; }
c801d85f
KB
278};
279
6a6c0a8b 280class WXDLLEXPORT wxPoint
c801d85f 281{
f03fc89f 282public:
72cdf4c9 283 int x, y;
6a6c0a8b 284
7ee31b00
GD
285 wxPoint() : x(0), y(0) { }
286 wxPoint(int xx, int yy) : x(xx), y(yy) { }
f03fc89f
VZ
287
288 // no copy ctor or assignment operator - the defaults are ok
6a6c0a8b 289
764a3a49
VZ
290 // comparison
291 bool operator==(const wxPoint& p) const { return x == p.x && y == p.y; }
292 bool operator!=(const wxPoint& p) const { return !(*this == p); }
293
294 // arithmetic operations (component wise)
f6bcfd97
BP
295 wxPoint operator+(const wxPoint& p) const { return wxPoint(x + p.x, y + p.y); }
296 wxPoint operator-(const wxPoint& p) const { return wxPoint(x - p.x, y - p.y); }
f03fc89f 297
764a3a49
VZ
298 wxPoint& operator+=(const wxPoint& p) { x += p.x; y += p.y; return *this; }
299 wxPoint& operator-=(const wxPoint& p) { x -= p.x; y -= p.y; return *this; }
d02bc4c8
JS
300
301 wxPoint& operator+=(const wxSize& s) { x += s.GetWidth(); y += s.GetHeight(); return *this; }
302 wxPoint& operator-=(const wxSize& s) { x -= s.GetWidth(); y -= s.GetHeight(); return *this; }
303
304 wxPoint operator+(const wxSize& s) const { return wxPoint(x + s.GetWidth(), y + s.GetHeight()); }
305 wxPoint operator-(const wxSize& s) const { return wxPoint(x - s.GetWidth(), y - s.GetHeight()); }
c801d85f
KB
306};
307
f03fc89f
VZ
308// ---------------------------------------------------------------------------
309// wxRect
310// ---------------------------------------------------------------------------
c801d85f 311
6a6c0a8b
JS
312class WXDLLEXPORT wxRect
313{
c801d85f 314public:
7ee31b00
GD
315 wxRect()
316 : x(0), y(0), width(0), height(0)
317 { }
72cdf4c9 318 wxRect(int xx, int yy, int ww, int hh)
7ee31b00
GD
319 : x(xx), y(yy), width(ww), height(hh)
320 { }
f03fc89f 321 wxRect(const wxPoint& topLeft, const wxPoint& bottomRight);
df83b840
VZ
322 wxRect(const wxPoint& pt, const wxSize& size)
323 : x(pt.x), y(pt.y), width(size.x), height(size.y)
324 { }
325 wxRect(const wxSize& size)
326 : x(0), y(0), width(size.x), height(size.y)
327 { }
a23fd0e1
VZ
328
329 // default copy ctor and assignment operators ok
c801d85f 330
72cdf4c9
VZ
331 int GetX() const { return x; }
332 void SetX(int xx) { x = xx; }
c801d85f 333
72cdf4c9
VZ
334 int GetY() const { return y; }
335 void SetY(int yy) { y = yy; }
c801d85f 336
72cdf4c9
VZ
337 int GetWidth() const { return width; }
338 void SetWidth(int w) { width = w; }
c801d85f 339
72cdf4c9
VZ
340 int GetHeight() const { return height; }
341 void SetHeight(int h) { height = h; }
f03fc89f 342
dcb44466 343 wxPoint GetPosition() const { return wxPoint(x, y); }
4aa0010b
RL
344 void SetPosition( const wxPoint &p ) { x = p.x; y = p.y; }
345
dcb44466 346 wxSize GetSize() const { return wxSize(width, height); }
4aa0010b 347 void SetSize( const wxSize &s ) { width = s.GetWidth(); height = s.GetHeight(); }
f03fc89f 348
355a5e2b
JS
349 wxPoint GetTopLeft() const { return GetPosition(); }
350 wxPoint GetLeftTop() const { return GetTopLeft(); }
351 void SetTopLeft(const wxPoint &p) { SetPosition(p); }
352 void SetLeftTop(const wxPoint &p) { SetTopLeft(p); }
353
354 wxPoint GetBottomRight() const { return wxPoint(GetRight(), GetBottom()); }
355 wxPoint GetRightBottom() const { return GetBottomRight(); }
356 void SetBottomRight(const wxPoint &p) { SetRight(p.x); SetBottom(p.y); }
357 void SetRightBottom(const wxPoint &p) { SetBottomRight(p); }
358
72cdf4c9
VZ
359 int GetLeft() const { return x; }
360 int GetTop() const { return y; }
361 int GetBottom() const { return y + height - 1; }
362 int GetRight() const { return x + width - 1; }
f03fc89f 363
72cdf4c9
VZ
364 void SetLeft(int left) { x = left; }
365 void SetRight(int right) { width = right - x + 1; }
366 void SetTop(int top) { y = top; }
367 void SetBottom(int bottom) { height = bottom - y + 1; }
dcb44466 368
1e6feb95
VZ
369 // operations with rect
370 wxRect& Inflate(wxCoord dx, wxCoord dy);
371 wxRect& Inflate(wxCoord d) { return Inflate(d, d); }
372 wxRect Inflate(wxCoord dx, wxCoord dy) const
373 {
374 wxRect r = *this;
375 r.Inflate(dx, dy);
376 return r;
377 }
378
379 wxRect& Deflate(wxCoord dx, wxCoord dy) { return Inflate(-dx, -dy); }
380 wxRect& Deflate(wxCoord d) { return Inflate(-d); }
381 wxRect Deflate(wxCoord dx, wxCoord dy) const
382 {
383 wxRect r = *this;
384 r.Deflate(dx, dy);
385 return r;
386 }
387
388 void Offset(wxCoord dx, wxCoord dy) { x += dx; y += dy; }
389 void Offset(const wxPoint& pt) { Offset(pt.x, pt.y); }
390
391 wxRect& Intersect(const wxRect& rect);
392 wxRect Intersect(const wxRect& rect) const
45816ddd 393 {
1e6feb95
VZ
394 wxRect r = *this;
395 r.Intersect(rect);
396 return r;
45816ddd
VZ
397 }
398
df83b840
VZ
399 wxRect& Union(const wxRect& rect);
400 wxRect Union(const wxRect& rect) const
401 {
402 wxRect r = *this;
403 r.Union(rect);
404 return r;
405 }
45816ddd 406
1e6feb95 407 // compare rectangles
764a3a49
VZ
408 bool operator==(const wxRect& rect) const;
409 bool operator!=(const wxRect& rect) const { return !(*this == rect); }
f03fc89f 410
5d3e7b52 411 // return true if the point is (not strcitly) inside the rect
1e6feb95 412 bool Inside(int x, int y) const;
59a12e90 413 bool Inside(const wxPoint& pt) const { return Inside(pt.x, pt.y); }
1e6feb95 414
5d3e7b52 415 // return true if the rectangles have a non empty intersection
1e6feb95 416 bool Intersects(const wxRect& rect) const;
72cdf4c9 417
df83b840
VZ
418
419 // these are like Union() but don't ignore empty rectangles
420 wxRect operator+(const wxRect& rect) const;
3ea9aa8f 421 wxRect& operator+=(const wxRect& rect)
df83b840
VZ
422 {
423 *this = *this + rect;
424 return *this;
425 }
426
427
f03fc89f 428public:
72cdf4c9 429 int x, y, width, height;
f03fc89f 430};
c801d85f 431
f03fc89f 432// ---------------------------------------------------------------------------
c801d85f 433// Management of pens, brushes and fonts
f03fc89f
VZ
434// ---------------------------------------------------------------------------
435
236a9de3
RL
436typedef wxInt8 wxDash;
437
f03fc89f 438class WXDLLEXPORT wxPenList : public wxList
c801d85f 439{
f03fc89f
VZ
440public:
441 wxPenList() { }
9b51403d 442 ~wxPenList();
f03fc89f
VZ
443
444 void AddPen(wxPen *pen);
445 void RemovePen(wxPen *pen);
446 wxPen *FindOrCreatePen(const wxColour& colour, int width, int style);
c801d85f
KB
447};
448
f03fc89f 449class WXDLLEXPORT wxBrushList : public wxList
c801d85f 450{
f03fc89f
VZ
451public:
452 wxBrushList() { }
9b51403d 453 ~wxBrushList();
f03fc89f
VZ
454
455 void AddBrush(wxBrush *brush);
456 void RemoveBrush(wxBrush *brush);
457 wxBrush *FindOrCreateBrush(const wxColour& colour, int style);
c801d85f
KB
458};
459
f03fc89f 460class WXDLLEXPORT wxFontList : public wxList
c801d85f 461{
f03fc89f
VZ
462public:
463 wxFontList() { }
9b51403d 464 ~wxFontList();
f03fc89f
VZ
465
466 void AddFont(wxFont *font);
467 void RemoveFont(wxFont *font);
468 wxFont *FindOrCreateFont(int pointSize, int family, int style, int weight,
5d3e7b52 469 bool underline = false,
37bebc11
RD
470 const wxString& face = wxEmptyString,
471 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
c801d85f
KB
472};
473
bdcade0a 474WX_DECLARE_STRING_HASH_MAP( wxColour *, wxStringToColourHashMap );
222ed1d6
MB
475
476class WXDLLEXPORT wxColourDatabase
c801d85f 477{
f03fc89f 478public:
222ed1d6 479 wxColourDatabase();
c50f92d0 480 ~wxColourDatabase();
f03fc89f 481
c50f92d0
VZ
482 // find colour by name or name for the given colour
483 wxColour Find(const wxString& name) const;
f03fc89f 484 wxString FindName(const wxColour& colour) const;
c50f92d0
VZ
485
486 // add a new colour to the database
487 void AddColour(const wxString& name, const wxColour& colour);
488
492e2a5b
VZ
489 // deprecated, use Find() instead
490 wxDEPRECATED( wxColour *FindColour(const wxString& name) );
c50f92d0
VZ
491
492
19bf0c69
DW
493#ifdef __WXPM__
494 // PM keeps its own type of colour table
495 long* m_palTable;
496 size_t m_nSize;
497#endif
c50f92d0 498
222ed1d6 499private:
c50f92d0
VZ
500 // load the database with the built in colour values when called for the
501 // first time, do nothing after this
502 void Initialize();
222ed1d6 503
c50f92d0 504 wxStringToColourHashMap *m_map;
c801d85f
KB
505};
506
f03fc89f 507class WXDLLEXPORT wxBitmapList : public wxList
c801d85f 508{
f03fc89f 509public:
1b941f2d 510 wxBitmapList(){}
9b51403d 511 ~wxBitmapList();
f03fc89f
VZ
512
513 void AddBitmap(wxBitmap *bitmap);
514 void RemoveBitmap(wxBitmap *bitmap);
c801d85f
KB
515};
516
f03fc89f
VZ
517class WXDLLEXPORT wxResourceCache: public wxList
518{
519public:
520 wxResourceCache() { }
222ed1d6 521#if !wxUSE_STL
f03fc89f 522 wxResourceCache(const unsigned int keyType) : wxList(keyType) { }
222ed1d6 523#endif
9b51403d 524 ~wxResourceCache();
f03fc89f
VZ
525};
526
527// ---------------------------------------------------------------------------
528// global variables
529// ---------------------------------------------------------------------------
530
c801d85f 531// Lists of GDI objects
f03fc89f
VZ
532WXDLLEXPORT_DATA(extern wxPenList*) wxThePenList;
533WXDLLEXPORT_DATA(extern wxBrushList*) wxTheBrushList;
534WXDLLEXPORT_DATA(extern wxFontList*) wxTheFontList;
535WXDLLEXPORT_DATA(extern wxBitmapList*) wxTheBitmapList;
c801d85f
KB
536
537// Stock objects
f03fc89f
VZ
538WXDLLEXPORT_DATA(extern wxFont*) wxNORMAL_FONT;
539WXDLLEXPORT_DATA(extern wxFont*) wxSMALL_FONT;
540WXDLLEXPORT_DATA(extern wxFont*) wxITALIC_FONT;
541WXDLLEXPORT_DATA(extern wxFont*) wxSWISS_FONT;
542
543WXDLLEXPORT_DATA(extern wxPen*) wxRED_PEN;
544WXDLLEXPORT_DATA(extern wxPen*) wxCYAN_PEN;
545WXDLLEXPORT_DATA(extern wxPen*) wxGREEN_PEN;
546WXDLLEXPORT_DATA(extern wxPen*) wxBLACK_PEN;
547WXDLLEXPORT_DATA(extern wxPen*) wxWHITE_PEN;
548WXDLLEXPORT_DATA(extern wxPen*) wxTRANSPARENT_PEN;
549WXDLLEXPORT_DATA(extern wxPen*) wxBLACK_DASHED_PEN;
550WXDLLEXPORT_DATA(extern wxPen*) wxGREY_PEN;
551WXDLLEXPORT_DATA(extern wxPen*) wxMEDIUM_GREY_PEN;
552WXDLLEXPORT_DATA(extern wxPen*) wxLIGHT_GREY_PEN;
553
554WXDLLEXPORT_DATA(extern wxBrush*) wxBLUE_BRUSH;
555WXDLLEXPORT_DATA(extern wxBrush*) wxGREEN_BRUSH;
556WXDLLEXPORT_DATA(extern wxBrush*) wxWHITE_BRUSH;
557WXDLLEXPORT_DATA(extern wxBrush*) wxBLACK_BRUSH;
558WXDLLEXPORT_DATA(extern wxBrush*) wxGREY_BRUSH;
559WXDLLEXPORT_DATA(extern wxBrush*) wxMEDIUM_GREY_BRUSH;
560WXDLLEXPORT_DATA(extern wxBrush*) wxLIGHT_GREY_BRUSH;
561WXDLLEXPORT_DATA(extern wxBrush*) wxTRANSPARENT_BRUSH;
562WXDLLEXPORT_DATA(extern wxBrush*) wxCYAN_BRUSH;
563WXDLLEXPORT_DATA(extern wxBrush*) wxRED_BRUSH;
564
565WXDLLEXPORT_DATA(extern wxColour*) wxBLACK;
566WXDLLEXPORT_DATA(extern wxColour*) wxWHITE;
567WXDLLEXPORT_DATA(extern wxColour*) wxRED;
568WXDLLEXPORT_DATA(extern wxColour*) wxBLUE;
569WXDLLEXPORT_DATA(extern wxColour*) wxGREEN;
570WXDLLEXPORT_DATA(extern wxColour*) wxCYAN;
571WXDLLEXPORT_DATA(extern wxColour*) wxLIGHT_GREY;
c801d85f
KB
572
573// 'Null' objects
f03fc89f
VZ
574WXDLLEXPORT_DATA(extern wxBitmap) wxNullBitmap;
575WXDLLEXPORT_DATA(extern wxIcon) wxNullIcon;
576WXDLLEXPORT_DATA(extern wxCursor) wxNullCursor;
577WXDLLEXPORT_DATA(extern wxPen) wxNullPen;
578WXDLLEXPORT_DATA(extern wxBrush) wxNullBrush;
579WXDLLEXPORT_DATA(extern wxPalette) wxNullPalette;
580WXDLLEXPORT_DATA(extern wxFont) wxNullFont;
581WXDLLEXPORT_DATA(extern wxColour) wxNullColour;
c801d85f
KB
582
583// Stock cursors types
f03fc89f
VZ
584WXDLLEXPORT_DATA(extern wxCursor*) wxSTANDARD_CURSOR;
585WXDLLEXPORT_DATA(extern wxCursor*) wxHOURGLASS_CURSOR;
586WXDLLEXPORT_DATA(extern wxCursor*) wxCROSS_CURSOR;
587
588WXDLLEXPORT_DATA(extern wxColourDatabase*) wxTheColourDatabase;
589
590WXDLLEXPORT_DATA(extern const wxChar*) wxPanelNameStr;
c801d85f 591
f03fc89f
VZ
592WXDLLEXPORT_DATA(extern const wxSize) wxDefaultSize;
593WXDLLEXPORT_DATA(extern const wxPoint) wxDefaultPosition;
594
595// The list of objects which should be deleted
596WXDLLEXPORT_DATA(extern wxList) wxPendingDelete;
597
598// ---------------------------------------------------------------------------
599// global functions
600// ---------------------------------------------------------------------------
601
602// resource management
6a6c0a8b 603extern void WXDLLEXPORT wxInitializeStockObjects();
a3622daa 604extern void WXDLLEXPORT wxInitializeStockLists();
6a6c0a8b 605extern void WXDLLEXPORT wxDeleteStockObjects();
a3622daa 606extern void WXDLLEXPORT wxDeleteStockLists();
c801d85f 607
f03fc89f 608// is the display colour (or monochrome)?
6a6c0a8b 609extern bool WXDLLEXPORT wxColourDisplay();
c801d85f
KB
610
611// Returns depth of screen
6a6c0a8b
JS
612extern int WXDLLEXPORT wxDisplayDepth();
613#define wxGetDisplayDepth wxDisplayDepth
c801d85f 614
904a68b6 615// get the display size
c801d85f 616extern void WXDLLEXPORT wxDisplaySize(int *width, int *height);
6a6c0a8b 617extern wxSize WXDLLEXPORT wxGetDisplaySize();
904a68b6
RL
618extern void WXDLLEXPORT wxDisplaySizeMM(int *width, int *height);
619extern wxSize WXDLLEXPORT wxGetDisplaySizeMM();
c801d85f 620
ec5d7799
RD
621// Get position and size of the display workarea
622extern void WXDLLEXPORT wxClientDisplayRect(int *x, int *y, int *width, int *height);
623extern wxRect WXDLLEXPORT wxGetClientDisplayRect();
624
f03fc89f 625// set global cursor
c801d85f
KB
626extern void WXDLLEXPORT wxSetCursor(const wxCursor& cursor);
627
c801d85f 628#endif
34138703 629 // _WX_GDICMNH__