1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Common GDI classes, types and declarations
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "gdicmn.h"
19 #include "wx/object.h"
22 #include "wx/string.h"
24 #include "wx/colour.h"
36 wxCURSOR_MIDDLE_BUTTON
,
42 wxCURSOR_QUESTION_ARROW
,
43 wxCURSOR_RIGHT_BUTTON
,
54 /* Not yet implemented for Windows */
55 , wxCURSOR_CROSS_REVERSE
,
56 wxCURSOR_DOUBLE_ARROW
,
57 wxCURSOR_BASED_ARROW_UP
,
58 wxCURSOR_BASED_ARROW_DOWN
60 } _standard_cursors_t
;
62 class WXDLLEXPORT wxSize
67 inline wxSize() { x
= 0; y
= 0; }
68 inline wxSize(long xx
, long yy
) { x
= xx
; y
= yy
; }
69 inline wxSize(const wxSize
& sz
) { x
= sz
.x
; y
= sz
.y
; }
70 inline void operator = (const wxSize
& sz
) { x
= sz
.x
; y
= sz
.y
; }
71 inline wxSize
operator + (const wxSize
& sz
) { return wxSize(x
+ sz
.x
, y
+ sz
.y
); }
72 inline wxSize
operator - (const wxSize
& sz
) { return wxSize(x
- sz
.x
, y
- sz
.y
); }
73 inline void Set(long xx
, long yy
) { x
= xx
; y
= yy
; }
74 inline long GetX() const { return x
; }
75 inline long GetY() const { return y
; }
79 class WXDLLEXPORT wxRealPoint
84 inline wxRealPoint() { x
= 0.0; y
= 0.0; };
85 inline wxRealPoint(double _x
, double _y
) { x
= _x
; y
= _y
; };
86 inline wxRealPoint
operator + (const wxRealPoint
& pt
) { return wxRealPoint(x
+ pt
.x
, y
+ pt
.y
); }
87 inline wxRealPoint
operator - (const wxRealPoint
& pt
) { return wxRealPoint(x
- pt
.x
, y
- pt
.y
); }
89 inline void operator = (const wxRealPoint
& pt
) { x
= pt
.x
; y
= pt
.y
; }
92 class WXDLLEXPORT wxPoint
95 #if defined(__WXMSW__) && !defined(__WIN32__)
103 inline wxPoint() { x
= 0; y
= 0; };
104 wxPoint(long the_x
, long the_y
) { x
= the_x
; y
= the_y
; };
105 wxPoint(const wxPoint
& pt
) { x
= pt
.x
; y
= pt
.y
; };
107 inline void operator = (const wxPoint
& pt
) { x
= pt
.x
; y
= pt
.y
; }
108 inline wxPoint
operator + (const wxPoint
& pt
) { return wxPoint(x
+ pt
.x
, y
+ pt
.y
); }
109 inline wxPoint
operator - (const wxPoint
& pt
) { return wxPoint(x
- pt
.x
, y
- pt
.y
); }
112 #if WXWIN_COMPATIBILITY
113 #define wxIntPoint wxPoint
114 #define wxRectangle wxRect
117 class WXDLLEXPORT wxRect
121 wxRect(long x
, long y
, long w
, long h
);
122 wxRect(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
123 wxRect(const wxPoint
& pos
, const wxSize
& size
);
124 wxRect(const wxRect
& rect
);
126 inline long GetX() const { return x
; }
127 inline void SetX(long X
) { x
= X
; }
128 inline long GetY() const { return y
; }
129 inline void SetY(long Y
) { y
= Y
; }
130 inline long GetWidth() const { return width
; }
131 inline void SetWidth(long w
) { width
= w
; }
132 inline long GetHeight() const { return height
; }
133 inline void SetHeight(long h
) { height
= h
; }
135 inline wxPoint
GetPosition() { return wxPoint(x
, y
); }
136 inline wxSize
GetSize() { return wxSize(width
, height
); }
138 inline long GetLeft() const { return x
; }
139 inline long GetTop() const { return y
; }
140 inline long GetBottom() const { return y
+ height
; }
141 inline long GetRight() const { return x
+ width
; }
143 wxRect
& operator = (const wxRect
& rect
);
144 bool operator == (const wxRect
& rect
);
145 bool operator != (const wxRect
& rect
);
147 long x
, y
, width
, height
;
150 class WXDLLEXPORT wxBrush
;
151 class WXDLLEXPORT wxPen
;
152 class WXDLLEXPORT wxBitmap
;
153 class WXDLLEXPORT wxIcon
;
154 class WXDLLEXPORT wxCursor
;
155 class WXDLLEXPORT wxFont
;
156 class WXDLLEXPORT wxPalette
;
157 class WXDLLEXPORT wxPalette
;
163 // Hint to indicate filetype
164 #define wxBITMAP_TYPE_BMP 1
165 #define wxBITMAP_TYPE_BMP_RESOURCE 2
166 #define wxBITMAP_TYPE_ICO 3
167 #define wxBITMAP_TYPE_ICO_RESOURCE 4
168 #define wxBITMAP_TYPE_CUR 5
169 #define wxBITMAP_TYPE_CUR_RESOURCE 6
170 #define wxBITMAP_TYPE_XBM 7
171 #define wxBITMAP_TYPE_XBM_DATA 8
172 #define wxBITMAP_TYPE_XPM 9
173 #define wxBITMAP_TYPE_XPM_DATA 10
174 #define wxBITMAP_TYPE_TIF 11
175 #define wxBITMAP_TYPE_TIF_RESOURCE 12
176 #define wxBITMAP_TYPE_GIF 13
177 #define wxBITMAP_TYPE_GIF_RESOURCE 14
178 #define wxBITMAP_TYPE_PNG 15
179 #define wxBITMAP_TYPE_PNG_RESOURCE 16
180 #define wxBITMAP_TYPE_ANY 50
182 #define wxBITMAP_TYPE_RESOURCE wxBITMAP_TYPE_BMP_RESOURCE
184 class WXDLLEXPORT wxBitmap
;
185 class WXDLLEXPORT wxCursor
;
186 class WXDLLEXPORT wxIcon
;
187 class WXDLLEXPORT wxColour
;
188 class WXDLLEXPORT wxString
;
190 // Management of pens, brushes and fonts
191 class WXDLLEXPORT wxPenList
: public wxList
193 DECLARE_DYNAMIC_CLASS(wxPenList
)
198 void AddPen(wxPen
*pen
);
199 void RemovePen(wxPen
*pen
);
200 wxPen
*FindOrCreatePen(const wxColour
& colour
, int width
, int style
);
201 wxPen
*FindOrCreatePen(const wxString
& colour
, int width
, int style
);
204 class WXDLLEXPORT wxBrushList
: public wxList
206 DECLARE_DYNAMIC_CLASS(wxBrushList
)
211 void AddBrush(wxBrush
*brush
);
212 void RemoveBrush(wxBrush
*brush
);
213 wxBrush
*FindOrCreateBrush(const wxColour
& colour
, int style
);
214 wxBrush
*FindOrCreateBrush(const wxString
& colour
, int style
);
217 WXDLLEXPORT_DATA(extern const char*) wxEmptyString
;
219 class WXDLLEXPORT wxFontList
: public wxList
221 DECLARE_DYNAMIC_CLASS(wxFontList
)
226 void AddFont(wxFont
*font
);
227 void RemoveFont(wxFont
*font
);
228 wxFont
*FindOrCreateFont(int pointSize
, int family
, int style
, int weight
,
229 bool underline
= FALSE
, const wxString
& face
= wxEmptyString
);
232 class WXDLLEXPORT wxColourDatabase
: public wxList
234 DECLARE_CLASS(wxColourDatabase
)
236 wxColourDatabase(int type
);
237 ~wxColourDatabase() ;
238 // Not const because it may add a name to the database
239 wxColour
*FindColour(const wxString
& colour
) ;
240 wxString
FindName(const wxColour
& colour
) const;
244 class WXDLLEXPORT wxBitmapList
: public wxList
246 DECLARE_DYNAMIC_CLASS(wxBitmapList
)
251 void AddBitmap(wxBitmap
*bitmap
);
252 void RemoveBitmap(wxBitmap
*bitmap
);
255 // Lists of GDI objects
256 WXDLLEXPORT_DATA(extern wxPenList
*) wxThePenList
;
257 WXDLLEXPORT_DATA(extern wxBrushList
*) wxTheBrushList
;
258 WXDLLEXPORT_DATA(extern wxFontList
*) wxTheFontList
;
259 WXDLLEXPORT_DATA(extern wxBitmapList
*) wxTheBitmapList
;
262 WXDLLEXPORT_DATA(extern wxFont
*) wxNORMAL_FONT
;
263 WXDLLEXPORT_DATA(extern wxFont
*) wxSMALL_FONT
;
264 WXDLLEXPORT_DATA(extern wxFont
*) wxITALIC_FONT
;
265 WXDLLEXPORT_DATA(extern wxFont
*) wxSWISS_FONT
;
267 WXDLLEXPORT_DATA(extern wxPen
*) wxRED_PEN
;
268 WXDLLEXPORT_DATA(extern wxPen
*) wxCYAN_PEN
;
269 WXDLLEXPORT_DATA(extern wxPen
*) wxGREEN_PEN
;
270 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_PEN
;
271 WXDLLEXPORT_DATA(extern wxPen
*) wxWHITE_PEN
;
272 WXDLLEXPORT_DATA(extern wxPen
*) wxTRANSPARENT_PEN
;
273 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_DASHED_PEN
;
274 WXDLLEXPORT_DATA(extern wxPen
*) wxGREY_PEN
;
275 WXDLLEXPORT_DATA(extern wxPen
*) wxMEDIUM_GREY_PEN
;
276 WXDLLEXPORT_DATA(extern wxPen
*) wxLIGHT_GREY_PEN
;
278 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLUE_BRUSH
;
279 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREEN_BRUSH
;
280 WXDLLEXPORT_DATA(extern wxBrush
*) wxWHITE_BRUSH
;
281 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLACK_BRUSH
;
282 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREY_BRUSH
;
283 WXDLLEXPORT_DATA(extern wxBrush
*) wxMEDIUM_GREY_BRUSH
;
284 WXDLLEXPORT_DATA(extern wxBrush
*) wxLIGHT_GREY_BRUSH
;
285 WXDLLEXPORT_DATA(extern wxBrush
*) wxTRANSPARENT_BRUSH
;
286 WXDLLEXPORT_DATA(extern wxBrush
*) wxCYAN_BRUSH
;
287 WXDLLEXPORT_DATA(extern wxBrush
*) wxRED_BRUSH
;
289 WXDLLEXPORT_DATA(extern wxColour
*) wxBLACK
;
290 WXDLLEXPORT_DATA(extern wxColour
*) wxWHITE
;
291 WXDLLEXPORT_DATA(extern wxColour
*) wxRED
;
292 WXDLLEXPORT_DATA(extern wxColour
*) wxBLUE
;
293 WXDLLEXPORT_DATA(extern wxColour
*) wxGREEN
;
294 WXDLLEXPORT_DATA(extern wxColour
*) wxCYAN
;
295 WXDLLEXPORT_DATA(extern wxColour
*) wxLIGHT_GREY
;
298 WXDLLEXPORT_DATA(extern wxBitmap
) wxNullBitmap
;
299 WXDLLEXPORT_DATA(extern wxIcon
) wxNullIcon
;
300 WXDLLEXPORT_DATA(extern wxCursor
) wxNullCursor
;
301 WXDLLEXPORT_DATA(extern wxPen
) wxNullPen
;
302 WXDLLEXPORT_DATA(extern wxBrush
) wxNullBrush
;
303 WXDLLEXPORT_DATA(extern wxPalette
) wxNullPalette
;
304 WXDLLEXPORT_DATA(extern wxFont
) wxNullFont
;
305 WXDLLEXPORT_DATA(extern wxColour
) wxNullColour
;
307 // Stock cursors types
308 WXDLLEXPORT_DATA(extern wxCursor
*) wxSTANDARD_CURSOR
;
309 WXDLLEXPORT_DATA(extern wxCursor
*) wxHOURGLASS_CURSOR
;
310 WXDLLEXPORT_DATA(extern wxCursor
*) wxCROSS_CURSOR
;
312 WXDLLEXPORT_DATA(extern wxColourDatabase
*) wxTheColourDatabase
;
313 extern void WXDLLEXPORT
wxInitializeStockObjects();
314 extern void WXDLLEXPORT
wxInitializeStockLists();
315 extern void WXDLLEXPORT
wxDeleteStockObjects();
316 extern void WXDLLEXPORT
wxDeleteStockLists();
318 extern bool WXDLLEXPORT
wxColourDisplay();
320 // Returns depth of screen
321 extern int WXDLLEXPORT
wxDisplayDepth();
322 #define wxGetDisplayDepth wxDisplayDepth
324 extern void WXDLLEXPORT
wxDisplaySize(int *width
, int *height
);
325 extern wxSize WXDLLEXPORT
wxGetDisplaySize();
327 extern void WXDLLEXPORT
wxSetCursor(const wxCursor
& cursor
);
329 // Useful macro for creating icons portably
332 // Load from a resource
333 # define wxICON(X) wxIcon("" #X "")
335 #elif defined(__WXGTK__)
336 // Initialize from an included XPM
337 # define wxICON(X) wxIcon(X##_xpm)
340 // This will usually mean something on any platform
341 # define wxICON(X) wxIcon("" #X "")
346 wxIcon *icon = new wxICON(mondrian);
348 wxIcon *icon = new wxIcon("mondrian"); // On wxMSW
349 wxIcon *icon = new wxIcon(mondrian_xpm); // On wxGTK
352 class WXDLLEXPORT wxResourceCache
: public wxList
354 DECLARE_DYNAMIC_CLASS(wxResourceCache
)
357 wxResourceCache(const unsigned int the_key_type
);