]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/caret.h
use LLONG_MIN instead of -1 (which is a valid time value corresponding to 1ms before...
[wxWidgets.git] / include / wx / generic / caret.h
index 644917c28ae0dccbd0d62c4c5a4f73ec4fcfa07d..e19212316d87416fb3d5b0e2d606846dab3df387 100644 (file)
 #define _WX_CARET_H_
 
 #include "wx/timer.h"
+#include "wx/dc.h"
+#include "wx/overlay.h"
+
+#ifdef wxHAS_NATIVE_OVERLAY
+    #define wxHAS_CARET_USING_OVERLAYS
+#endif
 
 class WXDLLIMPEXP_CORE wxCaret;
 
@@ -70,11 +76,16 @@ private:
     // GTK specific initialization
     void InitGeneric();
 
+#ifdef wxHAS_CARET_USING_OVERLAYS
+    // the overlay for displaying the caret
+    wxOverlay   m_overlay;
+#else
     // the bitmap holding the part of window hidden by the caret when it was
     // at (m_xOld, m_yOld)
     wxBitmap      m_bmpUnderCaret;
     int           m_xOld,
                   m_yOld;
+#endif
 
     wxCaretTimer  m_timer;
     bool          m_blinkedOut,     // true => caret hidden right now