]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/tooltip.h
Correct names of parameters in wxAffineMatrix2D documentation.
[wxWidgets.git] / interface / wx / tooltip.h
index 6d6779198ac9e939e748853c3c0157c9cbe906c7..372b7941693b1055d6596e50f3f7b7fdd1fd9914 100644 (file)
@@ -3,12 +3,11 @@
 // Purpose:     interface of wxToolTip
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
     @class wxToolTip
-    @wxheader{tooltip.h}
 
     This class holds information about a tooltip associated with a window (see
     wxWindow::SetToolTip()).
@@ -60,6 +59,21 @@ public:
     */
     static void SetDelay(long msecs);
 
+    /**
+        Set tooltip maximal width in pixels.
+
+        By default, tooltips are wrapped at a suitably chosen width. You can
+        pass -1 as @a width to disable wrapping them completely, 0 to restore
+        the default behaviour or an arbitrary positive value to wrap them at
+        the given width.
+
+        Notice that this function does not change the width of the tooltips
+        created before calling it.
+
+        @note Currently this function is wxMSW-only.
+    */
+    static void SetMaxWidth(int width);
+
     /**
         Set the delay between subsequent tooltips to appear.