]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/caret.h
changed wxImage::ComputeHistogram to use wxHashMap
[wxWidgets.git] / include / wx / caret.h
index 9e0f3d3ea85f788871997ec04bbab2dbe13ca840..f7d91c76f86fdfa456817629ab320dcf637be124 100644 (file)
 #ifndef _WX_CARET_H_BASE_
 #define _WX_CARET_H_BASE_
 
 #ifndef _WX_CARET_H_BASE_
 #define _WX_CARET_H_BASE_
 
+#include "wx/defs.h"
+
+#if wxUSE_CARET
+
 #ifdef __GNUG__
 #pragma interface "caret.h"
 #endif
 #ifdef __GNUG__
 #pragma interface "caret.h"
 #endif
@@ -183,7 +187,7 @@ protected:
     int m_countVisible;
 
 private:
     int m_countVisible;
 
 private:
-    DECLARE_NO_COPY_CLASS(wxCaretBase);
+    DECLARE_NO_COPY_CLASS(wxCaretBase)
 };
 
 // ---------------------------------------------------------------------------
 };
 
 // ---------------------------------------------------------------------------
@@ -196,5 +200,33 @@ private:
     #include "wx/generic/caret.h"
 #endif // platform
 
     #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_
 
 #endif // _WX_CARET_H_BASE_