X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8a46124968f1f9d2e707214fc4501cfc27abd0aa..52170c5b4419c63d6e0083df411aad420395ec98:/include/wx/renderer.h diff --git a/include/wx/renderer.h b/include/wx/renderer.h index 79e8a0c2a3..2097782e73 100644 --- a/include/wx/renderer.h +++ b/include/wx/renderer.h @@ -25,8 +25,8 @@ #ifndef _WX_RENDERER_H_ #define _WX_RENDERER_H_ -class WXDLLEXPORT wxDC; -class WXDLLEXPORT wxWindow; +class WXDLLIMPEXP_FWD_CORE wxDC; +class WXDLLIMPEXP_FWD_CORE wxWindow; #include "wx/gdicmn.h" // for wxPoint #include "wx/colour.h" @@ -247,6 +247,11 @@ public: const wxRect& rect, int flags = 0) = 0; + // draw the focus rectangle around the label contained in the given rect + // + // only wxCONTROL_SELECTED makes sense in flags here + virtual void DrawFocusRect(wxWindow* win, wxDC& dc, const wxRect& rect, int flags = 0) = 0; + // geometry functions // ------------------ @@ -380,6 +385,9 @@ public: int flags = 0 ) { m_rendererNative.DrawItemSelectionRect( win, dc, rect, flags ); } + virtual void DrawFocusRect(wxWindow* win, wxDC& dc, const wxRect& rect, int flags = 0) + { m_rendererNative.DrawFocusRect( win, dc, rect, flags ); } + virtual wxSplitterRenderParams GetSplitterParams(const wxWindow *win) { return m_rendererNative.GetSplitterParams(win); }