]>
git.saurik.com Git - wxWidgets.git/blob - interface/tooltip.h
6abb42f45838fae2f65fe12b0f55b9d71e87c332
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxToolTip class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 This class holds information about a tooltip associated with a window
14 (see wxWindow::SetToolTip).
16 The four static methods, wxToolTip::Enable,
18 wxToolTip::SetAutoPop and
19 wxToolTip::SetReshow can be used to globally
20 alter tooltips behaviour.
25 class wxToolTip
: public wxObject
31 wxToolTip(const wxString
& tip
);
34 Enable or disable tooltips globally.
36 May not be supported on all platforms (eg. wxCocoa).
38 static void Enable(bool flag
);
46 Get the associated window.
48 wxWindow
* GetWindow();
51 Set the delay after which the tooltip disappears or how long a
52 tooltip remains visible.
53 May not be supported on all platforms (eg. wxCocoa, GTK, Palmos).
55 static void SetAutoPop(long msecs
);
58 Set the delay after which the tooltip appears.
60 May not be supported on all platforms (eg. wxCocoa).
62 static void SetDelay(long msecs
);
65 Set the delay between subsequent tooltips to appear.
66 May not be supported on all platforms (eg. wxCocoa, GTK, Palmos).
68 static void SetReshow(long msecs
);
73 void SetTip(const wxString
& tip
);