#include <wx/tooltip.h>
This class holds information about a tooltip associated with a window (see wxWindow::SetToolTip()).
The four static methods, wxToolTip::Enable(), wxToolTip::SetDelay() wxToolTip::SetAutoPop() and wxToolTip::SetReshow() can be used to globally alter tooltips behaviour.
|
static void | Enable (bool flag) |
| Enable or disable tooltips globally. More...
|
|
static void | SetAutoPop (long msecs) |
| Set the delay after which the tooltip disappears or how long a tooltip remains visible. More...
|
|
static void | SetDelay (long msecs) |
| Set the delay after which the tooltip appears. More...
|
|
static void | SetMaxWidth (int width) |
| Set tooltip maximal width in pixels. More...
|
|
static void | SetReshow (long msecs) |
| Set the delay between subsequent tooltips to appear. More...
|
|
◆ wxToolTip()
wxToolTip::wxToolTip |
( |
const wxString & |
tip | ) |
|
◆ Enable()
static void wxToolTip::Enable |
( |
bool |
flag | ) |
|
|
static |
Enable or disable tooltips globally.
- Note
- May not be supported on all platforms (eg. wxCocoa).
◆ GetTip()
◆ GetWindow()
wxWindow* wxToolTip::GetWindow |
( |
| ) |
const |
Get the associated window.
◆ SetAutoPop()
static void wxToolTip::SetAutoPop |
( |
long |
msecs | ) |
|
|
static |
Set the delay after which the tooltip disappears or how long a tooltip remains visible.
- Note
- May not be supported on all platforms (eg. wxCocoa, GTK).
◆ SetDelay()
static void wxToolTip::SetDelay |
( |
long |
msecs | ) |
|
|
static |
Set the delay after which the tooltip appears.
- Note
- May not be supported on all platforms.
◆ SetMaxWidth()
static void wxToolTip::SetMaxWidth |
( |
int |
width | ) |
|
|
static |
Set tooltip maximal width in pixels.
By default, tooltips are wrapped at a suitably chosen width. You can pass -1 as 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.
◆ SetReshow()
static void wxToolTip::SetReshow |
( |
long |
msecs | ) |
|
|
static |
Set the delay between subsequent tooltips to appear.
- Note
- May not be supported on all platforms (eg. wxCocoa, GTK).
◆ SetTip()
void wxToolTip::SetTip |
( |
const wxString & |
tip | ) |
|