]>
Commit | Line | Data |
---|---|---|
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) | |
f03fc89f | 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 | ||
c801d85f | 19 | #ifdef __GNUG__ |
f03fc89f | 20 | #pragma interface "gdicmn.h" |
c801d85f KB |
21 | #endif |
22 | ||
23 | #include "wx/object.h" | |
24 | #include "wx/list.h" | |
25 | #include "wx/hash.h" | |
34138703 | 26 | #include "wx/string.h" |
c801d85f | 27 | #include "wx/setup.h" |
34138703 | 28 | #include "wx/colour.h" |
c801d85f | 29 | |
f03fc89f VZ |
30 | // --------------------------------------------------------------------------- |
31 | // forward declarations | |
32 | // --------------------------------------------------------------------------- | |
33 | ||
34 | class WXDLLEXPORT wxBitmap; | |
35 | class WXDLLEXPORT wxBrush; | |
36 | class WXDLLEXPORT wxColour; | |
37 | class WXDLLEXPORT wxCursor; | |
38 | class WXDLLEXPORT wxFont; | |
39 | class WXDLLEXPORT wxIcon; | |
40 | class WXDLLEXPORT wxPalette; | |
41 | class WXDLLEXPORT wxPen; | |
42 | class WXDLLEXPORT wxRegion; | |
43 | class WXDLLEXPORT wxString; | |
44 | ||
45 | // --------------------------------------------------------------------------- | |
46 | // constants | |
47 | // --------------------------------------------------------------------------- | |
48 | ||
49 | // Bitmap flags | |
50 | enum | |
51 | { | |
52 | wxBITMAP_TYPE_BMP = 1, | |
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, | |
71 | wxBITMAP_TYPE_ANY = 50 | |
72 | }; | |
73 | ||
c801d85f | 74 | // Standard cursors |
f03fc89f VZ |
75 | enum wxStockCursor |
76 | { | |
77 | wxCURSOR_NONE, // should be 0 | |
78 | wxCURSOR_ARROW, | |
79 | wxCURSOR_BULLSEYE, | |
80 | wxCURSOR_CHAR, | |
81 | wxCURSOR_CROSS, | |
82 | wxCURSOR_HAND, | |
83 | wxCURSOR_IBEAM, | |
84 | wxCURSOR_LEFT_BUTTON, | |
85 | wxCURSOR_MAGNIFIER, | |
86 | wxCURSOR_MIDDLE_BUTTON, | |
87 | wxCURSOR_NO_ENTRY, | |
88 | wxCURSOR_PAINT_BRUSH, | |
89 | wxCURSOR_PENCIL, | |
90 | wxCURSOR_POINT_LEFT, | |
91 | wxCURSOR_POINT_RIGHT, | |
92 | wxCURSOR_QUESTION_ARROW, | |
93 | wxCURSOR_RIGHT_BUTTON, | |
94 | wxCURSOR_SIZENESW, | |
95 | wxCURSOR_SIZENS, | |
96 | wxCURSOR_SIZENWSE, | |
97 | wxCURSOR_SIZEWE, | |
98 | wxCURSOR_SIZING, | |
99 | wxCURSOR_SPRAYCAN, | |
100 | wxCURSOR_WAIT, | |
101 | wxCURSOR_WATCH, | |
102 | wxCURSOR_BLANK, | |
c801d85f | 103 | #ifdef __X__ |
f03fc89f VZ |
104 | // Not yet implemented for Windows |
105 | wxCURSOR_CROSS_REVERSE, | |
106 | wxCURSOR_DOUBLE_ARROW, | |
107 | wxCURSOR_BASED_ARROW_UP, | |
ea804aad | 108 | wxCURSOR_BASED_ARROW_DOWN, |
f03fc89f VZ |
109 | #endif // X11 |
110 | ||
111 | wxCURSOR_MAX | |
112 | }; | |
113 | ||
114 | // --------------------------------------------------------------------------- | |
115 | // macros | |
116 | // --------------------------------------------------------------------------- | |
117 | ||
118 | /* Useful macro for creating icons portably, for example: | |
119 | ||
120 | wxIcon *icon = new wxICON(mondrian); | |
121 | ||
122 | expands into: | |
123 | ||
124 | wxIcon *icon = new wxIcon("mondrian"); // On wxMSW | |
125 | wxIcon *icon = new wxIcon(mondrian_xpm); // On wxGTK | |
126 | */ | |
127 | ||
128 | #ifdef __WXMSW__ | |
129 | // Load from a resource | |
130 | #define wxICON(X) wxIcon("" #X "") | |
131 | #elif defined(__WXGTK__) | |
132 | // Initialize from an included XPM | |
133 | #define wxICON(X) wxIcon( (const char**) X##_xpm ) | |
134 | #elif defined(__WXMOTIF__) | |
135 | // Initialize from an included XPM | |
136 | #define wxICON(X) wxIcon( X##_xpm ) | |
137 | #else | |
138 | // This will usually mean something on any platform | |
139 | #define wxICON(X) wxIcon("" #X "") | |
140 | #endif // platform | |
141 | ||
142 | // =========================================================================== | |
143 | // classes | |
144 | // =========================================================================== | |
c801d85f | 145 | |
f03fc89f VZ |
146 | // --------------------------------------------------------------------------- |
147 | // wxSize | |
148 | // --------------------------------------------------------------------------- | |
6a6c0a8b | 149 | class WXDLLEXPORT wxSize |
c801d85f KB |
150 | { |
151 | public: | |
f03fc89f VZ |
152 | // members are public for compatibility |
153 | long x; | |
154 | long y; | |
155 | ||
156 | // constructors | |
157 | wxSize() { x = y = 0; } | |
158 | wxSize(long xx, long yy) { Set(xx, yy); } | |
159 | ||
160 | // no copy ctor or assignment operator - the defaults are ok | |
161 | ||
162 | bool operator==(const wxSize& sz) const { return x == sz.x && y == sz.y; } | |
163 | ||
164 | // FIXME are these really useful? If they're, we should have += &c as well | |
165 | wxSize operator+(const wxSize& sz) { return wxSize(x + sz.x, y + sz.y); } | |
166 | wxSize operator-(const wxSize& sz) { return wxSize(x - sz.x, y - sz.y); } | |
167 | ||
168 | void Set(long xx, long yy) { x = xx; y = yy; } | |
169 | ||
170 | long GetX() const { return x; } | |
171 | long GetY() const { return y; } | |
c801d85f KB |
172 | }; |
173 | ||
f03fc89f VZ |
174 | // --------------------------------------------------------------------------- |
175 | // Point classes: with real or integer coordinates | |
176 | // --------------------------------------------------------------------------- | |
764a3a49 | 177 | |
6a6c0a8b | 178 | class WXDLLEXPORT wxRealPoint |
c801d85f | 179 | { |
f03fc89f VZ |
180 | public: |
181 | double x; | |
182 | double y; | |
183 | ||
184 | wxRealPoint() { x = y = 0.0; }; | |
185 | wxRealPoint(double xx, double yy) { x = xx; y = yy; }; | |
186 | ||
187 | wxRealPoint operator+(const wxRealPoint& pt) { return wxRealPoint(x + pt.x, y + pt.y); } | |
188 | wxRealPoint operator-(const wxRealPoint& pt) { return wxRealPoint(x - pt.x, y - pt.y); } | |
189 | ||
190 | bool operator==(const wxRealPoint& pt) const { return x == pt.x && y == pt.y; } | |
c801d85f KB |
191 | }; |
192 | ||
6a6c0a8b | 193 | class WXDLLEXPORT wxPoint |
c801d85f | 194 | { |
f03fc89f | 195 | public: |
2049ba38 | 196 | #if defined(__WXMSW__) && !defined(__WIN32__) |
f03fc89f VZ |
197 | int x; |
198 | int y; | |
6a6c0a8b | 199 | #else |
f03fc89f VZ |
200 | long x; |
201 | long y; | |
6a6c0a8b JS |
202 | #endif |
203 | ||
f03fc89f VZ |
204 | wxPoint() { x = y = 0; }; |
205 | wxPoint(long xx, long yy) { x = xx; y = yy; }; | |
206 | ||
207 | // no copy ctor or assignment operator - the defaults are ok | |
6a6c0a8b | 208 | |
764a3a49 VZ |
209 | // comparison |
210 | bool operator==(const wxPoint& p) const { return x == p.x && y == p.y; } | |
211 | bool operator!=(const wxPoint& p) const { return !(*this == p); } | |
212 | ||
213 | // arithmetic operations (component wise) | |
214 | wxPoint operator+(const wxPoint& p) { return wxPoint(x + p.x, y + p.y); } | |
215 | wxPoint operator-(const wxPoint& p) { return wxPoint(x - p.x, y - p.y); } | |
f03fc89f | 216 | |
764a3a49 VZ |
217 | wxPoint& operator+=(const wxPoint& p) { x += p.x; y += p.y; return *this; } |
218 | wxPoint& operator-=(const wxPoint& p) { x -= p.x; y -= p.y; return *this; } | |
c801d85f KB |
219 | }; |
220 | ||
221 | #if WXWIN_COMPATIBILITY | |
f03fc89f VZ |
222 | #define wxIntPoint wxPoint |
223 | #define wxRectangle wxRect | |
224 | #endif // WXWIN_COMPATIBILITY | |
225 | ||
226 | // --------------------------------------------------------------------------- | |
227 | // wxRect | |
228 | // --------------------------------------------------------------------------- | |
c801d85f | 229 | |
6a6c0a8b JS |
230 | class WXDLLEXPORT wxRect |
231 | { | |
c801d85f | 232 | public: |
a23fd0e1 VZ |
233 | wxRect() { x = y = width = height = 0; } |
234 | wxRect(long xx, long yy, long ww, long hh) | |
235 | { x = xx; y = yy; width = ww; height = hh; } | |
f03fc89f VZ |
236 | wxRect(const wxPoint& topLeft, const wxPoint& bottomRight); |
237 | wxRect(const wxPoint& pos, const wxSize& size); | |
a23fd0e1 VZ |
238 | |
239 | // default copy ctor and assignment operators ok | |
c801d85f | 240 | |
f03fc89f VZ |
241 | long GetX() const { return x; } |
242 | void SetX(long xx) { x = xx; } | |
c801d85f | 243 | |
f03fc89f VZ |
244 | long GetY() const { return y; } |
245 | void SetY(long yy) { y = yy; } | |
c801d85f | 246 | |
f03fc89f VZ |
247 | long GetWidth() const { return width; } |
248 | void SetWidth(long w) { width = w; } | |
c801d85f | 249 | |
f03fc89f VZ |
250 | long GetHeight() const { return height; } |
251 | void SetHeight(long h) { height = h; } | |
252 | ||
253 | wxPoint GetPosition() { return wxPoint(x, y); } | |
254 | wxSize GetSize() { return wxSize(width, height); } | |
255 | ||
256 | long GetLeft() const { return x; } | |
257 | long GetTop() const { return y; } | |
258 | long GetBottom() const { return y + height; } | |
259 | long GetRight() const { return x + width; } | |
260 | ||
764a3a49 VZ |
261 | bool operator==(const wxRect& rect) const; |
262 | bool operator!=(const wxRect& rect) const { return !(*this == rect); } | |
f03fc89f VZ |
263 | |
264 | public: | |
265 | long x, y, width, height; | |
266 | }; | |
c801d85f | 267 | |
f03fc89f | 268 | // --------------------------------------------------------------------------- |
c801d85f | 269 | // Management of pens, brushes and fonts |
f03fc89f VZ |
270 | // --------------------------------------------------------------------------- |
271 | ||
272 | class WXDLLEXPORT wxPenList : public wxList | |
c801d85f | 273 | { |
f03fc89f VZ |
274 | DECLARE_DYNAMIC_CLASS(wxPenList) |
275 | ||
276 | public: | |
277 | wxPenList() { } | |
278 | ~wxPenList(); | |
279 | ||
280 | void AddPen(wxPen *pen); | |
281 | void RemovePen(wxPen *pen); | |
282 | wxPen *FindOrCreatePen(const wxColour& colour, int width, int style); | |
c801d85f KB |
283 | }; |
284 | ||
f03fc89f | 285 | class WXDLLEXPORT wxBrushList : public wxList |
c801d85f | 286 | { |
f03fc89f VZ |
287 | DECLARE_DYNAMIC_CLASS(wxBrushList) |
288 | ||
289 | public: | |
290 | wxBrushList() { } | |
291 | ~wxBrushList(); | |
292 | ||
293 | void AddBrush(wxBrush *brush); | |
294 | void RemoveBrush(wxBrush *brush); | |
295 | wxBrush *FindOrCreateBrush(const wxColour& colour, int style); | |
c801d85f KB |
296 | }; |
297 | ||
9d2f3c71 | 298 | WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString; |
c801d85f | 299 | |
f03fc89f | 300 | class WXDLLEXPORT wxFontList : public wxList |
c801d85f | 301 | { |
f03fc89f VZ |
302 | DECLARE_DYNAMIC_CLASS(wxFontList) |
303 | ||
304 | public: | |
305 | wxFontList() { } | |
306 | ~wxFontList(); | |
307 | ||
308 | void AddFont(wxFont *font); | |
309 | void RemoveFont(wxFont *font); | |
310 | wxFont *FindOrCreateFont(int pointSize, int family, int style, int weight, | |
311 | bool underline = FALSE, | |
312 | const wxString& face = wxEmptyString); | |
c801d85f KB |
313 | }; |
314 | ||
f03fc89f | 315 | class WXDLLEXPORT wxColourDatabase : public wxList |
c801d85f | 316 | { |
f03fc89f VZ |
317 | DECLARE_CLASS(wxColourDatabase) |
318 | ||
319 | public: | |
320 | wxColourDatabase(int type); | |
321 | ~wxColourDatabase() ; | |
322 | ||
323 | // Not const because it may add a name to the database | |
324 | wxColour *FindColour(const wxString& colour) ; | |
325 | wxString FindName(const wxColour& colour) const; | |
326 | void Initialize(); | |
c801d85f KB |
327 | }; |
328 | ||
f03fc89f | 329 | class WXDLLEXPORT wxBitmapList : public wxList |
c801d85f | 330 | { |
f03fc89f | 331 | DECLARE_DYNAMIC_CLASS(wxBitmapList) |
c801d85f | 332 | |
f03fc89f VZ |
333 | public: |
334 | wxBitmapList(); | |
335 | ~wxBitmapList(); | |
336 | ||
337 | void AddBitmap(wxBitmap *bitmap); | |
338 | void RemoveBitmap(wxBitmap *bitmap); | |
c801d85f KB |
339 | }; |
340 | ||
f03fc89f VZ |
341 | class WXDLLEXPORT wxResourceCache: public wxList |
342 | { | |
343 | public: | |
344 | wxResourceCache() { } | |
345 | wxResourceCache(const unsigned int keyType) : wxList(keyType) { } | |
346 | ~wxResourceCache(); | |
347 | ||
348 | private: | |
349 | DECLARE_DYNAMIC_CLASS(wxResourceCache) | |
350 | }; | |
351 | ||
352 | // --------------------------------------------------------------------------- | |
353 | // global variables | |
354 | // --------------------------------------------------------------------------- | |
355 | ||
c801d85f | 356 | // Lists of GDI objects |
f03fc89f VZ |
357 | WXDLLEXPORT_DATA(extern wxPenList*) wxThePenList; |
358 | WXDLLEXPORT_DATA(extern wxBrushList*) wxTheBrushList; | |
359 | WXDLLEXPORT_DATA(extern wxFontList*) wxTheFontList; | |
360 | WXDLLEXPORT_DATA(extern wxBitmapList*) wxTheBitmapList; | |
c801d85f KB |
361 | |
362 | // Stock objects | |
f03fc89f VZ |
363 | WXDLLEXPORT_DATA(extern wxFont*) wxNORMAL_FONT; |
364 | WXDLLEXPORT_DATA(extern wxFont*) wxSMALL_FONT; | |
365 | WXDLLEXPORT_DATA(extern wxFont*) wxITALIC_FONT; | |
366 | WXDLLEXPORT_DATA(extern wxFont*) wxSWISS_FONT; | |
367 | ||
368 | WXDLLEXPORT_DATA(extern wxPen*) wxRED_PEN; | |
369 | WXDLLEXPORT_DATA(extern wxPen*) wxCYAN_PEN; | |
370 | WXDLLEXPORT_DATA(extern wxPen*) wxGREEN_PEN; | |
371 | WXDLLEXPORT_DATA(extern wxPen*) wxBLACK_PEN; | |
372 | WXDLLEXPORT_DATA(extern wxPen*) wxWHITE_PEN; | |
373 | WXDLLEXPORT_DATA(extern wxPen*) wxTRANSPARENT_PEN; | |
374 | WXDLLEXPORT_DATA(extern wxPen*) wxBLACK_DASHED_PEN; | |
375 | WXDLLEXPORT_DATA(extern wxPen*) wxGREY_PEN; | |
376 | WXDLLEXPORT_DATA(extern wxPen*) wxMEDIUM_GREY_PEN; | |
377 | WXDLLEXPORT_DATA(extern wxPen*) wxLIGHT_GREY_PEN; | |
378 | ||
379 | WXDLLEXPORT_DATA(extern wxBrush*) wxBLUE_BRUSH; | |
380 | WXDLLEXPORT_DATA(extern wxBrush*) wxGREEN_BRUSH; | |
381 | WXDLLEXPORT_DATA(extern wxBrush*) wxWHITE_BRUSH; | |
382 | WXDLLEXPORT_DATA(extern wxBrush*) wxBLACK_BRUSH; | |
383 | WXDLLEXPORT_DATA(extern wxBrush*) wxGREY_BRUSH; | |
384 | WXDLLEXPORT_DATA(extern wxBrush*) wxMEDIUM_GREY_BRUSH; | |
385 | WXDLLEXPORT_DATA(extern wxBrush*) wxLIGHT_GREY_BRUSH; | |
386 | WXDLLEXPORT_DATA(extern wxBrush*) wxTRANSPARENT_BRUSH; | |
387 | WXDLLEXPORT_DATA(extern wxBrush*) wxCYAN_BRUSH; | |
388 | WXDLLEXPORT_DATA(extern wxBrush*) wxRED_BRUSH; | |
389 | ||
390 | WXDLLEXPORT_DATA(extern wxColour*) wxBLACK; | |
391 | WXDLLEXPORT_DATA(extern wxColour*) wxWHITE; | |
392 | WXDLLEXPORT_DATA(extern wxColour*) wxRED; | |
393 | WXDLLEXPORT_DATA(extern wxColour*) wxBLUE; | |
394 | WXDLLEXPORT_DATA(extern wxColour*) wxGREEN; | |
395 | WXDLLEXPORT_DATA(extern wxColour*) wxCYAN; | |
396 | WXDLLEXPORT_DATA(extern wxColour*) wxLIGHT_GREY; | |
c801d85f KB |
397 | |
398 | // 'Null' objects | |
f03fc89f VZ |
399 | WXDLLEXPORT_DATA(extern wxBitmap) wxNullBitmap; |
400 | WXDLLEXPORT_DATA(extern wxIcon) wxNullIcon; | |
401 | WXDLLEXPORT_DATA(extern wxCursor) wxNullCursor; | |
402 | WXDLLEXPORT_DATA(extern wxPen) wxNullPen; | |
403 | WXDLLEXPORT_DATA(extern wxBrush) wxNullBrush; | |
404 | WXDLLEXPORT_DATA(extern wxPalette) wxNullPalette; | |
405 | WXDLLEXPORT_DATA(extern wxFont) wxNullFont; | |
406 | WXDLLEXPORT_DATA(extern wxColour) wxNullColour; | |
c801d85f KB |
407 | |
408 | // Stock cursors types | |
f03fc89f VZ |
409 | WXDLLEXPORT_DATA(extern wxCursor*) wxSTANDARD_CURSOR; |
410 | WXDLLEXPORT_DATA(extern wxCursor*) wxHOURGLASS_CURSOR; | |
411 | WXDLLEXPORT_DATA(extern wxCursor*) wxCROSS_CURSOR; | |
412 | ||
413 | WXDLLEXPORT_DATA(extern wxColourDatabase*) wxTheColourDatabase; | |
414 | ||
415 | WXDLLEXPORT_DATA(extern const wxChar*) wxPanelNameStr; | |
c801d85f | 416 | |
f03fc89f VZ |
417 | WXDLLEXPORT_DATA(extern const wxSize) wxDefaultSize; |
418 | WXDLLEXPORT_DATA(extern const wxPoint) wxDefaultPosition; | |
419 | ||
420 | // The list of objects which should be deleted | |
421 | WXDLLEXPORT_DATA(extern wxList) wxPendingDelete; | |
422 | ||
423 | // --------------------------------------------------------------------------- | |
424 | // global functions | |
425 | // --------------------------------------------------------------------------- | |
426 | ||
427 | // resource management | |
6a6c0a8b | 428 | extern void WXDLLEXPORT wxInitializeStockObjects(); |
a3622daa | 429 | extern void WXDLLEXPORT wxInitializeStockLists(); |
6a6c0a8b | 430 | extern void WXDLLEXPORT wxDeleteStockObjects(); |
a3622daa | 431 | extern void WXDLLEXPORT wxDeleteStockLists(); |
c801d85f | 432 | |
f03fc89f | 433 | // is the display colour (or monochrome)? |
6a6c0a8b | 434 | extern bool WXDLLEXPORT wxColourDisplay(); |
c801d85f KB |
435 | |
436 | // Returns depth of screen | |
6a6c0a8b JS |
437 | extern int WXDLLEXPORT wxDisplayDepth(); |
438 | #define wxGetDisplayDepth wxDisplayDepth | |
c801d85f | 439 | |
f03fc89f | 440 | // get the diaplay size |
c801d85f | 441 | extern void WXDLLEXPORT wxDisplaySize(int *width, int *height); |
6a6c0a8b | 442 | extern wxSize WXDLLEXPORT wxGetDisplaySize(); |
c801d85f | 443 | |
f03fc89f | 444 | // set global cursor |
c801d85f KB |
445 | extern void WXDLLEXPORT wxSetCursor(const wxCursor& cursor); |
446 | ||
c801d85f | 447 | #endif |
34138703 | 448 | // _WX_GDICMNH__ |