X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ed62f740a1b075d6645682b0064b78c89f9e4dfc..ce4b7808ca940be201422a066de141ca12f13863:/include/wx/caret.h diff --git a/include/wx/caret.h b/include/wx/caret.h index ed761aacc3..8cff8f2f48 100644 --- a/include/wx/caret.h +++ b/include/wx/caret.h @@ -16,10 +16,6 @@ #if wxUSE_CARET -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "caret.h" -#endif - // --------------------------------------------------------------------------- // forward declarations // --------------------------------------------------------------------------- @@ -209,6 +205,19 @@ private: // avoid overdrawing the caret // ---------------------------------------------------------------------------- +#ifdef wxHAS_CARET_USING_OVERLAYS + +// we don't need to hide the caret if it's rendered using overlays +class WXDLLEXPORT wxCaretSuspend +{ +public: + wxCaretSuspend(wxWindow *WXUNUSED(win)) {} + + DECLARE_NO_COPY_CLASS(wxCaretSuspend) +}; + +#else // !wxHAS_CARET_USING_OVERLAYS + class WXDLLEXPORT wxCaretSuspend { public: @@ -236,6 +245,8 @@ private: DECLARE_NO_COPY_CLASS(wxCaretSuspend) }; +#endif // wxHAS_CARET_USING_OVERLAYS/!wxHAS_CARET_USING_OVERLAYS + #endif // wxUSE_CARET #endif // _WX_CARET_H_BASE_