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
,
129 // ---------------------------------------------------------------------------
131 // ---------------------------------------------------------------------------
133 /* Useful macro for creating icons portably, for example:
135 wxIcon *icon = new wxICON(mondrian);
139 wxIcon *icon = new wxIcon("mondrian"); // On wxMSW
140 wxIcon *icon = new wxIcon(mondrian_xpm); // On wxGTK
144 // Load from a resource
145 #define wxICON(X) wxIcon("" #X "")
146 #elif defined(__WXPM__)
147 // Load from a resource
148 #define wxICON(X) wxIcon("" #X "")
149 #elif defined(__WXGTK__)
150 // Initialize from an included XPM
151 #define wxICON(X) wxIcon( (const char**) X##_xpm )
152 #elif defined(__WXMOTIF__)
153 // Initialize from an included XPM
154 #define wxICON(X) wxIcon( X##_xpm )
156 // This will usually mean something on any platform
157 #define wxICON(X) wxIcon("" #X "")
160 /* Another macro: this one is for portable creation of bitmaps. We assume that
161 under Unix bitmaps live in XPMs and under Windows they're in ressources.
164 #if defined(__WXMSW__) || defined(__WXPM__)
165 #define wxBITMAP(name) wxBitmap(#name, wxBITMAP_TYPE_RESOURCE)
166 #else // !(Windows || OS2)
167 #define wxBITMAP(name) wxBitmap(name##_xpm, wxBITMAP_TYPE_XPM)
170 // ===========================================================================
172 // ===========================================================================
174 // ---------------------------------------------------------------------------
176 // ---------------------------------------------------------------------------
177 class WXDLLEXPORT wxSize
180 // members are public for compatibility (don't use them directly,
181 // especially that there names were chosen very unfortunately - they should
182 // have been called width and height)
186 wxSize() { x
= y
= 0; }
187 wxSize(int xx
, int yy
) { Set(xx
, yy
); }
189 // no copy ctor or assignment operator - the defaults are ok
190 bool operator==(const wxSize
& sz
) const { return x
== sz
.x
&& y
== sz
.y
; }
192 // FIXME are these really useful? If they're, we should have += &c as well
193 wxSize
operator+(const wxSize
& sz
) { return wxSize(x
+ sz
.x
, y
+ sz
.y
); }
194 wxSize
operator-(const wxSize
& sz
) { return wxSize(x
- sz
.x
, y
- sz
.y
); }
197 void Set(int xx
, int yy
) { x
= xx
; y
= yy
; }
198 void SetWidth(int w
) { x
= w
; }
199 void SetHeight(int h
) { y
= h
; }
201 int GetWidth() const { return x
; }
202 int GetHeight() const { return y
; }
205 int GetX() const { return x
; }
206 int GetY() const { return y
; }
209 // ---------------------------------------------------------------------------
210 // Point classes: with real or integer coordinates
211 // ---------------------------------------------------------------------------
213 class WXDLLEXPORT wxRealPoint
219 wxRealPoint() { x
= y
= 0.0; };
220 wxRealPoint(double xx
, double yy
) { x
= xx
; y
= yy
; };
222 wxRealPoint
operator+(const wxRealPoint
& pt
) { return wxRealPoint(x
+ pt
.x
, y
+ pt
.y
); }
223 wxRealPoint
operator-(const wxRealPoint
& pt
) { return wxRealPoint(x
- pt
.x
, y
- pt
.y
); }
225 bool operator==(const wxRealPoint
& pt
) const { return x
== pt
.x
&& y
== pt
.y
; }
228 class WXDLLEXPORT wxPoint
233 wxPoint() { x
= y
= 0; };
234 wxPoint(int xx
, int yy
) { x
= xx
; y
= yy
; };
236 // no copy ctor or assignment operator - the defaults are ok
239 bool operator==(const wxPoint
& p
) const { return x
== p
.x
&& y
== p
.y
; }
240 bool operator!=(const wxPoint
& p
) const { return !(*this == p
); }
242 // arithmetic operations (component wise)
243 wxPoint
operator+(const wxPoint
& p
) { return wxPoint(x
+ p
.x
, y
+ p
.y
); }
244 wxPoint
operator-(const wxPoint
& p
) { return wxPoint(x
- p
.x
, y
- p
.y
); }
246 wxPoint
& operator+=(const wxPoint
& p
) { x
+= p
.x
; y
+= p
.y
; return *this; }
247 wxPoint
& operator-=(const wxPoint
& p
) { x
-= p
.x
; y
-= p
.y
; return *this; }
250 #if WXWIN_COMPATIBILITY
251 #define wxIntPoint wxPoint
252 #define wxRectangle wxRect
253 #endif // WXWIN_COMPATIBILITY
255 // ---------------------------------------------------------------------------
257 // ---------------------------------------------------------------------------
259 class WXDLLEXPORT wxRect
262 wxRect() { x
= y
= width
= height
= 0; }
263 wxRect(int xx
, int yy
, int ww
, int hh
)
264 { x
= xx
; y
= yy
; width
= ww
; height
= hh
; }
265 wxRect(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
266 wxRect(const wxPoint
& pos
, const wxSize
& size
);
268 // default copy ctor and assignment operators ok
270 int GetX() const { return x
; }
271 void SetX(int xx
) { x
= xx
; }
273 int GetY() const { return y
; }
274 void SetY(int yy
) { y
= yy
; }
276 int GetWidth() const { return width
; }
277 void SetWidth(int w
) { width
= w
; }
279 int GetHeight() const { return height
; }
280 void SetHeight(int h
) { height
= h
; }
282 wxPoint
GetPosition() const { return wxPoint(x
, y
); }
283 wxSize
GetSize() const { return wxSize(width
, height
); }
285 // MFC-like functions
287 int GetLeft() const { return x
; }
288 int GetTop() const { return y
; }
289 int GetBottom() const { return y
+ height
- 1; }
290 int GetRight() const { return x
+ width
- 1; }
292 void SetLeft(int left
) { x
= left
; }
293 void SetRight(int right
) { width
= right
- x
+ 1; }
294 void SetTop(int top
) { y
= top
; }
295 void SetBottom(int bottom
) { height
= bottom
- y
+ 1; }
297 bool operator==(const wxRect
& rect
) const;
298 bool operator!=(const wxRect
& rect
) const { return !(*this == rect
); }
300 bool Inside(int cx
, int cy
) const;
301 wxRect
operator + (const wxRect
& rect
) const;
302 const wxRect
& operator += (const wxRect
& rect
);
305 int x
, y
, width
, height
;
308 // ---------------------------------------------------------------------------
309 // Management of pens, brushes and fonts
310 // ---------------------------------------------------------------------------
312 class WXDLLEXPORT wxPenList
: public wxList
314 DECLARE_DYNAMIC_CLASS(wxPenList
)
320 void AddPen(wxPen
*pen
);
321 void RemovePen(wxPen
*pen
);
322 wxPen
*FindOrCreatePen(const wxColour
& colour
, int width
, int style
);
325 class WXDLLEXPORT wxBrushList
: public wxList
327 DECLARE_DYNAMIC_CLASS(wxBrushList
)
333 void AddBrush(wxBrush
*brush
);
334 void RemoveBrush(wxBrush
*brush
);
335 wxBrush
*FindOrCreateBrush(const wxColour
& colour
, int style
);
338 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
340 class WXDLLEXPORT wxFontList
: public wxList
342 DECLARE_DYNAMIC_CLASS(wxFontList
)
348 void AddFont(wxFont
*font
);
349 void RemoveFont(wxFont
*font
);
350 wxFont
*FindOrCreateFont(int pointSize
, int family
, int style
, int weight
,
351 bool underline
= FALSE
,
352 const wxString
& face
= wxEmptyString
,
353 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
);
356 class WXDLLEXPORT wxColourDatabase
: public wxList
358 DECLARE_CLASS(wxColourDatabase
)
361 wxColourDatabase(int type
);
362 ~wxColourDatabase() ;
364 // Not const because it may add a name to the database
365 wxColour
*FindColour(const wxString
& colour
) ;
366 wxString
FindName(const wxColour
& colour
) const;
370 class WXDLLEXPORT wxBitmapList
: public wxList
372 DECLARE_DYNAMIC_CLASS(wxBitmapList
)
378 void AddBitmap(wxBitmap
*bitmap
);
379 void RemoveBitmap(wxBitmap
*bitmap
);
382 class WXDLLEXPORT wxResourceCache
: public wxList
385 wxResourceCache() { }
386 wxResourceCache(const unsigned int keyType
) : wxList(keyType
) { }
390 DECLARE_DYNAMIC_CLASS(wxResourceCache
)
393 // ---------------------------------------------------------------------------
395 // ---------------------------------------------------------------------------
397 // Lists of GDI objects
398 WXDLLEXPORT_DATA(extern wxPenList
*) wxThePenList
;
399 WXDLLEXPORT_DATA(extern wxBrushList
*) wxTheBrushList
;
400 WXDLLEXPORT_DATA(extern wxFontList
*) wxTheFontList
;
401 WXDLLEXPORT_DATA(extern wxBitmapList
*) wxTheBitmapList
;
404 WXDLLEXPORT_DATA(extern wxFont
*) wxNORMAL_FONT
;
405 WXDLLEXPORT_DATA(extern wxFont
*) wxSMALL_FONT
;
406 WXDLLEXPORT_DATA(extern wxFont
*) wxITALIC_FONT
;
407 WXDLLEXPORT_DATA(extern wxFont
*) wxSWISS_FONT
;
409 WXDLLEXPORT_DATA(extern wxPen
*) wxRED_PEN
;
410 WXDLLEXPORT_DATA(extern wxPen
*) wxCYAN_PEN
;
411 WXDLLEXPORT_DATA(extern wxPen
*) wxGREEN_PEN
;
412 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_PEN
;
413 WXDLLEXPORT_DATA(extern wxPen
*) wxWHITE_PEN
;
414 WXDLLEXPORT_DATA(extern wxPen
*) wxTRANSPARENT_PEN
;
415 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_DASHED_PEN
;
416 WXDLLEXPORT_DATA(extern wxPen
*) wxGREY_PEN
;
417 WXDLLEXPORT_DATA(extern wxPen
*) wxMEDIUM_GREY_PEN
;
418 WXDLLEXPORT_DATA(extern wxPen
*) wxLIGHT_GREY_PEN
;
420 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLUE_BRUSH
;
421 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREEN_BRUSH
;
422 WXDLLEXPORT_DATA(extern wxBrush
*) wxWHITE_BRUSH
;
423 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLACK_BRUSH
;
424 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREY_BRUSH
;
425 WXDLLEXPORT_DATA(extern wxBrush
*) wxMEDIUM_GREY_BRUSH
;
426 WXDLLEXPORT_DATA(extern wxBrush
*) wxLIGHT_GREY_BRUSH
;
427 WXDLLEXPORT_DATA(extern wxBrush
*) wxTRANSPARENT_BRUSH
;
428 WXDLLEXPORT_DATA(extern wxBrush
*) wxCYAN_BRUSH
;
429 WXDLLEXPORT_DATA(extern wxBrush
*) wxRED_BRUSH
;
431 WXDLLEXPORT_DATA(extern wxColour
*) wxBLACK
;
432 WXDLLEXPORT_DATA(extern wxColour
*) wxWHITE
;
433 WXDLLEXPORT_DATA(extern wxColour
*) wxRED
;
434 WXDLLEXPORT_DATA(extern wxColour
*) wxBLUE
;
435 WXDLLEXPORT_DATA(extern wxColour
*) wxGREEN
;
436 WXDLLEXPORT_DATA(extern wxColour
*) wxCYAN
;
437 WXDLLEXPORT_DATA(extern wxColour
*) wxLIGHT_GREY
;
440 WXDLLEXPORT_DATA(extern wxBitmap
) wxNullBitmap
;
441 WXDLLEXPORT_DATA(extern wxIcon
) wxNullIcon
;
442 WXDLLEXPORT_DATA(extern wxCursor
) wxNullCursor
;
443 WXDLLEXPORT_DATA(extern wxPen
) wxNullPen
;
444 WXDLLEXPORT_DATA(extern wxBrush
) wxNullBrush
;
445 WXDLLEXPORT_DATA(extern wxPalette
) wxNullPalette
;
446 WXDLLEXPORT_DATA(extern wxFont
) wxNullFont
;
447 WXDLLEXPORT_DATA(extern wxColour
) wxNullColour
;
449 // Stock cursors types
450 WXDLLEXPORT_DATA(extern wxCursor
*) wxSTANDARD_CURSOR
;
451 WXDLLEXPORT_DATA(extern wxCursor
*) wxHOURGLASS_CURSOR
;
452 WXDLLEXPORT_DATA(extern wxCursor
*) wxCROSS_CURSOR
;
454 WXDLLEXPORT_DATA(extern wxColourDatabase
*) wxTheColourDatabase
;
456 WXDLLEXPORT_DATA(extern const wxChar
*) wxPanelNameStr
;
458 WXDLLEXPORT_DATA(extern const wxSize
) wxDefaultSize
;
459 WXDLLEXPORT_DATA(extern const wxPoint
) wxDefaultPosition
;
461 // The list of objects which should be deleted
462 WXDLLEXPORT_DATA(extern wxList
) wxPendingDelete
;
464 // ---------------------------------------------------------------------------
466 // ---------------------------------------------------------------------------
468 // resource management
469 extern void WXDLLEXPORT
wxInitializeStockObjects();
470 extern void WXDLLEXPORT
wxInitializeStockLists();
471 extern void WXDLLEXPORT
wxDeleteStockObjects();
472 extern void WXDLLEXPORT
wxDeleteStockLists();
474 // is the display colour (or monochrome)?
475 extern bool WXDLLEXPORT
wxColourDisplay();
477 // Returns depth of screen
478 extern int WXDLLEXPORT
wxDisplayDepth();
479 #define wxGetDisplayDepth wxDisplayDepth
481 // get the diaplay size
482 extern void WXDLLEXPORT
wxDisplaySize(int *width
, int *height
);
483 extern wxSize WXDLLEXPORT
wxGetDisplaySize();
486 extern void WXDLLEXPORT
wxSetCursor(const wxCursor
& cursor
);