]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/caret.h
Don't cache incorrect length in wxString::DoUngetWriteBuf().
[wxWidgets.git] / include / wx / msw / caret.h
index 1ea59e6d784f133d59955d58fdc3090c952cbed6..ab51bea025044fbccb658fcada68a0e1db0e67ee 100644 (file)
@@ -1,22 +1,18 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        msw/caret.h
+// Name:        wx/msw/caret.h
 // Purpose:     wxCaret class - the MSW implementation of wxCaret
 // Author:      Vadim Zeitlin
 // Modified by:
 // Created:     23.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__
-    #pragma interface "caret.h"
-#endif
-
-class WXDLLEXPORT wxCaret : public wxCaretBase
+class WXDLLIMPEXP_CORE wxCaret : public wxCaretBase
 {
 public:
     wxCaret() { Init(); }
@@ -45,19 +41,22 @@ protected:
     {
         wxCaretBase::Init();
 
-        m_hasCaret = FALSE;
+        m_hasCaret = false;
     }
 
     // override base class virtuals
     virtual void DoMove();
     virtual void DoShow();
     virtual void DoHide();
+    virtual void DoSize();
 
     // helper function which creates the system caret
     bool MSWCreateCaret();
 
 private:
     bool m_hasCaret;
+
+    wxDECLARE_NO_COPY_CLASS(wxCaret);
 };
 
 #endif // _WX_CARET_H_