]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/hyperlink.tex
added copy constr
[wxWidgets.git] / docs / latex / wx / hyperlink.tex
CommitLineData
17e91437
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: hyperlink.tex
db67d86d 3%% Purpose: wxHyperlinkCtrl documentation
17e91437
VZ
4%% Author: Otto Wyss
5%% Modified by: Francesco Montorsi
6%% Created: 25.4.2004
7%% RCS-ID: $Id$
8%% Copyright: (c) 2004 wxCode, Francesco Montorsi
9%% License: wxWindows
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
db67d86d 12\section{\class{wxHyperlinkCtrl}}\label{wxhyperlinkctrl}
17e91437
VZ
13
14This class shows a static text element which links to an URL.
103791a6
WS
15Appearance and behaviour is completely customizable. In fact, when the user
16clicks on the hyperlink, a \helpref{wxHyperlinkEvent}{wxhyperlinkevent} is
17sent but if that event is not handled (or it's skipped; see
18\helpref{wxEvent::Skip}{wxeventskip}), then a call to
19\helpref{wxLaunchDefaultBrowser}{wxlaunchdefaultbrowser} is done with the
20hyperlink's URL.
17e91437
VZ
21
22Note that standard \helpref{wxWindow}{wxwindow} functions like \helpref{SetBackgroundColour}{wxwindowsetbackgroundcolour}, \helpref{SetFont}{wxwindowsetfont}, \helpref{SetCursor}{wxwindowsetcursor}, \helpref{SetLabel}{wxwindowsetlabel} can be used to customize appearance of the hyperlink.
23
24
25\wxheading{Derived from}
26
2cc1457d
VZ
27\helpref{wxControl}{wxcontrol}\\
28\helpref{wxWindow}{wxwindow}\\
29\helpref{wxEvtHandler}{wxevthandler}\\
30\helpref{wxObject}{wxobject}
17e91437
VZ
31
32
33\wxheading{Include files}
34
35<wx/hyperlink.h>
36
a7af285d
VZ
37\wxheading{Library}
38
39\helpref{wxAdv}{librarieslist}
40
17e91437
VZ
41
42\wxheading{Window styles}
43
44\twocolwidtha{7cm}
45\begin{twocollist}\itemsep=0pt
914f5157
VZ
46\twocolitem{\windowstyle{wxHL\_ALIGN\_LEFT}}{Align the text to the left.}
47\twocolitem{\windowstyle{wxHL\_ALIGN\_RIGHT}}{Align the text to the right.}
48\twocolitem{\windowstyle{wxHL\_ALIGN\_CENTRE}}{Center the text (horizontally).}
17e91437 49\twocolitem{\windowstyle{wxHL\_CONTEXTMENU}}{Pop up a context menu when the hyperlink is right-clicked. The context menu contains a \texttt{``Copy URL"} menu item which is automatically handled by the hyperlink and which just copies in the clipboard the URL (not the label) of the control.}
0a42e3b6 50\twocolitem{\windowstyle{wxHL\_DEFAULT\_STYLE}}{The default style for wxHyperlinkCtrl: \texttt{wxBORDER\_NONE|wxHL\_CONTEXTMENU|wxHL\_ALIGN\_CENTRE}.}
17e91437
VZ
51\end{twocollist}
52
53See also \helpref{window styles overview}{windowstyles}.
54
55
56\wxheading{Event handling}
57
103791a6
WS
58To process input from an hyperlink control, use these event handler macros to
59direct input to member functions that take a
60\helpref{wxHyperlinkEvent}{wxhyperlinkevent} argument.
17e91437
VZ
61
62\twocolwidtha{7cm}
63\begin{twocollist}\itemsep=0pt
64\twocolitem{{\bf EVT\_HYPERLINK(id, func)}}{The hyperlink was (left) clicked. If this event is not handled in user's code (or it's skipped; see \helpref{wxEvent::Skip}{wxeventskip}), then a call to \helpref{wxLaunchDefaultBrowser}{wxlaunchdefaultbrowser} is done with the hyperlink's URL.}
65\end{twocollist}
66
67
68\wxheading{See also}
69
103791a6 70\helpref{wxURL}{wxurl}, \helpref{wxHyperlinkEvent}{wxhyperlinkevent}
17e91437
VZ
71
72
73\latexignore{\rtfignore{\wxheading{Members}}}
74
db67d86d 75\membersection{wxHyperlinkCtrl::wxHyperLink}\label{wxhyperlinkctrlctor}
17e91437
VZ
76
77\func{}{wxHyperLink}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id}, \param{const wxString \&}{ label}, \param{const wxString \&}{ url}, \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style}, \param{const wxString\& }{name = ``hyperlink"}}
78
79Constructor. See \helpref{Create}{wxhyperlinkctrlcreate} for more info.
80
81
db67d86d 82\membersection{wxHyperlinkCtrl::Create}\label{wxhyperlinkctrlcreate}
17e91437 83
103791a6 84\func{bool}{Create}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id}, \param{const wxString \&}{ label}, \param{const wxString \&}{ url}, \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style}, \param{const wxString\& }{name = ``hyperlink"}}
17e91437
VZ
85
86Creates the hyperlink control.
87
88\wxheading{Parameters}
89
90\docparam{parent}{Parent window. Must not be \NULL.}
91
98159dd8 92\docparam{id}{Window identifier. A value of wxID\_ANY indicates a default value.}
17e91437
VZ
93
94\docparam{label}{The label of the hyperlink.}
95
103791a6 96\docparam{url}{The URL associated with the given label.}
17e91437
VZ
97
98\docparam{pos}{Window position.}
99
98159dd8 100\docparam{size}{Window size. If the wxDefaultSize is specified then the window is sized
17e91437
VZ
101appropriately.}
102
103\docparam{style}{Window style. See \helpref{wxHyperlinkCtrl}{wxhyperlinkctrl}.}
104
105\docparam{validator}{Window validator.}
106
107\docparam{name}{Window name.}
108
109
db67d86d 110\membersection{wxHyperlinkCtrl::GetHoverColour}\label{wxhyperlinkctrlgethovercolour}
17e91437
VZ
111
112\constfunc{wxColour}{GetHoverColour}{\void}
113
114Returns the colour used to print the label of the hyperlink when the mouse is over the control.
115
116
db67d86d 117\membersection{wxHyperlinkCtrl::SetHoverColour}\label{wxhyperlinkctrlsethovercolour}
17e91437
VZ
118
119\func{void}{SetHoverColour}{\param{const wxColour \&}{ colour}}
120
121Sets the colour used to print the label of the hyperlink when the mouse is over the control.
122
123
db67d86d 124\membersection{wxHyperlinkCtrl::GetNormalColour}\label{wxhyperlinkctrlgetnormalcolour}
17e91437
VZ
125
126\constfunc{wxColour}{GetNormalColour}{\void}
127
128Returns the colour used to print the label when the link has never been clicked before
129(i.e. the link has not been {\it visited}) and the mouse is not over the control.
130
131
db67d86d 132\membersection{wxHyperlinkCtrl::SetNormalColour}\label{wxhyperlinkctrlsetnormalcolour}
17e91437
VZ
133
134\func{void}{SetNormalColour}{\param{const wxColour \&}{ colour}}
135
136Sets the colour used to print the label when the link has never been clicked before
137(i.e. the link has not been {\it visited}) and the mouse is not over the control.
138
139
db67d86d 140\membersection{wxHyperlinkCtrl::GetVisitedColour}\label{wxhyperlinkctrlgetvisitedcolour}
17e91437
VZ
141
142\constfunc{wxColour}{GetVisitedColour}{\void}
143
144Returns the colour used to print the label when the mouse is not over the control
145and the link has already been clicked before (i.e. the link has been {\it visited}).
146
147
db67d86d 148\membersection{wxHyperlinkCtrl::SetVisitedColour}\label{wxhyperlinkctrlsetvisitedcolour}
17e91437
VZ
149
150\func{void}{SetVisitedColour}{\param{const wxColour \&}{ colour}}
151
152Sets the colour used to print the label when the mouse is not over the control
153and the link has already been clicked before (i.e. the link has been {\it visited}).
154
155
db67d86d 156\membersection{wxHyperlinkCtrl::GetVisited}\label{wxhyperlinkctrlgetvisited}
17e91437
VZ
157
158\constfunc{bool}{GetVisited}{\void}
159
160Returns \true if the hyperlink has already been clicked by the user at least one time.
161
162
db67d86d 163\membersection{wxHyperlinkCtrl::SetVisited}\label{wxhyperlinkctrlsetvisited}
17e91437
VZ
164
165\func{void}{SetVisited}{\param{bool}{ visited = true}}
166
167Marks the hyperlink as visited (see \helpref{SetVisitedColour}{wxhyperlinkctrlsetvisitedcolour}).
168
169
db67d86d 170\membersection{wxHyperlinkCtrl::GetURL}\label{wxhyperlinkctrlgeturl}
17e91437
VZ
171
172\constfunc{wxString}{GetURL}{\void}
173
174Returns the URL associated with the hyperlink.
175
176
db67d86d 177\membersection{wxHyperlinkCtrl::SetURL}\label{wxhyperlinkctrlseturl}
17e91437
VZ
178
179\func{void}{SetURL}{\param{const wxString \&}{ url}}
180
181Sets the URL associated with the hyperlink.
182
183
184
185
186
187
103791a6 188\section{\class{wxHyperlinkEvent}}\label{wxhyperlinkevent}
17e91437
VZ
189
190This event class is used for the events generated by
191\helpref{wxHyperlinkCtrl}{wxhyperlinkctrl}.
192
193\wxheading{Derived from}
194
195\helpref{wxCommandEvent}{wxcommandevent}\\
196\helpref{wxEvent}{wxevent}\\
197\helpref{wxObject}{wxobject}
198
199\wxheading{Include files}
200
201<wx/hyperlink.h>
202
a7af285d
VZ
203\wxheading{Library}
204
205\helpref{wxAdv}{librarieslist}
206
17e91437
VZ
207\wxheading{Event handling}
208
209To process input from a wxHyperlinkCtrl, use one of these event handler macros to
210direct input to member function that take a
103791a6 211\helpref{wxHyperlinkEvent}{wxhyperlinkevent} argument:
17e91437
VZ
212
213\twocolwidtha{7cm}
214\begin{twocollist}
215\twocolitem{{\bf EVT\_HYPERLINK(id, func)}}{User clicked on an hyperlink.}
216\end{twocollist}
217
218
219\latexignore{\rtfignore{\wxheading{Members}}}
220
221\membersection{wxHyperlinkEvent::wxHyperlinkEvent}\label{wxhyperlinkctrlctor}
222
223\func{}{wxHyperlinkEvent}{\param{wxObject *}{ generator}, \param{int}{ id}, \param{const wxString \&}{ url}}
224
225The constructor is not normally used by the user code.
226
227
228\membersection{wxHyperlinkEvent::GetURL}\label{wxhyperlinkctrlgeturl}
229
230\constfunc{wxString}{GetURL}{\void}
231
232Returns the URL of the hyperlink where the user has just clicked.
233
234
235\membersection{wxHyperlinkEvent::SetURL}\label{wxhyperlinkctrlseturl}
236
237\func{void}{SetURL}{\param{const wxString \&}{ url}}
238
239Sets the URL associated with the event.
b67a86d5 240