1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface for wxRendererNative
7 // Created: 9-June-2005
9 // Copyright: (c) 2005 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
15 //---------------------------------------------------------------------------
19 #include "wx/renderer.h"
23 // control state flags used in wxRenderer and wxColourScheme
26 wxCONTROL_DISABLED = 0x00000001, // control is disabled
27 wxCONTROL_FOCUSED = 0x00000002, // currently has keyboard focus
28 wxCONTROL_PRESSED = 0x00000004, // (button) is pressed
29 wxCONTROL_ISDEFAULT = 0x00000008, // only applies to the buttons
30 wxCONTROL_ISSUBMENU = wxCONTROL_ISDEFAULT, // only for menu items
31 wxCONTROL_EXPANDED = wxCONTROL_ISDEFAULT, // only for the tree items
32 wxCONTROL_CURRENT = 0x00000010, // mouse is currently over the control
33 wxCONTROL_SELECTED = 0x00000020, // selected item in e.g. listbox
34 wxCONTROL_CHECKED = 0x00000040, // (check/radio button) is checked
35 wxCONTROL_CHECKABLE = 0x00000080, // (menu) item can be checked
36 wxCONTROL_UNDETERMINED = wxCONTROL_CHECKABLE, // (check) undetermined state
37 wxCONTROL_UPICON = 0x00000100, // header button has an up arrow icon
38 wxCONTROL_DOWNICON = 0x00000200, // header button has a down arrow icon
40 wxCONTROL_FLAGS_MASK = 0x000002ff,
42 // this is a pseudo flag not used directly by wxRenderer but rather by some
43 // controls internally
44 wxCONTROL_DIRTY = 0x80000000
49 DocStr(wxSplitterRenderParams,
50 "This is just a simple struct used as a return value of
51 `wx.RendererNative.GetSplitterParams` and contains some platform
52 specific metrics about splitters.
54 * widthSash: the width of the splitter sash.
55 * border: the width of the border of the splitter window.
56 * isHotSensitive: ``True`` if the splitter changes its
57 appearance when the mouse is over it.
61 struct wxSplitterRenderParams
63 wxSplitterRenderParams(wxCoord widthSash_, wxCoord border_, bool isSens_);
64 ~wxSplitterRenderParams();
66 // the width of the splitter sash
67 const wxCoord widthSash;
69 // the width of the border of the splitter window
72 // true if the splitter changes its appearance when the mouse is over it
73 const bool isHotSensitive;
78 DocStr(wxHeaderButtonParams,
79 "Extra (optional) parameters for `wx.RendererNative.DrawHeaderButton`", "");
81 struct wxHeaderButtonParams
83 wxHeaderButtonParams();
84 ~wxHeaderButtonParams();
86 // So wxColour_helper will be used when assigning to the colour items in the struct
87 %typemap(in) wxColour* (wxColour temp) {
89 if ( ! wxColour_helper($input, &$1)) SWIG_fail;
91 wxColour m_arrowColour;
92 wxColour m_selectionColour;
95 wxColour m_labelColour;
96 wxBitmap m_labelBitmap;
102 DocStr(wxRendererVersion,
103 "This simple struct represents the `wx.RendererNative` interface
104 version and is only used as the return value of
105 `wx.RendererNative.GetVersion`.", "");
107 struct wxRendererVersion
109 wxRendererVersion(int version_, int age_);
110 ~wxRendererVersion();
119 // check if the given version is compatible with the current one
120 static bool IsCompatible(const wxRendererVersion& ver);
126 //---------------------------------------------------------------------------
129 DocStr(wxRendererNative,
130 "One of the design principles of wxWidgets is to use the native
131 widgets on every platform in order to be as close as possible to
132 the native look and feel on every platform. However there are
133 still cases when some generic widgets are needed for various
134 reasons, but it can sometimes take a lot of messy work to make
135 them conform to the native LnF.
137 The wx.RendererNative class is a collection of functions that have
138 platform-specific implementations for drawing certain parts of
139 genereic controls in ways that are as close to the native look as
142 Note that each drawing function restores the `wx.DC` attributes if it
143 changes them, so it is safe to assume that the same pen, brush and
144 colours that were active before the call to this function are still in
148 class wxRendererNative
154 virtual void , DrawHeaderButton(wxWindow *win,
158 wxHeaderButtonParams* params=NULL),
159 "Draw the header control button (such as what is used by `wx.ListCtrl`
160 in report mode.)", "");
164 virtual void , DrawHeaderButtonContents(wxWindow *win,
168 wxHeaderButtonParams* params=NULL),
169 "Draw the contents of a header control button, (label, sort
170 arrows, etc.) Normally this is only called by `DrawHeaderButton`.", "");
173 virtual int , GetHeaderButtonHeight(wxWindow *win),
174 "Returns the default height of a header button, either a fixed platform
175 height if available, or a generic height based on the window's font.", "");
179 virtual void , DrawTreeItemButton(wxWindow *win,
183 "Draw the expanded/collapsed icon for a tree control item.", "");
187 virtual void , DrawSplitterBorder(wxWindow *win,
191 "Draw the border for a sash window: this border must be such that the
192 sash drawn by `DrawSplitterSash` blends into it well.", "");
196 virtual void , DrawSplitterSash(wxWindow *win,
200 wxOrientation orient,
202 "Draw a sash. The orient parameter defines whether the sash should be
203 vertical or horizontal and how the position should be interpreted.", "");
207 virtual void , DrawComboBoxDropButton(wxWindow *win,
211 "Draw a button like the one used by `wx.ComboBox` to show a drop down
212 window. The usual appearance is a downwards pointing arrow.
214 The ``flags`` parameter may have the ``wx.CONTROL_PRESSED`` or
215 ``wx.CONTROL_CURRENT`` bits set.", "");
219 virtual void , DrawDropArrow(wxWindow *win,
223 "Draw a drop down arrow that is suitable for use outside a combo
224 box. Arrow will have a transparent background.
226 ``rect`` is not entirely filled by the arrow. Instead, you should use
227 bounding rectangle of a drop down button which arrow matches the size
228 you need. ``flags`` may have the ``wx.CONTROL_PRESSED`` or
229 ``wx.CONTROL_CURRENT`` bit set.", "");
233 virtual void , DrawCheckBox(wxWindow *win,
237 "Draw a check button. Flags may use wx.CONTROL_CHECKED,
238 wx.CONTROL_UNDETERMINED and wx.CONTROL_CURRENT.", "");
242 virtual void , DrawPushButton(wxWindow *win,
246 "Draw a blank button. Flags may be wx.CONTROL_PRESSED, wx.CONTROL_CURRENT and
247 wx.CONTROL_ISDEFAULT", "");
251 virtual void , DrawItemSelectionRect(wxWindow *win,
255 "Draw rectangle indicating that an item in e.g. a list control has been
258 The flags parameter may be:
260 ==================== ============================================
261 wx.CONTROL_SELECTED item is selected, e.g. draw background
262 wx.CONTROL_CURRENT item is the current item, e.g. dotted border
263 wx.CONTROL_FOCUSED the whole control has focus, e.g. blue
264 background vs. grey otherwise
265 ==================== ============================================
270 virtual wxSplitterRenderParams , GetSplitterParams(const wxWindow *win),
271 "Get the splitter parameters, see `wx.SplitterRenderParams`.", "");
277 static wxRendererNative& , Get(),
278 "Return the currently used renderer", "");
281 MustHaveApp(GetGeneric);
283 static wxRendererNative& , GetGeneric(),
284 "Return the generic implementation of the renderer. Under some
285 platforms, this is the default renderer implementation, others have
286 platform-specific default renderer which can be retrieved by calling
287 `wx.RendererNative.GetDefault`.", "");
290 MustHaveApp(GetDefault);
292 static wxRendererNative& , GetDefault(),
293 "Return the default (native) implementation for this platform -- this
294 is also the one used by default but this may be changed by calling
295 `wx.RendererNative.Set` in which case the return value of this method
296 may be different from the return value of `wx.RendererNative.Get`.", "");
301 // // load the renderer from the specified DLL, the returned pointer must be
302 // // deleted by caller if not NULL when it is not used any more
303 // static wxRendererNative *Load(const wxString& name);
308 static wxRendererNative *, Set(wxRendererNative *renderer),
309 "Set the renderer to use, passing None reverts to using the default
310 renderer. Returns the previous renderer used with Set or None.", "");
315 virtual wxRendererVersion , GetVersion() const,
316 "Returns the version of the renderer. Will be used for ensuring
317 compatibility of dynamically loaded renderers.", "");
320 %property(SplitterParams, GetSplitterParams, doc="See `GetSplitterParams`");
321 %property(Version, GetVersion, doc="See `GetVersion`");
325 //---------------------------------------------------------------------------