]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/hyperlink.tex
Removed wxDataViewViewColumn since it is redundant.
[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
37
38\wxheading{Window styles}
39
40\twocolwidtha{7cm}
41\begin{twocollist}\itemsep=0pt
914f5157
VZ
42\twocolitem{\windowstyle{wxHL\_ALIGN\_LEFT}}{Align the text to the left.}
43\twocolitem{\windowstyle{wxHL\_ALIGN\_RIGHT}}{Align the text to the right.}
44\twocolitem{\windowstyle{wxHL\_ALIGN\_CENTRE}}{Center the text (horizontally).}
17e91437 45\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.}
914f5157 46\twocolitem{\windowstyle{wxHL\_DEFAULT\_STYLE}}{The default style for wxHyperlinkCtrl: \texttt{wxNO\_BORDER|wxHL\_CONTEXTMENU|wxHL\_ALIGN\_CENTRE}.}
17e91437
VZ
47\end{twocollist}
48
49See also \helpref{window styles overview}{windowstyles}.
50
51
52\wxheading{Event handling}
53
103791a6
WS
54To process input from an hyperlink control, use these event handler macros to
55direct input to member functions that take a
56\helpref{wxHyperlinkEvent}{wxhyperlinkevent} argument.
17e91437
VZ
57
58\twocolwidtha{7cm}
59\begin{twocollist}\itemsep=0pt
60\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.}
61\end{twocollist}
62
63
64\wxheading{See also}
65
103791a6 66\helpref{wxURL}{wxurl}, \helpref{wxHyperlinkEvent}{wxhyperlinkevent}
17e91437
VZ
67
68
69\latexignore{\rtfignore{\wxheading{Members}}}
70
db67d86d 71\membersection{wxHyperlinkCtrl::wxHyperLink}\label{wxhyperlinkctrlctor}
17e91437
VZ
72
73\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"}}
74
75Constructor. See \helpref{Create}{wxhyperlinkctrlcreate} for more info.
76
77
db67d86d 78\membersection{wxHyperlinkCtrl::Create}\label{wxhyperlinkctrlcreate}
17e91437 79
103791a6 80\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
81
82Creates the hyperlink control.
83
84\wxheading{Parameters}
85
86\docparam{parent}{Parent window. Must not be \NULL.}
87
98159dd8 88\docparam{id}{Window identifier. A value of wxID\_ANY indicates a default value.}
17e91437
VZ
89
90\docparam{label}{The label of the hyperlink.}
91
103791a6 92\docparam{url}{The URL associated with the given label.}
17e91437
VZ
93
94\docparam{pos}{Window position.}
95
98159dd8 96\docparam{size}{Window size. If the wxDefaultSize is specified then the window is sized
17e91437
VZ
97appropriately.}
98
99\docparam{style}{Window style. See \helpref{wxHyperlinkCtrl}{wxhyperlinkctrl}.}
100
101\docparam{validator}{Window validator.}
102
103\docparam{name}{Window name.}
104
105
db67d86d 106\membersection{wxHyperlinkCtrl::GetHoverColour}\label{wxhyperlinkctrlgethovercolour}
17e91437
VZ
107
108\constfunc{wxColour}{GetHoverColour}{\void}
109
110Returns the colour used to print the label of the hyperlink when the mouse is over the control.
111
112
db67d86d 113\membersection{wxHyperlinkCtrl::SetHoverColour}\label{wxhyperlinkctrlsethovercolour}
17e91437
VZ
114
115\func{void}{SetHoverColour}{\param{const wxColour \&}{ colour}}
116
117Sets the colour used to print the label of the hyperlink when the mouse is over the control.
118
119
db67d86d 120\membersection{wxHyperlinkCtrl::GetNormalColour}\label{wxhyperlinkctrlgetnormalcolour}
17e91437
VZ
121
122\constfunc{wxColour}{GetNormalColour}{\void}
123
124Returns the colour used to print the label when the link has never been clicked before
125(i.e. the link has not been {\it visited}) and the mouse is not over the control.
126
127
db67d86d 128\membersection{wxHyperlinkCtrl::SetNormalColour}\label{wxhyperlinkctrlsetnormalcolour}
17e91437
VZ
129
130\func{void}{SetNormalColour}{\param{const wxColour \&}{ colour}}
131
132Sets the colour used to print the label when the link has never been clicked before
133(i.e. the link has not been {\it visited}) and the mouse is not over the control.
134
135
db67d86d 136\membersection{wxHyperlinkCtrl::GetVisitedColour}\label{wxhyperlinkctrlgetvisitedcolour}
17e91437
VZ
137
138\constfunc{wxColour}{GetVisitedColour}{\void}
139
140Returns the colour used to print the label when the mouse is not over the control
141and the link has already been clicked before (i.e. the link has been {\it visited}).
142
143
db67d86d 144\membersection{wxHyperlinkCtrl::SetVisitedColour}\label{wxhyperlinkctrlsetvisitedcolour}
17e91437
VZ
145
146\func{void}{SetVisitedColour}{\param{const wxColour \&}{ colour}}
147
148Sets the colour used to print the label when the mouse is not over the control
149and the link has already been clicked before (i.e. the link has been {\it visited}).
150
151
db67d86d 152\membersection{wxHyperlinkCtrl::GetVisited}\label{wxhyperlinkctrlgetvisited}
17e91437
VZ
153
154\constfunc{bool}{GetVisited}{\void}
155
156Returns \true if the hyperlink has already been clicked by the user at least one time.
157
158
db67d86d 159\membersection{wxHyperlinkCtrl::SetVisited}\label{wxhyperlinkctrlsetvisited}
17e91437
VZ
160
161\func{void}{SetVisited}{\param{bool}{ visited = true}}
162
163Marks the hyperlink as visited (see \helpref{SetVisitedColour}{wxhyperlinkctrlsetvisitedcolour}).
164
165
db67d86d 166\membersection{wxHyperlinkCtrl::GetURL}\label{wxhyperlinkctrlgeturl}
17e91437
VZ
167
168\constfunc{wxString}{GetURL}{\void}
169
170Returns the URL associated with the hyperlink.
171
172
db67d86d 173\membersection{wxHyperlinkCtrl::SetURL}\label{wxhyperlinkctrlseturl}
17e91437
VZ
174
175\func{void}{SetURL}{\param{const wxString \&}{ url}}
176
177Sets the URL associated with the hyperlink.
178
179
180
181
182
183
103791a6 184\section{\class{wxHyperlinkEvent}}\label{wxhyperlinkevent}
17e91437
VZ
185
186This event class is used for the events generated by
187\helpref{wxHyperlinkCtrl}{wxhyperlinkctrl}.
188
189\wxheading{Derived from}
190
191\helpref{wxCommandEvent}{wxcommandevent}\\
192\helpref{wxEvent}{wxevent}\\
193\helpref{wxObject}{wxobject}
194
195\wxheading{Include files}
196
197<wx/hyperlink.h>
198
199\wxheading{Event handling}
200
201To process input from a wxHyperlinkCtrl, use one of these event handler macros to
202direct input to member function that take a
103791a6 203\helpref{wxHyperlinkEvent}{wxhyperlinkevent} argument:
17e91437
VZ
204
205\twocolwidtha{7cm}
206\begin{twocollist}
207\twocolitem{{\bf EVT\_HYPERLINK(id, func)}}{User clicked on an hyperlink.}
208\end{twocollist}
209
210
211\latexignore{\rtfignore{\wxheading{Members}}}
212
213\membersection{wxHyperlinkEvent::wxHyperlinkEvent}\label{wxhyperlinkctrlctor}
214
215\func{}{wxHyperlinkEvent}{\param{wxObject *}{ generator}, \param{int}{ id}, \param{const wxString \&}{ url}}
216
217The constructor is not normally used by the user code.
218
219
220\membersection{wxHyperlinkEvent::GetURL}\label{wxhyperlinkctrlgeturl}
221
222\constfunc{wxString}{GetURL}{\void}
223
224Returns the URL of the hyperlink where the user has just clicked.
225
226
227\membersection{wxHyperlinkEvent::SetURL}\label{wxhyperlinkctrlseturl}
228
229\func{void}{SetURL}{\param{const wxString \&}{ url}}
230
231Sets the URL associated with the event.
b67a86d5 232