X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..255ea4a7028b5f0fd9aa5807c67e23a2c1b4d49c:/interface/wx/tooltip.h diff --git a/interface/wx/tooltip.h b/interface/wx/tooltip.h index 6d6779198a..ea6f30d206 100644 --- a/interface/wx/tooltip.h +++ b/interface/wx/tooltip.h @@ -8,7 +8,6 @@ /** @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.