]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/renderer.h
Fix wrong return value in the changes of r73365.
[wxWidgets.git] / interface / wx / renderer.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: renderer.h
bbc5b7f8 3// Purpose: interface of wxRendererNative
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
526954c5 6// Licence: wxWindows licence
23324ae1
FM
7/////////////////////////////////////////////////////////////////////////////
8
9/**
bbc5b7f8
BP
10 @anchor wxCONTROL_FLAGS
11
12 The following rendering flags are defined for wxRendererNative:
13*/
14enum
15{
16 /** Control is disabled. */
17 wxCONTROL_DISABLED = 0x00000001,
18
19 /** Currently has keyboard focus. */
20 wxCONTROL_FOCUSED = 0x00000002,
21
22 /** (Button) is pressed. */
23 wxCONTROL_PRESSED = 0x00000004,
24
25 /** Control-specific bit. */
26 wxCONTROL_SPECIAL = 0x00000008,
27
28 /** Only for the buttons. */
29 wxCONTROL_ISDEFAULT = wxCONTROL_SPECIAL,
30
31 /** Only for the menu items. */
32 wxCONTROL_ISSUBMENU = wxCONTROL_SPECIAL,
33
34 /** Only for the tree items. */
35 wxCONTROL_EXPANDED = wxCONTROL_SPECIAL,
36
37 /** Only for the status bar panes. */
38 wxCONTROL_SIZEGRIP = wxCONTROL_SPECIAL,
39
40 /** Checkboxes only: flat border. */
41 wxCONTROL_FLAT = wxCONTROL_SPECIAL,
42
43 /** Mouse is currently over the control. */
44 wxCONTROL_CURRENT = 0x00000010,
45
0824e369 46 /** Selected item in e.g.\ listbox. */
bbc5b7f8
BP
47 wxCONTROL_SELECTED = 0x00000020,
48
49 /** (Check/radio button) is checked. */
50 wxCONTROL_CHECKED = 0x00000040,
51
52 /** (Menu) item can be checked. */
53 wxCONTROL_CHECKABLE = 0x00000080,
54
55 /** (Check) undetermined state. */
56 wxCONTROL_UNDETERMINED = wxCONTROL_CHECKABLE
57};
58
3427bc78
VZ
59/**
60 Title bar buttons supported by wxRendererNative::DrawTitleBarBitmap().
61 */
62enum wxTitleBarButton
63{
64 wxTITLEBAR_BUTTON_CLOSE = 0x01000000,
65 wxTITLEBAR_BUTTON_MAXIMIZE = 0x02000000,
66 wxTITLEBAR_BUTTON_ICONIZE = 0x04000000,
67 wxTITLEBAR_BUTTON_RESTORE = 0x08000000,
68 wxTITLEBAR_BUTTON_HELP = 0x10000000
69};
70
bbc5b7f8
BP
71/**
72 @struct wxSplitterRenderParams
7c913512
FM
73
74 This is just a simple @c struct used as a return value of
bbc5b7f8 75 wxRendererNative::GetSplitterParams().
7c913512 76
bbc5b7f8
BP
77 It doesn't have any methods and all of its fields are constant, so they can
78 only be examined but not modified.
7c913512 79
a24b5254 80 @library{wxcore}
bbc5b7f8 81 @category{gdi}
23324ae1 82*/
bbc5b7f8 83struct wxSplitterRenderParams
23324ae1 84{
23324ae1 85 /**
bbc5b7f8 86 The only way to initialize this struct is by using this ctor.
23324ae1 87 */
bbc5b7f8 88 wxSplitterRenderParams(wxCoord widthSash_, wxCoord border_, bool isSens_);
23324ae1 89
bbc5b7f8
BP
90 /**
91 The width of the border drawn by the splitter inside it, may be 0.
92 */
93 const wxCoord border;
23324ae1
FM
94
95 /**
23324ae1
FM
96 @true if the sash changes appearance when the mouse passes over it, @false
97 otherwise.
98 */
bbc5b7f8 99 const bool isHotSensitive;
23324ae1
FM
100
101 /**
23324ae1
FM
102 The width of the splitter sash.
103 */
bbc5b7f8
BP
104 const wxCoord widthSash;
105};
106
107/**
108 @struct wxHeaderButtonParams
bbc5b7f8
BP
109
110 This @c struct can optionally be used with
111 wxRendererNative::DrawHeaderButton() to specify custom values used to draw
112 the text or bitmap label.
113
a24b5254 114 @library{wxcore}
bbc5b7f8
BP
115 @category{gdi}
116*/
117struct wxHeaderButtonParams
118{
119 wxHeaderButtonParams();
120
121 wxColour m_arrowColour;
122 wxColour m_selectionColour;
123 wxString m_labelText;
124 wxFont m_labelFont;
125 wxColour m_labelColour;
126 wxBitmap m_labelBitmap;
127 int m_labelAlignment;
128};
129
130/**
131 Used to specify the type of sort arrow used with
132 wxRendererNative::DrawHeaderButton().
133*/
134enum wxHeaderSortIconType
135{
136 wxHDR_SORT_ICON_NONE, ///< Don't draw a sort arrow.
137 wxHDR_SORT_ICON_UP, ///< Draw a sort arrow icon pointing up.
138 wxHDR_SORT_ICON_DOWN ///< Draw a sort arrow icon pointing down.
23324ae1
FM
139};
140
141
e54c96f1 142
23324ae1
FM
143/**
144 @class wxDelegateRendererNative
7c913512
FM
145
146 wxDelegateRendererNative allows reuse of renderers code by forwarding all the
191e43fd
FM
147 wxRendererNative methods to the given object and
148 thus allowing you to only modify some of its methods -- without having to
149 reimplement all of them.
7c913512 150
cdbcf4c2 151 Note that the "normal", inheritance-based approach, doesn't work with the
23324ae1
FM
152 renderers as it is impossible to derive from a class unknown at compile-time
153 and the renderer is only chosen at run-time. So suppose that you want to only
154 add something to the drawing of the tree control buttons but leave all the
155 other methods unchanged -- the only way to do it, considering that the renderer
156 class which you want to customize might not even be written yet when you write
157 your code (it could be written later and loaded from a DLL during run-time), is
158 by using this class.
7c913512
FM
159
160 Except for the constructor, it has exactly the same methods as
191e43fd
FM
161 wxRendererNative and their implementation is
162 trivial: they are simply forwarded to the real renderer. Note that the "real"
163 renderer may, in turn, be a wxDelegateRendererNative as well and that there may
164 be arbitrarily many levels like this -- but at the end of the chain there must
165 be a real renderer which does the drawing.
7c913512 166
23324ae1 167 @library{wxcore}
bbc5b7f8
BP
168 @category{gdi}
169
170 @see wxRendererNative
23324ae1
FM
171*/
172class wxDelegateRendererNative : public wxRendererNative
173{
174public:
23324ae1
FM
175 /**
176 The default constructor does the same thing as the other one except that it
bbc5b7f8
BP
177 uses the @ref wxRendererNative::GetGeneric() "generic renderer" instead of the
178 user-specified @a rendererNative.
179
23324ae1
FM
180 In any case, this sets up the delegate renderer object to follow all calls to
181 the specified real renderer.
23324ae1
FM
182 */
183 wxDelegateRendererNative();
23324ae1 184 /**
bbc5b7f8
BP
185 This constructor uses the user-specified @a rendererNative to set up the delegate
186 renderer object to follow all calls to the specified real renderer.
187
188 @note
189 This object does not take ownership of (i.e. won't delete) @a rendererNative.
23324ae1 190 */
bbc5b7f8
BP
191 wxDelegateRendererNative(wxRendererNative& rendererNative);
192
193 // The rest of these functions inherit the documentation from wxRendererNative
194
195 virtual int DrawHeaderButton(wxWindow *win, wxDC& dc,
196 const wxRect& rect, int flags = 0,
197 wxHeaderSortIconType sortArrow = wxHDR_SORT_ICON_NONE,
198 wxHeaderButtonParams* params = NULL);
199
200 virtual int DrawHeaderButtonContents(wxWindow *win, wxDC& dc,
201 const wxRect& rect, int flags = 0,
202 wxHeaderSortIconType sortArrow = wxHDR_SORT_ICON_NONE,
203 wxHeaderButtonParams* params = NULL);
204
205 virtual int GetHeaderButtonHeight(wxWindow *win);
206
9aebcb5e
VS
207 virtual int GetHeaderButtonMargin(wxWindow *win);
208
bbc5b7f8
BP
209 virtual void DrawTreeItemButton(wxWindow *win, wxDC& dc,
210 const wxRect& rect, int flags = 0);
211
212 virtual void DrawSplitterBorder(wxWindow *win, wxDC& dc,
213 const wxRect& rect, int flags = 0);
214
215 virtual void DrawSplitterSash(wxWindow *win, wxDC& dc,
216 const wxSize& size, wxCoord position,
217 wxOrientation orient, int flags = 0);
218
219 virtual void DrawComboBoxDropButton(wxWindow *win, wxDC& dc,
220 const wxRect& rect, int flags = 0);
221
222 virtual void DrawDropArrow(wxWindow *win, wxDC& dc,
223 const wxRect& rect, int flags = 0);
224
225 virtual void DrawCheckBox(wxWindow *win, wxDC& dc,
226 const wxRect& rect, int flags = 0 );
227
191e43fd 228 virtual wxSize GetCheckBoxSize(wxWindow *win);
e8759560 229
bbc5b7f8
BP
230 virtual void DrawPushButton(wxWindow *win, wxDC& dc,
231 const wxRect& rect, int flags = 0 );
232
233 virtual void DrawItemSelectionRect(wxWindow *win, wxDC& dc,
234 const wxRect& rect, int flags = 0 );
235
236 virtual void DrawFocusRect(wxWindow* win, wxDC& dc,
237 const wxRect& rect, int flags = 0);
238
239 virtual wxSplitterRenderParams GetSplitterParams(const wxWindow *win);
240
241 virtual wxRendererVersion GetVersion() const;
23324ae1
FM
242};
243
244
e54c96f1 245
23324ae1
FM
246/**
247 @class wxRendererNative
7c913512 248
bbc5b7f8 249 First, a brief introduction to wxRendererNative and why it is needed.
7c913512 250
23324ae1 251 Usually wxWidgets uses the underlying low level GUI system to draw all the
cdbcf4c2 252 controls - this is what we mean when we say that it is a "native" framework.
23324ae1
FM
253 However not all controls exist under all (or even any) platforms and in this
254 case wxWidgets provides a default, generic, implementation of them written in
255 wxWidgets itself.
7c913512 256
23324ae1
FM
257 These controls don't have the native appearance if only the standard
258 line drawing and other graphics primitives are used, because the native
259 appearance is different under different platforms while the lines are always
260 drawn in the same way.
7c913512 261
bbc5b7f8 262 This is why we have renderers: wxRendererNative is a class which virtualizes the
23324ae1
FM
263 drawing, i.e. it abstracts the drawing operations and allows you to draw say, a
264 button, without caring about exactly how this is done. Of course, as we
265 can draw the button differently in different renderers, this also allows us to
266 emulate the native look and feel.
7c913512 267
23324ae1
FM
268 So the renderers work by exposing a large set of high-level drawing functions
269 which are used by the generic controls. There is always a default global
7c913512 270 renderer but it may be changed or extended by the user, see
bbc5b7f8 271 @ref page_samples_render.
7c913512 272
23324ae1 273 All drawing functions take some standard parameters:
7c913512 274
bbc5b7f8 275 @li @a win - The window being drawn. It is normally not used and when
7c913512 276 it is it should only be used as a generic wxWindow
23324ae1
FM
277 (in order to get its low level handle, for example), but you should
278 not assume that it is of some given type as the same renderer
279 function may be reused for drawing different kinds of control.
bbc5b7f8 280 @li @a dc - The wxDC to draw on. Only this device
23324ae1
FM
281 context should be used for drawing. It is not necessary to restore
282 pens and brushes for it on function exit but, on the other hand, you
283 shouldn't assume that it is in any specific state on function entry:
284 the rendering functions should always prepare it.
bbc5b7f8
BP
285 @li @a rect - The bounding rectangle for the element to be drawn.
286 @li @a flags - The optional flags (none by default) which can be a
287 combination of the @ref wxCONTROL_FLAGS.
7c913512 288
23324ae1
FM
289 Note that each drawing function restores the wxDC attributes if
290 it changes them, so it is safe to assume that the same pen, brush and colours
291 that were active before the call to this function are still in effect after it.
7c913512 292
23324ae1
FM
293 @library{wxcore}
294 @category{gdi}
295*/
7c913512 296class wxRendererNative
23324ae1
FM
297{
298public:
299 /**
300 Virtual destructor as for any base class.
301 */
adaaa686 302 virtual ~wxRendererNative();
23324ae1
FM
303
304 /**
e8759560 305 Draw a check box.
bbc5b7f8 306
4cc4bfaf 307 @a flags may have the @c wxCONTROL_CHECKED, @c wxCONTROL_CURRENT or
bbc5b7f8 308 @c wxCONTROL_UNDETERMINED bit set, see @ref wxCONTROL_FLAGS.
23324ae1 309 */
43c48e1e
FM
310 virtual void DrawCheckBox(wxWindow* win, wxDC& dc, const wxRect& rect,
311 int flags = 0) = 0;
23324ae1
FM
312
313 /**
314 Draw a button like the one used by wxComboBox to show a
315 drop down window. The usual appearance is a downwards pointing arrow.
bbc5b7f8
BP
316
317 @a flags may have the @c wxCONTROL_PRESSED or @c wxCONTROL_CURRENT bit set,
318 see @ref wxCONTROL_FLAGS.
23324ae1 319 */
bbc5b7f8 320 virtual void DrawComboBoxDropButton(wxWindow* win, wxDC& dc,
43c48e1e 321 const wxRect& rect, int flags = 0) = 0;
23324ae1
FM
322
323 /**
324 Draw a drop down arrow that is suitable for use outside a combo box. Arrow will
bbc5b7f8
BP
325 have transparent background.
326
4cc4bfaf 327 @a rect is not entirely filled by the arrow. Instead, you should use bounding
23324ae1 328 rectangle of a drop down button which arrow matches the size you need.
bbc5b7f8
BP
329
330 @a flags may have the @c wxCONTROL_PRESSED or @c wxCONTROL_CURRENT bit set,
331 see @ref wxCONTROL_FLAGS.
23324ae1 332 */
bbc5b7f8 333 virtual void DrawDropArrow(wxWindow* win, wxDC& dc, const wxRect& rect,
43c48e1e 334 int flags = 0) = 0;
23324ae1
FM
335
336 /**
337 Draw a focus rectangle using the specified rectangle.
bbc5b7f8
BP
338 wxListCtrl.
339
340 The only supported flags is @c wxCONTROL_SELECTED for items which are selected.
341 see @ref wxCONTROL_FLAGS.
23324ae1 342 */
bbc5b7f8 343 virtual void DrawFocusRect(wxWindow* win, wxDC& dc, const wxRect& rect,
fadc2df6 344 int flags = 0) = 0;
23324ae1
FM
345
346 /**
bbc5b7f8
BP
347 Draw the header control button (used, for example, by wxListCtrl).
348
349 Depending on platforms the @a flags parameter may support the @c wxCONTROL_SELECTED
350 @c wxCONTROL_DISABLED and @c wxCONTROL_CURRENT bits, see @ref wxCONTROL_FLAGS.
351
352 @return
57ab6f23 353 The optimal width to contain the unabbreviated label text or
bbc5b7f8 354 bitmap, the sort arrow if present, and internal margins.
23324ae1 355 */
da1ed74c
FM
356 virtual int DrawHeaderButton(wxWindow* win, wxDC& dc, const wxRect& rect,
357 int flags = 0,
358 wxHeaderSortIconType sortArrow = wxHDR_SORT_ICON_NONE, wxHeaderButtonParams* params = NULL) = 0;
bbc5b7f8
BP
359
360 /**
361 Draw the contents of a header control button (label, sort arrows,
362 etc.). This function is normally only called by DrawHeaderButton().
363
364 Depending on platforms the @a flags parameter may support the @c wxCONTROL_SELECTED
365 @c wxCONTROL_DISABLED and @c wxCONTROL_CURRENT bits, see @ref wxCONTROL_FLAGS.
366
367 @return
57ab6f23 368 The optimal width to contain the unabbreviated label text or
bbc5b7f8
BP
369 bitmap, the sort arrow if present, and internal margins.
370 */
da1ed74c 371 virtual int DrawHeaderButtonContents(wxWindow* win, wxDC& dc,
bbc5b7f8 372 const wxRect& rect, int flags = 0,
da1ed74c 373 wxHeaderSortIconType sortArrow = wxHDR_SORT_ICON_NONE, wxHeaderButtonParams* params = NULL) = 0;
23324ae1
FM
374
375 /**
7c913512 376 Draw a selection rectangle underneath the text as used e.g. in a
bbc5b7f8
BP
377 wxListCtrl.
378
379 The supported @a flags are @c wxCONTROL_SELECTED for items
380 which are selected (e.g. often a blue rectangle) and @c wxCONTROL_CURRENT
381 for the item that has the focus (often a dotted line around the item's text).
382 @c wxCONTROL_FOCUSED may be used to indicate if the control has the focus
57ab6f23 383 (otherwise the selection rectangle is e.g. often grey and not blue).
bbc5b7f8
BP
384 This may be ignored by the renderer or deduced by the code directly from
385 the @a win.
23324ae1 386 */
bbc5b7f8 387 virtual void DrawItemSelectionRect(wxWindow* win, wxDC& dc,
fadc2df6 388 const wxRect& rect, int flags = 0) = 0;
23324ae1
FM
389
390 /**
391 Draw a blank push button that looks very similar to wxButton.
bbc5b7f8 392
4cc4bfaf 393 @a flags may have the @c wxCONTROL_PRESSED, @c wxCONTROL_CURRENT or
bbc5b7f8 394 @c wxCONTROL_ISDEFAULT bit set, see @ref wxCONTROL_FLAGS.
23324ae1 395 */
43c48e1e
FM
396 virtual void DrawPushButton(wxWindow* win, wxDC& dc, const wxRect& rect,
397 int flags = 0) = 0;
23324ae1
FM
398
399 /**
400 Draw the border for sash window: this border must be such that the sash
bbc5b7f8 401 drawn by DrawSplitterSash() blends into it well.
23324ae1 402 */
fadc2df6
FM
403 virtual void DrawSplitterBorder(wxWindow* win, wxDC& dc, const wxRect& rect,
404 int flags = 0) = 0;
23324ae1
FM
405
406 /**
4cc4bfaf
FM
407 Draw a sash. The @a orient parameter defines whether the sash should be
408 vertical or horizontal and how the @a position should be interpreted.
23324ae1 409 */
da1ed74c
FM
410 virtual void DrawSplitterSash(wxWindow* win, wxDC& dc, const wxSize& size,
411 wxCoord position, wxOrientation orient,
412 int flags = 0) = 0;
23324ae1
FM
413
414 /**
bbc5b7f8
BP
415 Draw the expanded/collapsed icon for a tree control item.
416
417 To draw an expanded button the @a flags parameter must contain @c wxCONTROL_EXPANDED bit,
418 see @ref wxCONTROL_FLAGS.
23324ae1 419 */
fadc2df6
FM
420 virtual void DrawTreeItemButton(wxWindow* win, wxDC& dc, const wxRect& rect,
421 int flags = 0) = 0;
23324ae1 422
92c32bbe 423 /**
befa206b
KO
424 Draw a native wxChoice
425 */
6e6b532c 426 virtual void DrawChoice(wxWindow* win, wxDC& dc, const wxRect& rect, int flags = 0) = 0;
befa206b 427
92c32bbe 428 /**
befa206b
KO
429 Draw a native wxComboBox
430 */
6e6b532c 431 virtual void DrawComboBox(wxWindow* win, wxDC& dc, const wxRect& rect, int flags = 0) = 0;
befa206b 432
92c32bbe 433 /**
befa206b
KO
434 Draw a native wxTextCtrl frame
435 */
6e6b532c 436 virtual void DrawTextCtrl(wxWindow* win, wxDC& dc, const wxRect& rect, int flags = 0) = 0;
befa206b
KO
437
438 /**
6e6b532c 439 Draw a native wxRadioButton bitmap.
befa206b 440 */
6e6b532c 441 virtual void DrawRadioBitmap(wxWindow* win, wxDC& dc, const wxRect& rect, int flags = 0) = 0;
befa206b 442
3427bc78
VZ
443 /**
444 Draw a title bar button in the given state.
445
446 This function is currently only available under MSW and OS X (and only
447 for wxTITLEBAR_BUTTON_CLOSE under the latter), its best replacement for
448 the other platforms is to use wxArtProvider to retrieve the bitmaps for
449 @c wxART_HELP and @c wxART_CLOSE (but not any other title bar buttons
450 and not for any state but normal, i.e. not pressed and not current one).
451
452 The presence of this function is indicated by @c
453 wxHAS_DRAW_TITLE_BAR_BITMAP symbol being defined.
454
455 Also notice that PNG handler must be enabled using wxImage::AddHandler()
456 to use this function under OS X currently as the bitmaps are embedded
457 in the library itself in PNG format.
458
459 @since 2.9.1
460 */
461 virtual void DrawTitleBarBitmap(wxWindow *win,
462 wxDC& dc,
463 const wxRect& rect,
464 wxTitleBarButton button,
465 int flags = 0) = 0;
466
23324ae1
FM
467 /**
468 Return the currently used renderer.
469 */
382f12e4 470 static wxRendererNative& Get();
23324ae1
FM
471
472 /**
473 Return the default (native) implementation for this platform -- this is also
7c913512 474 the one used by default but this may be changed by calling
23324ae1
FM
475 Set() in which case the return value of this
476 method may be different from the return value of Get().
477 */
382f12e4 478 static wxRendererNative& GetDefault();
23324ae1
FM
479
480 /**
481 Return the generic implementation of the renderer. Under some platforms, this
482 is the default renderer implementation, others have platform-specific default
483 renderer which can be retrieved by calling GetDefault().
484 */
382f12e4 485 static wxRendererNative& GetGeneric();
23324ae1 486
e8759560
VZ
487 /**
488 Returns the size of a check box.
191e43fd 489 The @a win parameter is not used currently and can be @NULL.
e8759560 490 */
191e43fd 491 virtual wxSize GetCheckBoxSize(wxWindow* win) = 0;
e8759560 492
23324ae1
FM
493 /**
494 Returns the height of a header button, either a fixed platform height if
191e43fd 495 available, or a generic height based on the @a win window's font.
23324ae1 496 */
da1ed74c 497 virtual int GetHeaderButtonHeight(wxWindow* win) = 0;
23324ae1 498
9aebcb5e
VS
499 /**
500 Returns the horizontal margin on the left and right sides of header
501 button's label.
502
503 @since 2.9.2
504 */
505 virtual int GetHeaderButtonMargin(wxWindow *win) = 0;
506
23324ae1 507 /**
191e43fd
FM
508 Get the splitter parameters, see wxSplitterRenderParams.
509 The @a win parameter should be a wxSplitterWindow.
23324ae1 510 */
da1ed74c 511 virtual wxSplitterRenderParams GetSplitterParams(const wxWindow* win) = 0;
23324ae1
FM
512
513 /**
7c913512 514 This function is used for version checking: Load()
23324ae1
FM
515 refuses to load any shared libraries implementing an older or incompatible
516 version.
bbc5b7f8
BP
517
518 @remarks
23324ae1 519 The implementation of this method is always the same in all renderers (simply
bbc5b7f8
BP
520 construct wxRendererVersion using the @c wxRendererVersion::Current_XXX values),
521 but it has to be in the derived, not base, class, to detect mismatches between
522 the renderers versions and so you have to implement it anew in all renderers.
23324ae1 523 */
da1ed74c 524 virtual wxRendererVersion GetVersion() const = 0;
23324ae1
FM
525
526 /**
527 Load the renderer from the specified DLL, the returned pointer must be
528 deleted by caller if not @NULL when it is not used any more.
bbc5b7f8 529
4cc4bfaf 530 The @a name should be just the base name of the renderer and not the full
7c913512 531 name of the DLL file which is constructed differently (using
bbc5b7f8 532 wxDynamicLibrary::CanonicalizePluginName())
23324ae1
FM
533 on different systems.
534 */
bbc5b7f8 535 static wxRendererNative* Load(const wxString& name);
23324ae1
FM
536
537 /**
538 Set the renderer to use, passing @NULL reverts to using the default
539 renderer (the global renderer must always exist).
bbc5b7f8 540
23324ae1
FM
541 Return the previous renderer used with Set() or @NULL if none.
542 */
bbc5b7f8 543 static wxRendererNative* Set(wxRendererNative* renderer);
23324ae1
FM
544};
545
546
e54c96f1 547
23324ae1 548/**
bbc5b7f8 549 @struct wxRendererVersion
7c913512
FM
550
551 This simple struct represents the wxRendererNative
552 interface version and is only used as the return value of
bbc5b7f8 553 wxRendererNative::GetVersion().
7c913512 554
23324ae1
FM
555 The version has two components: the version itself and the age. If the main
556 program and the renderer have different versions they are never compatible with
557 each other because the version is only changed when an existing virtual
558 function is modified or removed. The age, on the other hand, is incremented
559 each time a new virtual method is added and so, at least for the compilers
560 using a common C++ object model, the calling program is compatible with any
561 renderer which has the age greater or equal to its age. This verification is
e54c96f1 562 done by IsCompatible() method.
7c913512 563
a24b5254 564 @library{wxcore}
bbc5b7f8 565 @category{gdi}
23324ae1 566*/
bbc5b7f8 567struct wxRendererVersion
23324ae1 568{
5812de8a
RD
569 wxRendererVersion(int version_, int age_);
570
23324ae1 571 /**
7c913512 572 Checks if the main program is compatible with the renderer having the version
23324ae1 573 @e ver, returns @true if it is and @false otherwise.
bbc5b7f8
BP
574
575 This method is used by wxRendererNative::Load() to determine whether a
23324ae1
FM
576 renderer can be used.
577 */
578 static bool IsCompatible(const wxRendererVersion& ver);
579
580 /**
23324ae1
FM
581 The age component.
582 */
bbc5b7f8 583 const int age;
23324ae1
FM
584
585 /**
23324ae1
FM
586 The version component.
587 */
bbc5b7f8 588 const int version;
23324ae1 589};
e54c96f1 590