]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/textentry.h
avoid infinite recursion for richtooltops, (hopefully) fixes #15070
[wxWidgets.git] / interface / wx / textentry.h
index 0a5a5e22307f5c381b5ec177a236f8054ced2eae..89fdaf5541cc4406cf9afca61c8c49a0734a4909 100644 (file)
@@ -429,6 +429,13 @@ public:
     */
     virtual void SelectAll();
 
     */
     virtual void SelectAll();
 
+    /**
+        Deselects selected text in the control.
+
+        @since 2.9.5
+    */
+    virtual void SelectNone();
+
     /**
         Sets a hint shown in an empty unfocused text control.
 
     /**
         Sets a hint shown in an empty unfocused text control.
 
@@ -456,6 +463,10 @@ public:
             currently you should avoid calling methods such as WriteText() or
             Replace() when using hints and the text control is empty.
 
             currently you should avoid calling methods such as WriteText() or
             Replace() when using hints and the text control is empty.
 
+        @remarks Hints can only be used for single line text controls,
+            native multi-line text controls don't support hints under any
+            platform and hence wxWidgets doesn't provide them neither.
+
         @since 2.9.0
      */
     virtual bool SetHint(const wxString& hint);
         @since 2.9.0
      */
     virtual bool SetHint(const wxString& hint);