1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Common GDI classes, types and declarations
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
20 #pragma interface "gdicmn.h"
23 #include "wx/object.h"
26 #include "wx/string.h"
28 #include "wx/colour.h"
31 // ---------------------------------------------------------------------------
32 // forward declarations
33 // ---------------------------------------------------------------------------
35 class WXDLLEXPORT wxBitmap
;
36 class WXDLLEXPORT wxBrush
;
37 class WXDLLEXPORT wxColour
;
38 class WXDLLEXPORT wxCursor
;
39 class WXDLLEXPORT wxFont
;
40 class WXDLLEXPORT wxIcon
;
41 class WXDLLEXPORT wxPalette
;
42 class WXDLLEXPORT wxPen
;
43 class WXDLLEXPORT wxRegion
;
44 class WXDLLEXPORT wxString
;
46 // ---------------------------------------------------------------------------
48 // ---------------------------------------------------------------------------
53 wxBITMAP_TYPE_INVALID
, // should be == 0 for compatibility!
55 wxBITMAP_TYPE_BMP_RESOURCE
,
56 wxBITMAP_TYPE_RESOURCE
= wxBITMAP_TYPE_BMP_RESOURCE
,
58 wxBITMAP_TYPE_ICO_RESOURCE
,
60 wxBITMAP_TYPE_CUR_RESOURCE
,
62 wxBITMAP_TYPE_XBM_DATA
,
64 wxBITMAP_TYPE_XPM_DATA
,
66 wxBITMAP_TYPE_TIF_RESOURCE
,
68 wxBITMAP_TYPE_GIF_RESOURCE
,
70 wxBITMAP_TYPE_PNG_RESOURCE
,
72 wxBITMAP_TYPE_JPEG_RESOURCE
,
74 wxBITMAP_TYPE_PNM_RESOURCE
,
76 wxBITMAP_TYPE_PCX_RESOURCE
,
78 wxBITMAP_TYPE_PICT_RESOURCE
,
80 wxBITMAP_TYPE_ICON_RESOURCE
,
81 wxBITMAP_TYPE_MACCURSOR
,
82 wxBITMAP_TYPE_MACCURSOR_RESOURCE
,
83 wxBITMAP_TYPE_ANY
= 50
89 wxCURSOR_NONE
, // should be 0
98 wxCURSOR_MIDDLE_BUTTON
,
100 wxCURSOR_PAINT_BRUSH
,
103 wxCURSOR_POINT_RIGHT
,
104 wxCURSOR_QUESTION_ARROW
,
105 wxCURSOR_RIGHT_BUTTON
,
116 wxCURSOR_DEFAULT
, // standard X11 cursor
119 // Not yet implemented for Windows
120 wxCURSOR_CROSS_REVERSE
,
121 wxCURSOR_DOUBLE_ARROW
,
122 wxCURSOR_BASED_ARROW_UP
,
123 wxCURSOR_BASED_ARROW_DOWN
,
130 #define wxCURSOR_DEFAULT wxCURSOR_ARROW
133 // ---------------------------------------------------------------------------
135 // ---------------------------------------------------------------------------
137 /* Useful macro for creating icons portably, for example:
139 wxIcon *icon = new wxICON(mondrian);
143 wxIcon *icon = new wxIcon("mondrian"); // On wxMSW
144 wxIcon *icon = new wxIcon(mondrian_xpm); // On wxGTK
148 // Load from a resource
149 #define wxICON(X) wxIcon("" #X "")
150 #elif defined(__WXPM__)
151 // Load from a resource
152 #define wxICON(X) wxIcon("" #X "")
153 #elif defined(__WXGTK__)
154 // Initialize from an included XPM
155 #define wxICON(X) wxIcon( (const char**) X##_xpm )
156 #elif defined(__WXMOTIF__)
157 // Initialize from an included XPM
158 #define wxICON(X) wxIcon( X##_xpm )
160 // This will usually mean something on any platform
161 #define wxICON(X) wxIcon("" #X "")
164 /* Another macro: this one is for portable creation of bitmaps. We assume that
165 under Unix bitmaps live in XPMs and under Windows they're in ressources.
168 #if defined(__WXMSW__) || defined(__WXPM__)
169 #define wxBITMAP(name) wxBitmap(#name, wxBITMAP_TYPE_RESOURCE)
170 #elif defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__)
171 // Initialize from an included XPM
172 #define wxBITMAP(name) wxBitmap( (const char**) name##_xpm )
173 #else // other platforms
174 #define wxBITMAP(name) wxBitmap(name##_xpm, wxBITMAP_TYPE_XPM)
177 // ===========================================================================
179 // ===========================================================================
181 // ---------------------------------------------------------------------------
183 // ---------------------------------------------------------------------------
184 class WXDLLEXPORT wxSize
187 // members are public for compatibility (don't use them directly,
188 // especially that there names were chosen very unfortunately - they should
189 // have been called width and height)
193 wxSize() { x
= y
= 0; }
194 wxSize(int xx
, int yy
) { Set(xx
, yy
); }
196 // no copy ctor or assignment operator - the defaults are ok
197 bool operator==(const wxSize
& sz
) const { return x
== sz
.x
&& y
== sz
.y
; }
199 // FIXME are these really useful? If they're, we should have += &c as well
200 wxSize
operator+(const wxSize
& sz
) { return wxSize(x
+ sz
.x
, y
+ sz
.y
); }
201 wxSize
operator-(const wxSize
& sz
) { return wxSize(x
- sz
.x
, y
- sz
.y
); }
204 void Set(int xx
, int yy
) { x
= xx
; y
= yy
; }
205 void SetWidth(int w
) { x
= w
; }
206 void SetHeight(int h
) { y
= h
; }
208 int GetWidth() const { return x
; }
209 int GetHeight() const { return y
; }
212 int GetX() const { return x
; }
213 int GetY() const { return y
; }
216 // ---------------------------------------------------------------------------
217 // Point classes: with real or integer coordinates
218 // ---------------------------------------------------------------------------
220 class WXDLLEXPORT wxRealPoint
226 wxRealPoint() { x
= y
= 0.0; };
227 wxRealPoint(double xx
, double yy
) { x
= xx
; y
= yy
; };
229 wxRealPoint
operator+(const wxRealPoint
& pt
) const { return wxRealPoint(x
+ pt
.x
, y
+ pt
.y
); }
230 wxRealPoint
operator-(const wxRealPoint
& pt
) const { return wxRealPoint(x
- pt
.x
, y
- pt
.y
); }
232 bool operator==(const wxRealPoint
& pt
) const { return x
== pt
.x
&& y
== pt
.y
; }
235 class WXDLLEXPORT wxPoint
240 wxPoint() { x
= y
= 0; };
241 wxPoint(int xx
, int yy
) { x
= xx
; y
= yy
; };
243 // no copy ctor or assignment operator - the defaults are ok
246 bool operator==(const wxPoint
& p
) const { return x
== p
.x
&& y
== p
.y
; }
247 bool operator!=(const wxPoint
& p
) const { return !(*this == p
); }
249 // arithmetic operations (component wise)
250 wxPoint
operator+(const wxPoint
& p
) const { return wxPoint(x
+ p
.x
, y
+ p
.y
); }
251 wxPoint
operator-(const wxPoint
& p
) const { return wxPoint(x
- p
.x
, y
- p
.y
); }
253 wxPoint
& operator+=(const wxPoint
& p
) { x
+= p
.x
; y
+= p
.y
; return *this; }
254 wxPoint
& operator-=(const wxPoint
& p
) { x
-= p
.x
; y
-= p
.y
; return *this; }
257 #if WXWIN_COMPATIBILITY
258 #define wxIntPoint wxPoint
259 #define wxRectangle wxRect
260 #endif // WXWIN_COMPATIBILITY
262 // ---------------------------------------------------------------------------
264 // ---------------------------------------------------------------------------
266 class WXDLLEXPORT wxRect
269 wxRect() { x
= y
= width
= height
= 0; }
270 wxRect(int xx
, int yy
, int ww
, int hh
)
271 { x
= xx
; y
= yy
; width
= ww
; height
= hh
; }
272 wxRect(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
273 wxRect(const wxPoint
& pos
, const wxSize
& size
);
275 // default copy ctor and assignment operators ok
277 int GetX() const { return x
; }
278 void SetX(int xx
) { x
= xx
; }
280 int GetY() const { return y
; }
281 void SetY(int yy
) { y
= yy
; }
283 int GetWidth() const { return width
; }
284 void SetWidth(int w
) { width
= w
; }
286 int GetHeight() const { return height
; }
287 void SetHeight(int h
) { height
= h
; }
289 wxPoint
GetPosition() const { return wxPoint(x
, y
); }
290 wxSize
GetSize() const { return wxSize(width
, height
); }
292 int GetLeft() const { return x
; }
293 int GetTop() const { return y
; }
294 int GetBottom() const { return y
+ height
- 1; }
295 int GetRight() const { return x
+ width
- 1; }
297 void SetLeft(int left
) { x
= left
; }
298 void SetRight(int right
) { width
= right
- x
+ 1; }
299 void SetTop(int top
) { y
= top
; }
300 void SetBottom(int bottom
) { height
= bottom
- y
+ 1; }
302 void Inflate(wxCoord dx
, wxCoord dy
)
310 void Inflate(wxCoord d
) { Inflate(d
, d
); }
312 bool operator==(const wxRect
& rect
) const;
313 bool operator!=(const wxRect
& rect
) const { return !(*this == rect
); }
315 bool Inside(int cx
, int cy
) const;
316 bool Inside(const wxPoint
& pt
) const { return Inside(pt
.x
, pt
.y
); }
317 wxRect
operator+(const wxRect
& rect
) const;
318 wxRect
& operator+=(const wxRect
& rect
);
321 int x
, y
, width
, height
;
324 // ---------------------------------------------------------------------------
325 // Management of pens, brushes and fonts
326 // ---------------------------------------------------------------------------
328 typedef wxInt8 wxDash
;
330 class WXDLLEXPORT wxPenList
: public wxList
332 DECLARE_DYNAMIC_CLASS(wxPenList
)
338 void AddPen(wxPen
*pen
);
339 void RemovePen(wxPen
*pen
);
340 wxPen
*FindOrCreatePen(const wxColour
& colour
, int width
, int style
);
343 class WXDLLEXPORT wxBrushList
: public wxList
345 DECLARE_DYNAMIC_CLASS(wxBrushList
)
351 void AddBrush(wxBrush
*brush
);
352 void RemoveBrush(wxBrush
*brush
);
353 wxBrush
*FindOrCreateBrush(const wxColour
& colour
, int style
);
356 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
358 class WXDLLEXPORT wxFontList
: public wxList
360 DECLARE_DYNAMIC_CLASS(wxFontList
)
366 void AddFont(wxFont
*font
);
367 void RemoveFont(wxFont
*font
);
368 wxFont
*FindOrCreateFont(int pointSize
, int family
, int style
, int weight
,
369 bool underline
= FALSE
,
370 const wxString
& face
= wxEmptyString
,
371 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
);
374 class WXDLLEXPORT wxColourDatabase
: public wxList
376 DECLARE_CLASS(wxColourDatabase
)
379 wxColourDatabase(int type
);
380 ~wxColourDatabase() ;
382 // Not const because it may add a name to the database
383 wxColour
*FindColour(const wxString
& colour
) ;
384 wxString
FindName(const wxColour
& colour
) const;
387 // PM keeps its own type of colour table
393 class WXDLLEXPORT wxBitmapList
: public wxList
395 DECLARE_DYNAMIC_CLASS(wxBitmapList
)
401 void AddBitmap(wxBitmap
*bitmap
);
402 void RemoveBitmap(wxBitmap
*bitmap
);
405 class WXDLLEXPORT wxResourceCache
: public wxList
408 wxResourceCache() { }
409 wxResourceCache(const unsigned int keyType
) : wxList(keyType
) { }
413 DECLARE_DYNAMIC_CLASS(wxResourceCache
)
416 // ---------------------------------------------------------------------------
418 // ---------------------------------------------------------------------------
420 // Lists of GDI objects
421 WXDLLEXPORT_DATA(extern wxPenList
*) wxThePenList
;
422 WXDLLEXPORT_DATA(extern wxBrushList
*) wxTheBrushList
;
423 WXDLLEXPORT_DATA(extern wxFontList
*) wxTheFontList
;
424 WXDLLEXPORT_DATA(extern wxBitmapList
*) wxTheBitmapList
;
427 WXDLLEXPORT_DATA(extern wxFont
*) wxNORMAL_FONT
;
428 WXDLLEXPORT_DATA(extern wxFont
*) wxSMALL_FONT
;
429 WXDLLEXPORT_DATA(extern wxFont
*) wxITALIC_FONT
;
430 WXDLLEXPORT_DATA(extern wxFont
*) wxSWISS_FONT
;
432 WXDLLEXPORT_DATA(extern wxPen
*) wxRED_PEN
;
433 WXDLLEXPORT_DATA(extern wxPen
*) wxCYAN_PEN
;
434 WXDLLEXPORT_DATA(extern wxPen
*) wxGREEN_PEN
;
435 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_PEN
;
436 WXDLLEXPORT_DATA(extern wxPen
*) wxWHITE_PEN
;
437 WXDLLEXPORT_DATA(extern wxPen
*) wxTRANSPARENT_PEN
;
438 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_DASHED_PEN
;
439 WXDLLEXPORT_DATA(extern wxPen
*) wxGREY_PEN
;
440 WXDLLEXPORT_DATA(extern wxPen
*) wxMEDIUM_GREY_PEN
;
441 WXDLLEXPORT_DATA(extern wxPen
*) wxLIGHT_GREY_PEN
;
443 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLUE_BRUSH
;
444 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREEN_BRUSH
;
445 WXDLLEXPORT_DATA(extern wxBrush
*) wxWHITE_BRUSH
;
446 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLACK_BRUSH
;
447 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREY_BRUSH
;
448 WXDLLEXPORT_DATA(extern wxBrush
*) wxMEDIUM_GREY_BRUSH
;
449 WXDLLEXPORT_DATA(extern wxBrush
*) wxLIGHT_GREY_BRUSH
;
450 WXDLLEXPORT_DATA(extern wxBrush
*) wxTRANSPARENT_BRUSH
;
451 WXDLLEXPORT_DATA(extern wxBrush
*) wxCYAN_BRUSH
;
452 WXDLLEXPORT_DATA(extern wxBrush
*) wxRED_BRUSH
;
454 WXDLLEXPORT_DATA(extern wxColour
*) wxBLACK
;
455 WXDLLEXPORT_DATA(extern wxColour
*) wxWHITE
;
456 WXDLLEXPORT_DATA(extern wxColour
*) wxRED
;
457 WXDLLEXPORT_DATA(extern wxColour
*) wxBLUE
;
458 WXDLLEXPORT_DATA(extern wxColour
*) wxGREEN
;
459 WXDLLEXPORT_DATA(extern wxColour
*) wxCYAN
;
460 WXDLLEXPORT_DATA(extern wxColour
*) wxLIGHT_GREY
;
463 WXDLLEXPORT_DATA(extern wxBitmap
) wxNullBitmap
;
464 WXDLLEXPORT_DATA(extern wxIcon
) wxNullIcon
;
465 WXDLLEXPORT_DATA(extern wxCursor
) wxNullCursor
;
466 WXDLLEXPORT_DATA(extern wxPen
) wxNullPen
;
467 WXDLLEXPORT_DATA(extern wxBrush
) wxNullBrush
;
468 WXDLLEXPORT_DATA(extern wxPalette
) wxNullPalette
;
469 WXDLLEXPORT_DATA(extern wxFont
) wxNullFont
;
470 WXDLLEXPORT_DATA(extern wxColour
) wxNullColour
;
472 // Stock cursors types
473 WXDLLEXPORT_DATA(extern wxCursor
*) wxSTANDARD_CURSOR
;
474 WXDLLEXPORT_DATA(extern wxCursor
*) wxHOURGLASS_CURSOR
;
475 WXDLLEXPORT_DATA(extern wxCursor
*) wxCROSS_CURSOR
;
477 WXDLLEXPORT_DATA(extern wxColourDatabase
*) wxTheColourDatabase
;
479 WXDLLEXPORT_DATA(extern const wxChar
*) wxPanelNameStr
;
481 WXDLLEXPORT_DATA(extern const wxSize
) wxDefaultSize
;
482 WXDLLEXPORT_DATA(extern const wxPoint
) wxDefaultPosition
;
484 // The list of objects which should be deleted
485 WXDLLEXPORT_DATA(extern wxList
) wxPendingDelete
;
487 // ---------------------------------------------------------------------------
489 // ---------------------------------------------------------------------------
491 // resource management
492 extern void WXDLLEXPORT
wxInitializeStockObjects();
493 extern void WXDLLEXPORT
wxInitializeStockLists();
494 extern void WXDLLEXPORT
wxDeleteStockObjects();
495 extern void WXDLLEXPORT
wxDeleteStockLists();
497 // is the display colour (or monochrome)?
498 extern bool WXDLLEXPORT
wxColourDisplay();
500 // Returns depth of screen
501 extern int WXDLLEXPORT
wxDisplayDepth();
502 #define wxGetDisplayDepth wxDisplayDepth
504 // get the display size
505 extern void WXDLLEXPORT
wxDisplaySize(int *width
, int *height
);
506 extern wxSize WXDLLEXPORT
wxGetDisplaySize();
507 extern void WXDLLEXPORT
wxDisplaySizeMM(int *width
, int *height
);
508 extern wxSize WXDLLEXPORT
wxGetDisplaySizeMM();
511 extern void WXDLLEXPORT
wxSetCursor(const wxCursor
& cursor
);