1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: Example of a renderer implemented in a DLL
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
18 #include "wx/renderer.h"
24 class MyDllRenderer
: public wxRendererNative
27 // draw the header control button (used by wxListCtrl)
28 virtual void DrawHeaderButton(wxWindow
*win
,
33 dc
.SetBrush(*wxCYAN_BRUSH
);
34 dc
.SetTextForeground(*wxRED
);
35 dc
.DrawRoundedRectangle(rect
, 10);
36 dc
.DrawLabel(_T("MyDllRenderer"), wxNullBitmap
, rect
, wxALIGN_CENTER
);
39 // draw the expanded/collapsed icon for a tree control item
40 virtual void DrawTreeItemButton(wxWindow
*win
,
47 // draw the border for sash window: this border must be such that the sash
48 // drawn by DrawSash() blends into it well
49 virtual void DrawSplitterBorder(wxWindow
*win
,
56 // draw a (vertical) sash
57 virtual void DrawSplitterSash(wxWindow
*win
,
66 // draw a combobox dropdown button
68 // flags may only use wxCONTROL_PRESSED
69 virtual void DrawComboBoxDropButton(wxWindow
*win
,
76 // get the splitter parameters: the x field of the returned point is the
77 // sash width and the y field is the border width
78 virtual wxSplitterRenderParams
GetSplitterParams(const wxWindow
*win
)
80 return wxSplitterRenderParams(0, 0, 0);
83 virtual wxRendererVersion
GetVersion() const
85 return wxRendererVersion(wxRendererVersion::Current_Version
,
86 wxRendererVersion::Current_Age
);
89 #if 0 // just for debugging
92 wxMessageBox(_T("Creating MyDllRenderer"), _T("Renderer Sample"));
95 virtual ~MyDllRenderer()
97 wxMessageBox(_T("Deleting MyDllRenderer"), _T("Renderer Sample"));
103 WXEXPORT wxRendererNative
*wxCreateRenderer()
105 return new MyDllRenderer
;