]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/caret.h
fixing text matrix (dataview custom renderer showed problems) and reordering SaveGState
[wxWidgets.git] / interface / wx / caret.h
index 4182c41f60b7eb7baf05b2d543e5c04f320d1018..b5d870635e7c97247ea0002da34c6fd2a3018af6 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxCaret
-    @wxheader{caret.h}
 
     A caret is a blinking cursor showing the position where the typed text will
     appear. Text controls usually have their own caret but wxCaret provides a
@@ -63,7 +62,7 @@ public:
         Get the caret position (in pixels).
     */
     void GetPosition(int* x, int* y) const;
-    const wxPoint GetPosition() const;
+    wxPoint GetPosition() const;
     //@}
 
     //@{
@@ -71,7 +70,7 @@ public:
         Get the caret size.
     */
     void GetSize(int* width, int* height) const;
-    const wxSize  GetSize() const;
+    wxSize GetSize() const;
     //@}
 
     /**
@@ -82,7 +81,7 @@ public:
     /**
         Hides the caret, same as Show(@false).
     */
-    void Hide();
+    virtual void Hide();
 
     /**
         Returns @true if the caret was created successfully.
@@ -127,6 +126,6 @@ public:
         Shows or hides the caret. Notice that if the caret was hidden N times,
         it must be shown N times as well to reappear on the screen.
     */
-    void Show(bool show = true);
+    virtual void Show(bool show = true);
 };