]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/caret.h
changed Refresh to take Rect as client coordinates not window coordinates
[wxWidgets.git] / include / wx / caret.h
index 9e0f3d3ea85f788871997ec04bbab2dbe13ca840..817f32b73e7eb7103459cfcfc0976e55d8f04335 100644 (file)
 #ifndef _WX_CARET_H_BASE_
 #define _WX_CARET_H_BASE_
 
+#include "wx/defs.h"
+
+#if wxUSE_CARET
+
 #ifdef __GNUG__
 #pragma interface "caret.h"
 #endif
@@ -196,5 +200,33 @@ private:
     #include "wx/generic/caret.h"
 #endif // platform
 
+// ----------------------------------------------------------------------------
+// wxCaretSuspend: a simple class which hides the caret in its ctor and
+// restores it in the dtor, this should be used when drawing on the screen to
+// avoid overdrawing the caret
+// ----------------------------------------------------------------------------
+
+class WXDLLEXPORT wxCaretSuspend
+{
+public:
+    wxCaretSuspend(wxWindow *win)
+    {
+        m_caret = win->GetCaret();
+        if ( m_caret )
+            m_caret->Hide();
+    }
+
+    ~wxCaretSuspend()
+    {
+        if ( m_caret )
+            m_caret->Show();
+    }
+
+private:
+    wxCaret *m_caret;
+};
+
+#endif // wxUSE_CARET
+
 #endif // _WX_CARET_H_BASE_