]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/tipwin.tex
A couple of changes to wxImage:
[wxWidgets.git] / docs / latex / wx / tipwin.tex
CommitLineData
e3c10211
JS
1\section{\class{wxTipWindow}}\label{wxtipwindow}
2
dafbe8c0
VZ
3Shows simple text in a popup tip window on creation. This is used by
4\helpref{wxSimpleHelpProvider}{wxsimplehelpprovider} to show popup help. The
5window automatically destroys itself when the user clicks on it or it loses the
6focus.
e3c10211 7
dafbe8c0
VZ
8You may also use this class to emulate the tooltips when you need finer
9control over them than what the standard tooltips provide.
e3c10211
JS
10
11\wxheading{Derived from}
12
8962e1d9
RD
13wxPopupTransientWindow\\
14wxPopupWindow\\
e3c10211
JS
15\helpref{wxWindow}{wxwindow}\\
16\helpref{wxEvtHandler}{wxevthandler}\\
17\helpref{wxObject}{wxobject}
18
19\wxheading{Include files}
20
21<wx/tipwin.h>
22
23\latexignore{\rtfignore{\wxheading{Members}}}
24
25\membersection{wxTipWindow::wxTipWindow}\label{wxtipwindowwxtipwindow}
26
dafbe8c0 27\func{}{wxTipWindow}{\param{wxWindow* }{parent}, \param{const wxString\& }{text}, \param{wxCoord }{maxLength = 100}, \param{wxTipWindow** }{windowPtr}}
e3c10211
JS
28
29Constructor. The tip is shown immediately the window is constructed.
30
dafbe8c0 31\wxheading{Parameters}
e3c10211 32
dafbe8c0 33\docparam{parent}{The parent window, must be non {\tt NULL}}
e3c10211 34
dafbe8c0
VZ
35\docparam{text}{The text to show, may contain the new line characters}
36
37\docparam{windowPtr}{Simply passed to
38\helpref{SetTipWindowPtr}{wxtipwindowsettipwindowptr} below, please see its
39documentation for the description of this parameter}
40
41\docparam{rectBounds}{If non {\tt NULL}, passed to
42\helpref{SetBoundingRect}{wxtipwindowsetboundingrect} below, please see its
43documentation for the description of this parameter}
44
45
46\membersection{wxTipWindow::SetTipWindowPtr}\label{wxtipwindowsettipwindowptr}
47
48\func{void}{SetTipWindowPtr}{\param{wxTipWindow** }{windowPtr}}
49
50When the tip window closes itself (which may happen at any moment and
51unexpectedly to the caller) it may {\tt NULL} out the pointer pointed to by
52{\it windowPtr}. This is helpful to avoid dereferencing the tip window which
53had been already closed and deleted.
54
55
e676441f 56\membersection{wxTipWindow::SetBoundingRect}\label{wxtipwindowsetboundingrect}
dafbe8c0
VZ
57
58\func{void}{SetBoundingRect}{\param{const wxRect\& }{rectBound}}
59
60By default, the tip window disappears when the user clicks the mouse or presses
61a keyboard key or if it loses focus in any other way - for example because the
62user switched to another application window.
63
64Additionally, if a non empty {\it rectBound} is provided, the tip window will
65also automatically close if the mouse leaves this area. This is useful to
66dismiss the tip mouse when the mouse leaves the object it is associated with.
67
68\wxheading{Parameters}
69
70\docparam{rectBound}{The bounding rectangle for the mouse in the screen coordinates}
e3c10211 71