]>
Commit | Line | Data |
---|---|---|
f6bcfd97 BP |
1 | \section{\class{wxToolTip}}\label{wxtooltip} |
2 | ||
3 | This class holds information about a tooltip associated with a window | |
4 | (see \helpref{wxWindow::SetToolTip}{wxwindowsettooltip}). | |
5 | ||
6 | The two static methods, \helpref{wxToolTip::Enable}{wxtooltipenable} and | |
7 | \helpref{wxToolTip::SetDelay}{wxtooltipsetdelay} can be used to globally | |
8 | alter tooltips behaviour. | |
9 | ||
10 | \wxheading{Derived from} | |
11 | ||
12 | \helpref{wxObject}{wxobject} | |
13 | ||
0e10e38d VZ |
14 | \wxheading{Include files} |
15 | ||
16 | <wx/tooltip.h> | |
f6bcfd97 BP |
17 | |
18 | \latexignore{\rtfignore{\wxheading{Members}}} | |
19 | ||
20 | ||
21 | \membersection{wxToolTip::Enable}\label{wxtooltipenable} | |
22 | ||
23 | \func{static void}{Enable}{\param{bool }{flag}} | |
24 | ||
25 | Enable or disable tooltips globally. | |
26 | ||
26191790 RN |
27 | May not be supported on all platforms (eg. wxCocoa). |
28 | ||
f6bcfd97 BP |
29 | |
30 | \membersection{wxToolTip::SetDelay}\label{wxtooltipsetdelay} | |
31 | ||
32 | \func{static void}{SetDelay}{\param{long }{msecs}} | |
33 | ||
34 | Set the delay after which the tooltip appears. | |
35 | ||
26191790 | 36 | May not be supported on all platforms (eg. wxCocoa). |
f6bcfd97 BP |
37 | |
38 | \membersection{wxToolTip::wxToolTip}\label{wxtooltipwxtooltip} | |
39 | ||
40 | \func{}{wxToolTip}{\param{const wxString\& }{tip}} | |
41 | ||
42 | Constructor. | |
43 | ||
44 | \membersection{wxToolTip::SetTip}\label{wxtooltipsettip} | |
45 | ||
46 | \func{void}{SetTip}{\param{const wxString\& }{tip}} | |
47 | ||
48 | Set the tooltip text. | |
49 | ||
50 | ||
51 | \membersection{wxToolTip::GetTip}\label{wxtooltipgettip} | |
52 | ||
53 | \constfunc{wxString}{GetTip}{\void} | |
54 | ||
55 | Get the tooltip text. | |
56 | ||
57 | \membersection{wxToolTip::GetWindow}\label{wxtooltipgetwindow} | |
58 | ||
59 | \constfunc{wxWindow*}{GetWindow}{\void} | |
60 | ||
61 | Get the associated window. | |
62 |