]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/caret.h
Added master define for CommandBar vs. PocketPC mixed bar.
[wxWidgets.git] / include / wx / generic / caret.h
index 9b2340de44217abdbcf7a4d312a0de1be5c28609..bffe9be1b146fa369e548ed2ebfb60591da607c2 100644 (file)
@@ -5,14 +5,14 @@
 // Modified by:
 // Created:     25.05.99
 // RCS-ID:      $Id$
-// Copyright:   (c) wxWindows team
+// Copyright:   (c) wxWidgets team
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_CARET_H_
 #define _WX_CARET_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "caret.h"
 #endif
 
@@ -20,7 +20,7 @@
 
 class wxCaret;
 
-class wxCaretTimer : public wxTimer
+class WXDLLEXPORT wxCaretTimer : public wxTimer
 {
 public:
     wxCaretTimer(wxCaret *caret);
@@ -73,6 +73,12 @@ private:
     // GTK specific initialization
     void InitGeneric();
 
+    // 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;
+
     wxCaretTimer  m_timer;
     bool          m_blinkedOut,     // TRUE => caret hidden right now
                   m_hasFocus;       // TRUE => our window has focus