const wxRect& rect,
int flags = 0) = 0;
- // Draw a native wxRadioButton (just the graphical portion)
- virtual void DrawOptionButton(wxWindow* win,
- wxDC& dc,
- const wxRect& rect,
- int flags = 0) = 0;
+ // Draw a native wxRadioButton bitmap
+ virtual void DrawRadioBitmap(wxWindow* win,
+ wxDC& dc,
+ const wxRect& rect,
+ int flags = 0) = 0;
// geometry functions
// ------------------
int flags = 0)
{ m_rendererNative.DrawTextCtrl( win, dc, rect, flags); }
- virtual void DrawOptionButton(wxWindow* win,
- wxDC& dc,
- const wxRect& rect,
- int flags = 0)
- { m_rendererNative.DrawOptionButton( win, dc, rect, flags); }
+ virtual void DrawRadioBitmap(wxWindow* win,
+ wxDC& dc,
+ const wxRect& rect,
+ int flags = 0)
+ { m_rendererNative.DrawRadioBitmap(win, dc, rect, flags); }
virtual wxSplitterRenderParams GetSplitterParams(const wxWindow *win)
{ return m_rendererNative.GetSplitterParams(win); }
protected:
wxRendererNative& m_rendererNative;
- DECLARE_NO_COPY_CLASS(wxDelegateRendererNative)
+ wxDECLARE_NO_COPY_CLASS(wxDelegateRendererNative);
};
// ----------------------------------------------------------------------------