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"
25 #include "wx/msw/colour.h"
26 #elif defined(__WXMOTIF__)
27 #include "wx/xt/colour.h"
28 #elif defined(__WXGTK__)
29 #include "wx/gtk/colour.h"
30 #elif defined(__WXQT__)
31 #include "wx/qt/colour.h"
44 wxCURSOR_MIDDLE_BUTTON
,
50 wxCURSOR_QUESTION_ARROW
,
51 wxCURSOR_RIGHT_BUTTON
,
62 /* Not yet implemented for Windows */
63 , wxCURSOR_CROSS_REVERSE
,
64 wxCURSOR_DOUBLE_ARROW
,
65 wxCURSOR_BASED_ARROW_UP
,
66 wxCURSOR_BASED_ARROW_DOWN
68 } _standard_cursors_t
;
70 class WXDLLEXPORT wxSize
75 inline wxSize() { x
= 0; y
= 0; }
76 inline wxSize(long xx
, long yy
) { x
= xx
; y
= yy
; }
77 inline wxSize(const wxSize
& sz
) { x
= sz
.x
; y
= sz
.y
; }
78 inline void operator = (const wxSize
& sz
) { x
= sz
.x
; y
= sz
.y
; }
79 inline wxSize
operator + (const wxSize
& sz
) { return wxSize(x
+ sz
.x
, y
+ sz
.y
); }
80 inline wxSize
operator - (const wxSize
& sz
) { return wxSize(x
- sz
.x
, y
- sz
.y
); }
81 inline void Set(long xx
, long yy
) { x
= xx
; y
= yy
; }
82 inline long GetX() const { return x
; }
83 inline long GetY() const { return y
; }
87 class WXDLLEXPORT wxRealPoint
92 inline wxRealPoint() { x
= 0.0; y
= 0.0; };
93 inline wxRealPoint(double _x
, double _y
) { x
= _x
; y
= _y
; };
94 inline wxRealPoint
operator + (const wxRealPoint
& pt
) { return wxRealPoint(x
+ pt
.x
, y
+ pt
.y
); }
95 inline wxRealPoint
operator - (const wxRealPoint
& pt
) { return wxRealPoint(x
- pt
.x
, y
- pt
.y
); }
97 inline void operator = (const wxRealPoint
& pt
) { x
= pt
.x
; y
= pt
.y
; }
100 class WXDLLEXPORT wxPoint
103 #if defined(__WXMSW__) && !defined(__WIN32__)
111 inline wxPoint() { x
= 0; y
= 0; };
112 wxPoint(long the_x
, long the_y
) { x
= the_x
; y
= the_y
; };
113 wxPoint(const wxPoint
& pt
) { x
= pt
.x
; y
= pt
.y
; };
115 inline void operator = (const wxPoint
& pt
) { x
= pt
.x
; y
= pt
.y
; }
116 inline wxPoint
operator + (const wxPoint
& pt
) { return wxPoint(x
+ pt
.x
, y
+ pt
.y
); }
117 inline wxPoint
operator - (const wxPoint
& pt
) { return wxPoint(x
- pt
.x
, y
- pt
.y
); }
120 #if WXWIN_COMPATIBILITY
121 #define wxIntPoint wxPoint
122 #define wxRectangle wxRect
125 class WXDLLEXPORT wxRect
129 wxRect(long x
, long y
, long w
, long h
);
130 wxRect(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
131 wxRect(const wxPoint
& pos
, const wxSize
& size
);
132 wxRect(const wxRect
& rect
);
134 inline long GetX() const { return x
; }
135 inline void SetX(long X
) { x
= X
; }
136 inline long GetY() const { return y
; }
137 inline void SetY(long Y
) { y
= Y
; }
138 inline long GetWidth() const { return width
; }
139 inline void SetWidth(long w
) { width
= w
; }
140 inline long GetHeight() const { return height
; }
141 inline void SetHeight(long h
) { height
= h
; }
143 inline wxPoint
GetPosition() { return wxPoint(x
, y
); }
144 inline wxSize
GetSize() { return wxSize(width
, height
); }
146 inline long GetLeft() const { return x
; }
147 inline long GetTop() const { return y
; }
148 inline long GetBottom() const { return y
+ height
; }
149 inline long GetRight() const { return x
+ width
; }
151 wxRect
& operator = (const wxRect
& rect
);
152 bool operator == (const wxRect
& rect
);
153 bool operator != (const wxRect
& rect
);
155 long x
, y
, width
, height
;
158 class WXDLLEXPORT wxBrush
;
159 class WXDLLEXPORT wxPen
;
160 class WXDLLEXPORT wxBitmap
;
161 class WXDLLEXPORT wxIcon
;
162 class WXDLLEXPORT wxCursor
;
163 class WXDLLEXPORT wxFont
;
164 class WXDLLEXPORT wxPalette
;
165 class WXDLLEXPORT wxPalette
;
171 // Hint to indicate filetype
172 #define wxBITMAP_TYPE_BMP 1
173 #define wxBITMAP_TYPE_BMP_RESOURCE 2
174 #define wxBITMAP_TYPE_ICO 3
175 #define wxBITMAP_TYPE_ICO_RESOURCE 4
176 #define wxBITMAP_TYPE_CUR 5
177 #define wxBITMAP_TYPE_CUR_RESOURCE 6
178 #define wxBITMAP_TYPE_XBM 7
179 #define wxBITMAP_TYPE_XBM_DATA 8
180 #define wxBITMAP_TYPE_XPM 9
181 #define wxBITMAP_TYPE_XPM_DATA 10
182 #define wxBITMAP_TYPE_TIF 11
183 #define wxBITMAP_TYPE_TIF_RESOURCE 12
184 #define wxBITMAP_TYPE_GIF 13
185 #define wxBITMAP_TYPE_GIF_RESOURCE 14
186 #define wxBITMAP_TYPE_PNG 15
187 #define wxBITMAP_TYPE_PNG_RESOURCE 16
188 #define wxBITMAP_TYPE_ANY 50
190 #define wxBITMAP_TYPE_RESOURCE wxBITMAP_TYPE_BMP_RESOURCE
192 class WXDLLEXPORT wxBitmap
;
193 class WXDLLEXPORT wxCursor
;
194 class WXDLLEXPORT wxIcon
;
196 // Management of pens, brushes and fonts
197 class WXDLLEXPORT wxPenList
: public wxList
199 DECLARE_DYNAMIC_CLASS(wxPenList
)
204 void AddPen(wxPen
*pen
);
205 void RemovePen(wxPen
*pen
);
206 wxPen
*FindOrCreatePen(const wxColour
& colour
, int width
, int style
);
207 wxPen
*FindOrCreatePen(const wxString
& colour
, int width
, int style
);
210 class WXDLLEXPORT wxBrushList
: public wxList
212 DECLARE_DYNAMIC_CLASS(wxBrushList
)
217 void AddBrush(wxBrush
*brush
);
218 void RemoveBrush(wxBrush
*brush
);
219 wxBrush
*FindOrCreateBrush(const wxColour
& colour
, int style
);
220 wxBrush
*FindOrCreateBrush(const wxString
& colour
, int style
);
223 WXDLLEXPORT_DATA(extern const char*) wxEmptyString
;
225 class WXDLLEXPORT wxFontList
: public wxList
227 DECLARE_DYNAMIC_CLASS(wxFontList
)
232 void AddFont(wxFont
*font
);
233 void RemoveFont(wxFont
*font
);
234 wxFont
*FindOrCreateFont(int pointSize
, int family
, int style
, int weight
,
235 bool underline
= FALSE
, const wxString
& face
= wxEmptyString
);
238 class WXDLLEXPORT wxColourDatabase
: public wxList
240 DECLARE_CLASS(wxColourDatabase
)
242 wxColourDatabase(int type
);
243 ~wxColourDatabase() ;
244 // Not const because it may add a name to the database
245 wxColour
*FindColour(const wxString
& colour
) ;
246 wxString
FindName(const wxColour
& colour
) const;
250 class WXDLLEXPORT wxBitmapList
: public wxList
252 DECLARE_DYNAMIC_CLASS(wxBitmapList
)
257 void AddBitmap(wxBitmap
*bitmap
);
258 void RemoveBitmap(wxBitmap
*bitmap
);
261 // Lists of GDI objects
262 WXDLLEXPORT_DATA(extern wxPenList
*) wxThePenList
;
263 WXDLLEXPORT_DATA(extern wxBrushList
*) wxTheBrushList
;
264 WXDLLEXPORT_DATA(extern wxFontList
*) wxTheFontList
;
265 WXDLLEXPORT_DATA(extern wxBitmapList
*) wxTheBitmapList
;
268 WXDLLEXPORT_DATA(extern wxFont
*) wxNORMAL_FONT
;
269 WXDLLEXPORT_DATA(extern wxFont
*) wxSMALL_FONT
;
270 WXDLLEXPORT_DATA(extern wxFont
*) wxITALIC_FONT
;
271 WXDLLEXPORT_DATA(extern wxFont
*) wxSWISS_FONT
;
273 WXDLLEXPORT_DATA(extern wxPen
*) wxRED_PEN
;
274 WXDLLEXPORT_DATA(extern wxPen
*) wxCYAN_PEN
;
275 WXDLLEXPORT_DATA(extern wxPen
*) wxGREEN_PEN
;
276 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_PEN
;
277 WXDLLEXPORT_DATA(extern wxPen
*) wxWHITE_PEN
;
278 WXDLLEXPORT_DATA(extern wxPen
*) wxTRANSPARENT_PEN
;
279 WXDLLEXPORT_DATA(extern wxPen
*) wxBLACK_DASHED_PEN
;
280 WXDLLEXPORT_DATA(extern wxPen
*) wxGREY_PEN
;
281 WXDLLEXPORT_DATA(extern wxPen
*) wxMEDIUM_GREY_PEN
;
282 WXDLLEXPORT_DATA(extern wxPen
*) wxLIGHT_GREY_PEN
;
284 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLUE_BRUSH
;
285 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREEN_BRUSH
;
286 WXDLLEXPORT_DATA(extern wxBrush
*) wxWHITE_BRUSH
;
287 WXDLLEXPORT_DATA(extern wxBrush
*) wxBLACK_BRUSH
;
288 WXDLLEXPORT_DATA(extern wxBrush
*) wxGREY_BRUSH
;
289 WXDLLEXPORT_DATA(extern wxBrush
*) wxMEDIUM_GREY_BRUSH
;
290 WXDLLEXPORT_DATA(extern wxBrush
*) wxLIGHT_GREY_BRUSH
;
291 WXDLLEXPORT_DATA(extern wxBrush
*) wxTRANSPARENT_BRUSH
;
292 WXDLLEXPORT_DATA(extern wxBrush
*) wxCYAN_BRUSH
;
293 WXDLLEXPORT_DATA(extern wxBrush
*) wxRED_BRUSH
;
295 WXDLLEXPORT_DATA(extern wxColour
*) wxBLACK
;
296 WXDLLEXPORT_DATA(extern wxColour
*) wxWHITE
;
297 WXDLLEXPORT_DATA(extern wxColour
*) wxRED
;
298 WXDLLEXPORT_DATA(extern wxColour
*) wxBLUE
;
299 WXDLLEXPORT_DATA(extern wxColour
*) wxGREEN
;
300 WXDLLEXPORT_DATA(extern wxColour
*) wxCYAN
;
301 WXDLLEXPORT_DATA(extern wxColour
*) wxLIGHT_GREY
;
304 WXDLLEXPORT_DATA(extern wxBitmap
) wxNullBitmap
;
305 WXDLLEXPORT_DATA(extern wxIcon
) wxNullIcon
;
306 WXDLLEXPORT_DATA(extern wxCursor
) wxNullCursor
;
307 WXDLLEXPORT_DATA(extern wxPen
) wxNullPen
;
308 WXDLLEXPORT_DATA(extern wxBrush
) wxNullBrush
;
309 WXDLLEXPORT_DATA(extern wxPalette
) wxNullPalette
;
310 WXDLLEXPORT_DATA(extern wxFont
) wxNullFont
;
311 WXDLLEXPORT_DATA(extern wxColour
) wxNullColour
;
313 // Stock cursors types
314 WXDLLEXPORT_DATA(extern wxCursor
*) wxSTANDARD_CURSOR
;
315 WXDLLEXPORT_DATA(extern wxCursor
*) wxHOURGLASS_CURSOR
;
316 WXDLLEXPORT_DATA(extern wxCursor
*) wxCROSS_CURSOR
;
318 WXDLLEXPORT_DATA(extern wxColourDatabase
*) wxTheColourDatabase
;
319 extern void WXDLLEXPORT
wxInitializeStockObjects();
320 extern void WXDLLEXPORT
wxInitializeStockLists();
321 extern void WXDLLEXPORT
wxDeleteStockObjects();
322 extern void WXDLLEXPORT
wxDeleteStockLists();
324 extern bool WXDLLEXPORT
wxColourDisplay();
326 // Returns depth of screen
327 extern int WXDLLEXPORT
wxDisplayDepth();
328 #define wxGetDisplayDepth wxDisplayDepth
330 extern void WXDLLEXPORT
wxDisplaySize(int *width
, int *height
);
331 extern wxSize WXDLLEXPORT
wxGetDisplaySize();
333 extern void WXDLLEXPORT
wxSetCursor(const wxCursor
& cursor
);
335 // Useful macro for create icons portably
338 # define wxICON(X) wxIcon(X##_icon);
340 # define wxICON(X) wxIcon(X##_bits, X##_width, X##_height);
342 # define wxICON wxIcon
347 #define wxbuild_icon "wxbuild"
349 wxIcon *icon = new wxICON(wxbuild);
352 class WXDLLEXPORT wxResourceCache
: public wxList
354 DECLARE_DYNAMIC_CLASS(wxResourceCache
)
357 wxResourceCache(const unsigned int the_key_type
);