]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/htwindow.tex
test wxTE_NO_VSCROLL
[wxWidgets.git] / docs / latex / wx / htwindow.tex
... / ...
CommitLineData
1%
2% automatically generated by HelpGen from
3% htmlwindow.tex at 14/Mar/99 20:13:37
4%
5
6\section{\class{wxHtmlWindow}}\label{wxhtmlwindow}
7
8wxHtmlWindow is probably the only class you will directly use
9unless you want to do something special (like adding new tag
10handlers or MIME filters).
11
12The purpose of this class is to display HTML pages (either local
13file or downloaded via HTTP protocol) in a window. The width
14of the window is constant - given in the constructor - and virtual height
15is changed dynamically depending on page size.
16Once the window is created you can set its content by calling
17\helpref{SetPage(text)}{wxhtmlwindowsetpage},
18\helpref{LoadPage(filename)}{wxhtmlwindowloadpage} or
19\helpref{LoadFile}{wxhtmlwindowloadfile}.
20
21\wxheading{Note}
22
23wxHtmlWindow uses the \helpref{wxImage}{wximage} class for displaying images.
24Don't forget to initialize all image formats you need before loading any page!
25(See \helpref{wxInitAllImageHandlers}{wxinitallimagehandlers} and
26\helpref{wxImage::AddHandler}{wximageaddhandler}.)
27
28\wxheading{Derived from}
29
30\helpref{wxScrolledWindow}{wxscrolledwindow}
31
32\wxheading{Include files}
33
34<wx/html/htmlwin.h>
35
36\wxheading{Window styles}
37
38\twocolwidtha{5cm}
39\begin{twocollist}\itemsep=0pt
40\twocolitem{\windowstyle{wxHW\_SCROLLBAR\_NEVER}}{Never display scrollbars, not
41even when the page is larger than the window.}
42\twocolitem{\windowstyle{wxHW\_SCROLLBAR\_AUTO}}{Display scrollbars only if
43page's size exceeds window's size.}
44\twocolitem{\windowstyle{wxHW\_NO\_SELECTION}}{Don't allow the user to select
45text.}
46\end{twocollist}
47
48
49\wxheading{Event handling}
50
51To process input from a wxHtmlWindow, use these event handler macros to direct input to member
52functions that take a \helpref{wxHtmlCellEvent}{wxhtmlcellevent} argument or a \helpref{wxHtmlLinkEvent}{wxhtmllinkevent}.
53
54\twocolwidtha{7cm}
55\begin{twocollist}\itemsep=0pt
56\twocolitem{{\bf EVT\_HTML\_CELL\_CLICKED(id, func)}}{A \helpref{wxHtmlCell}{wxhtmlcell} was clicked.}
57\twocolitem{{\bf EVT\_HTML\_CELL\_HOVER(id, func)}}{The mouse passed over a \helpref{wxHtmlCell}{wxhtmlcell}.}
58\twocolitem{{\bf EVT\_HTML\_LINK\_CLICKED(id, func)}}{A \helpref{wxHtmlCell}{wxhtmlcell} which contains an hyperlink was clicked.}
59\end{twocollist}
60
61
62\wxheading{See also}
63
64\helpref{wxHtmlLinkEvent}{wxhtmllinkevent}, \helpref{wxHtmlCellEvent}{wxhtmlcellevent}
65
66
67
68\membersection{wxHtmlWindow::wxHtmlWindow}\label{wxhtmlwindowwxhtmlwindow}
69
70\func{}{wxHtmlWindow}{\void}
71
72Default constructor.
73
74\func{}{wxHtmlWindow}{\param{wxWindow }{*parent}, \param{wxWindowID }{id = -1}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize}, \param{long }{style = wxHW\_DEFAULT\_STYLE}, \param{const wxString\& }{name = "htmlWindow"}}
75
76Constructor. The parameters are the same as for the \helpref{wxScrolledWindow}{wxscrolledwindow} constructor.
77
78\wxheading{Parameters}
79
80\docparam{style}{Window style. See \helpref{wxHtmlWindow}{wxhtmlwindow}.}
81
82\membersection{wxHtmlWindow::AddFilter}\label{wxhtmlwindowaddfilter}
83
84\func{static void}{AddFilter}{\param{wxHtmlFilter }{*filter}}
85
86Adds \helpref{input filter}{filters} to the static list of available
87filters. These filters are present by default:
88
89\begin{itemize}\itemsep=0pt
90\item {\tt text/html} MIME type
91\item {\tt image/*} MIME types
92\item Plain Text filter (this filter is used if no other filter matches)
93\end{itemize}
94
95\membersection{wxHtmlWindow::AppendToPage}\label{wxhtmlwindowappendtopage}
96
97\func{bool}{AppendToPage}{\param{const wxString\& }{source}}
98
99Appends HTML fragment to currently displayed text and refreshes the window.
100
101\wxheading{Parameters}
102
103\docparam{source}{HTML code fragment}
104
105\wxheading{Return value}
106
107false if an error occurred, true otherwise.
108
109\membersection{wxHtmlWindow::GetInternalRepresentation}\label{wxhtmlwindowgetinternalrepresentation}
110
111\constfunc{wxHtmlContainerCell*}{GetInternalRepresentation}{\void}
112
113Returns pointer to the top-level container.
114
115See also: \helpref{Cells Overview}{cells},
116\helpref{Printing Overview}{printing}
117
118\membersection{wxHtmlWindow::GetOpenedAnchor}\label{wxhtmlwindowgetopenedanchor}
119
120\func{wxString}{GetOpenedAnchor}{\void}
121
122Returns anchor within currently opened page
123(see \helpref{GetOpenedPage}{wxhtmlwindowgetopenedpage}).
124If no page is opened or if the displayed page wasn't
125produced by call to LoadPage, empty string is returned.
126
127
128\membersection{wxHtmlWindow::GetOpenedPage}\label{wxhtmlwindowgetopenedpage}
129
130\func{wxString}{GetOpenedPage}{\void}
131
132Returns full location of the opened page. If no page is opened or if the displayed page wasn't
133produced by call to LoadPage, empty string is returned.
134
135\membersection{wxHtmlWindow::GetOpenedPageTitle}\label{wxhtmlwindowgetopenedpagetitle}
136
137\func{wxString}{GetOpenedPageTitle}{\void}
138
139Returns title of the opened page or wxEmptyString if current page does not contain {\tt <TITLE>} tag.
140
141\membersection{wxHtmlWindow::GetRelatedFrame}\label{wxhtmlwindowgetrelatedframe}
142
143\constfunc{wxFrame*}{GetRelatedFrame}{\void}
144
145Returns the related frame.
146
147\membersection{wxHtmlWindow::HistoryBack}\label{wxhtmlwindowhistoryback}
148
149\func{bool}{HistoryBack}{\void}
150
151Moves back to the previous page. (each page displayed using
152\helpref{LoadPage}{wxhtmlwindowloadpage} is stored in history list.)
153
154\membersection{wxHtmlWindow::HistoryCanBack}\label{wxhtmlwindowhistorycanback}
155
156\func{bool}{HistoryCanBack}{\void}
157
158Returns true if it is possible to go back in the history (i.e. HistoryBack()
159won't fail).
160
161\membersection{wxHtmlWindow::HistoryCanForward}\label{wxhtmlwindowhistorycanforward}
162
163\func{bool}{HistoryCanForward}{\void}
164
165Returns true if it is possible to go forward in the history (i.e. HistoryBack()
166won't fail).
167
168
169\membersection{wxHtmlWindow::HistoryClear}\label{wxhtmlwindowhistoryclear}
170
171\func{void}{HistoryClear}{\void}
172
173Clears history.
174
175\membersection{wxHtmlWindow::HistoryForward}\label{wxhtmlwindowhistoryforward}
176
177\func{bool}{HistoryForward}{\void}
178
179Moves to next page in history.
180
181\membersection{wxHtmlWindow::LoadFile}\label{wxhtmlwindowloadfile}
182
183\func{virtual bool}{LoadFile}{\param{const wxFileName\& }{filename}}
184
185Loads HTML page from file and displays it.
186
187\wxheading{Return value}
188
189false if an error occurred, true otherwise
190
191\wxheading{See also}
192
193\helpref{LoadPage}{wxhtmlwindowloadpage}
194
195\membersection{wxHtmlWindow::LoadPage}\label{wxhtmlwindowloadpage}
196
197\func{virtual bool}{LoadPage}{\param{const wxString\& }{location}}
198
199Unlike SetPage this function first loads HTML page from {\it location}
200and then displays it. See example:
201
202\begin{verbatim}
203htmlwin->LoadPage("help/myproject/index.htm");
204\end{verbatim}
205
206\wxheading{Parameters}
207
208\docparam{location}{The address of document. See \helpref{wxFileSystem}{wxfilesystem} for details on address format and behaviour of "opener".}
209
210\wxheading{Return value}
211
212false if an error occurred, true otherwise
213
214\wxheading{See also}
215
216\helpref{LoadFile}{wxhtmlwindowloadfile}
217
218\membersection{wxHtmlWindow::OnCellClicked}\label{wxhtmlwindowoncellclicked}
219
220\func{virtual bool}{OnCellClicked}{\param{wxHtmlCell }{*cell}, \param{wxCoord }{x}, \param{wxCoord }{y}, \param{const wxMouseEvent\& }{event}}
221
222This method is called when a mouse button is clicked inside wxHtmlWindow.
223
224The default behaviour is to emit a \helpref{wxHtmlCellEvent}{wxhtmlcellevent}
225and, if the event was not processed or skipped, call
226\helpref{OnLinkClicked}{wxhtmlwindowonlinkclicked} if the cell contains an
227hypertext link.
228
229Overloading this method is deprecated; intercept the event instead.
230
231
232\wxheading{Parameters}
233
234\docparam{cell}{The cell inside which the mouse was clicked, always a simple
235(i.e. non-container) cell}
236
237\docparam{x, y}{The logical coordinates of the click point}
238
239\docparam{event}{The mouse event containing other information about the click}
240
241\wxheading{Return value}
242
243\true if a link was clicked, \false otherwise.
244
245\membersection{wxHtmlWindow::OnCellMouseHover}\label{wxhtmlwindowoncellmousehover}
246
247\func{virtual void}{OnCellMouseHover}{\param{wxHtmlCell }{*cell}, \param{wxCoord }{x}, \param{wxCoord }{y}}
248
249This method is called when a mouse moves over an HTML cell.
250Default behaviour is to emit a \helpref{wxHtmlCellEvent}{wxhtmlcellevent}.
251Overloading this method is deprecated; intercept the event instead.
252
253\wxheading{Parameters}
254
255\docparam{cell}{The cell inside which the mouse is currently, always a simple
256(i.e. non-container) cell}
257
258\docparam{x, y}{The logical coordinates of the click point}
259
260\membersection{wxHtmlWindow::OnLinkClicked}\label{wxhtmlwindowonlinkclicked}
261
262\func{virtual void}{OnLinkClicked}{\param{const wxHtmlLinkInfo\& }{link}}
263
264Called when user clicks on hypertext link. Default behaviour is to emit a
265\helpref{wxHtmlLinkEvent}{wxhtmllinkevent} and, if the event was not processed
266or skipped, call \helpref{LoadPage}{wxhtmlwindowloadpage} and do nothing else.
267Overloading this method is deprecated; intercept the event instead.
268
269Also see \helpref{wxHtmlLinkInfo}{wxhtmllinkinfo}.
270
271\membersection{wxHtmlWindow::OnOpeningURL}\label{wxhtmlwindowonopeningurl}
272
273\func{virtual wxHtmlOpeningStatus}{OnOpeningURL}{\param{wxHtmlURLType }{type},\param{const wxString\& }{url}, \param{wxString *}{redirect}}
274
275Called when an URL is being opened (either when the user clicks on a link or
276an image is loaded). The URL will be opened only if OnOpeningURL returns
277{\tt wxHTML\_OPEN}. This method is called by
278\helpref{wxHtmlParser::OpenURL}{wxhtmlparseropenurl}.
279You can override OnOpeningURL to selectively block some
280URLs (e.g. for security reasons) or to redirect them elsewhere. Default
281behaviour is to always return {\tt wxHTML\_OPEN}.
282
283\wxheading{Parameters}
284
285\docparam{type}{Indicates type of the resource. Is one of
286\begin{twocollist}\itemsep=0pt
287\twocolitem{{\bf wxHTML\_URL\_PAGE}}{Opening a HTML page.}
288\twocolitem{{\bf wxHTML\_URL\_IMAGE}}{Opening an image.}
289\twocolitem{{\bf wxHTML\_URL\_OTHER}}{Opening a resource that doesn't fall into
290any other category.}
291\end{twocollist}}
292
293\docparam{url}{URL being opened.}
294
295\docparam{redirect}{Pointer to wxString variable that must be filled with an
296URL if OnOpeningURL returns {\tt wxHTML\_REDIRECT}.}
297
298\wxheading{Return value}
299\begin{twocollist}\itemsep=0pt
300\twocolitem{{\bf wxHTML\_OPEN}}{Open the URL.}
301\twocolitem{{\bf wxHTML\_BLOCK}}{Deny access to the URL, \helpref{wxHtmlParser::OpenURL}{wxhtmlparseropenurl} will return NULL.}
302\twocolitem{{\bf wxHTML\_REDIRECT}}{Don't open {\it url}, redirect to another
303URL. OnOpeningURL must fill {\it *redirect} with the new URL. OnOpeningURL will
304be called again on returned URL.}
305\end{twocollist}
306
307\membersection{wxHtmlWindow::OnSetTitle}\label{wxhtmlwindowonsettitle}
308
309\func{virtual void}{OnSetTitle}{\param{const wxString\& }{title}}
310
311Called on parsing {\tt <TITLE>} tag.
312
313
314\membersection{wxHtmlWindow::ReadCustomization}\label{wxhtmlwindowreadcustomization}
315
316\func{virtual void}{ReadCustomization}{\param{wxConfigBase }{*cfg}, \param{wxString }{path = wxEmptyString}}
317
318This reads custom settings from wxConfig. It uses the path 'path'
319if given, otherwise it saves info into currently selected path.
320The values are stored in sub-path {\tt wxHtmlWindow}
321
322Read values: all things set by SetFonts, SetBorders.
323
324\wxheading{Parameters}
325
326\docparam{cfg}{wxConfig from which you want to read the configuration.}
327
328\docparam{path}{Optional path in config tree. If not given current path is used.}
329
330\membersection{wxHtmlWindow::SelectAll}\label{wxhtmlwindowselectall}
331
332\func{void}{SelectAll}{\void}
333
334Selects all text in the window.
335
336\wxheading{See also}
337
338\helpref{SelectLine}{wxhtmlwindowselectline},
339\helpref{SelectWord}{wxhtmlwindowselectword}
340
341\membersection{wxHtmlWindow::SelectionToText}\label{wxhtmlwindowselectiontotext}
342
343\func{wxString}{SelectionToText}{\void}
344
345Returns current selection as plain text. Returns empty string if no text
346is currently selected.
347
348\membersection{wxHtmlWindow::SelectLine}\label{wxhtmlwindowselectline}
349
350\func{void}{SelectLine}{\param{const wxPoint\& }{pos}}
351
352Selects the line of text that \arg{pos} points at. Note that \arg{pos}
353is relative to the top of displayed page, not to window's origin, use
354\helpref{CalcUnscrolledPosition}{wxscrolledwindowcalcunscrolledposition}
355to convert physical coordinate.
356
357\wxheading{See also}
358
359\helpref{SelectAll}{wxhtmlwindowselectall},
360\helpref{SelectWord}{wxhtmlwindowselectword}
361
362\membersection{wxHtmlWindow::SelectWord}\label{wxhtmlwindowselectword}
363
364\func{void}{SelectWord}{\param{const wxPoint\& }{pos}}
365
366Selects the word at position \arg{pos}. Note that \arg{pos}
367is relative to the top of displayed page, not to window's origin, use
368\helpref{CalcUnscrolledPosition}{wxscrolledwindowcalcunscrolledposition}
369to convert physical coordinate.
370
371\wxheading{See also}
372
373\helpref{SelectAll}{wxhtmlwindowselectall},
374\helpref{SelectLine}{wxhtmlwindowselectline}
375
376\membersection{wxHtmlWindow::SetBorders}\label{wxhtmlwindowsetborders}
377
378\func{void}{SetBorders}{\param{int }{b}}
379
380This function sets the space between border of window and HTML contents. See image:
381
382\helponly{\image{}{border.bmp}}
383
384\wxheading{Parameters}
385
386\docparam{b}{indentation from borders in pixels}
387
388\membersection{wxHtmlWindow::SetFonts}\label{wxhtmlwindowsetfonts}
389
390\func{void}{SetFonts}{\param{const wxString\& }{normal\_face}, \param{const wxString\& }{fixed\_face}, \param{const int }{*sizes = NULL}}
391
392This function sets font sizes and faces.
393
394\wxheading{Parameters}
395
396\docparam{normal\_face}{This is face name for normal (i.e. non-fixed) font.
397It can be either empty string (then the default face is chosen) or
398platform-specific face name. Examples are "helvetica" under Unix or
399"Times New Roman" under Windows.}
400
401\docparam{fixed\_face}{The same thing for fixed face ( <TT>..</TT> )}
402
403\docparam{sizes}{This is an array of 7 items of {\it int} type.
404The values represent size of font with HTML size from -2 to +4
405( <FONT SIZE=-2> to <FONT SIZE=+4> ). Default sizes are used if {\it sizes}
406is NULL.}
407
408\wxheading{Defaults}
409
410Default font sizes are defined by constants wxHTML\_FONT\_SIZE\_1,
411wxHTML\_FONT\_SIZE\_2, ..., wxHTML\_FONT\_SIZE\_7. Note that they differ among
412platforms. Default face names are empty strings.
413
414\membersection{wxHtmlWindow::SetPage}\label{wxhtmlwindowsetpage}
415
416\func{bool}{SetPage}{\param{const wxString\& }{source}}
417
418Sets HTML page and display it. This won't {\bf load} the page!!
419It will display the {\it source}. See example:
420
421\begin{verbatim}
422htmlwin -> SetPage("<html><body>Hello, world!</body></html>");
423\end{verbatim}
424
425If you want to load a document from some location use
426\helpref{LoadPage}{wxhtmlwindowloadpage} instead.
427
428\wxheading{Parameters}
429
430\docparam{source}{The HTML document source to be displayed.}
431
432\wxheading{Return value}
433
434false if an error occurred, true otherwise.
435
436\membersection{wxHtmlWindow::SetRelatedFrame}\label{wxhtmlwindowsetrelatedframe}
437
438\func{void}{SetRelatedFrame}{\param{wxFrame* }{frame}, \param{const wxString\& }{format}}
439
440Sets the frame in which page title will be displayed. {\it format} is format of
441frame title, e.g. "HtmlHelp : \%s". It must contain exactly one \%s. This
442\%s is substituted with HTML page title.
443
444\membersection{wxHtmlWindow::SetRelatedStatusBar}\label{wxhtmlwindowsetrelatedstatusbar}
445
446\func{void}{SetRelatedStatusBar}{\param{int }{bar}}
447
448{\bf After} calling \helpref{SetRelatedFrame}{wxhtmlwindowsetrelatedframe},
449this sets statusbar slot where messages will be displayed.
450(Default is -1 = no messages.)
451
452\wxheading{Parameters}
453
454\docparam{bar}{statusbar slot number (0..n)}
455
456\membersection{wxHtmlWindow::ToText}\label{wxhtmlwindowtotext}
457
458\func{wxString}{ToText}{\void}
459
460Returns content of currently displayed page as plain text.
461
462\membersection{wxHtmlWindow::WriteCustomization}\label{wxhtmlwindowwritecustomization}
463
464\func{virtual void}{WriteCustomization}{\param{wxConfigBase }{*cfg}, \param{wxString }{path = wxEmptyString}}
465
466Saves custom settings into wxConfig. It uses the path 'path'
467if given, otherwise it saves info into currently selected path.
468Regardless of whether the path is given or not, the function creates sub-path
469{\tt wxHtmlWindow}.
470
471Saved values: all things set by SetFonts, SetBorders.
472
473\wxheading{Parameters}
474
475\docparam{cfg}{wxConfig to which you want to save the configuration.}
476
477\docparam{path}{Optional path in config tree. If not given, the current path is used.}
478
479
480
481
482
483
484
485\section{\class{wxHtmlLinkEvent}}\label{wxhtmllinkevent}
486
487This event class is used for the events generated by \helpref{wxHtmlWindow}{wxhtmlwindow}.
488
489\wxheading{Derived from}
490
491\helpref{wxCommandEvent}{wxcommandevent}\\
492\helpref{wxEvent}{wxevent}\\
493\helpref{wxObject}{wxobject}
494
495\wxheading{Include files}
496
497<wx/html/htmlwin.h>
498
499\wxheading{Event handling}
500
501To process input from a wxHtmlLinkEvent, use one of these event handler macros to
502direct input to member function that take a \helpref{wxHtmlLinkEvent}{wxhtmllinkevent} argument:
503
504\twocolwidtha{7cm}
505\begin{twocollist}
506\twocolitem{{\bf EVT\_HTML\_LINK\_CLICKED(id, func)}}{User clicked on an hyperlink.}
507\end{twocollist}
508
509
510\latexignore{\rtfignore{\wxheading{Members}}}
511
512\membersection{wxHtmlLinkEvent::wxHtmlLinkEvent}\label{wxhtmllinkeventctor}
513
514\func{}{wxHyperlinkEvent}{\param{int}{ id}, \param{const wxHtmlLinkInfo \&}{ linkinfo}}
515
516The constructor is not normally used by the user code.
517
518
519\membersection{wxHtmlLinkEvent::GetLinkInfo}\label{wxhtmllinkeventgetlinkinfo}
520
521\constfunc{const wxHtmlLinkInfo &}{GetLinkInfo}{\void}
522
523Returns the \helpref{wxHtmlLinkInfo}{wxhtmllinkinfo} which contains info about the cell clicked and the hyperlink it contains.
524
525
526
527
528
529
530\section{\class{wxHtmlCellEvent}}\label{wxhtmlcellevent}
531
532This event class is used for the events generated by \helpref{wxHtmlWindow}{wxhtmlwindow}.
533
534\wxheading{Derived from}
535
536\helpref{wxCommandEvent}{wxcommandevent}\\
537\helpref{wxEvent}{wxevent}\\
538\helpref{wxObject}{wxobject}
539
540\wxheading{Include files}
541
542<wx/html/htmlwin.h>
543
544\wxheading{Event handling}
545
546To process input from a wxHtmlCellEvent, use one of these event handler macros to
547direct input to member function that take a \helpref{wxHtmlCellEvent}{wxhtmlcellevent} argument:
548
549\twocolwidtha{7cm}
550\begin{twocollist}
551\twocolitem{{\bf EVT\_HTML\_CELL\_HOVER(id, func)}}{User moved the mouse over a \helpref{wxHtmlCell}{wxhtmlcell}.}
552\twocolitem{{\bf EVT\_HTML\_CELL\_CLICKED(id, func)}}{User clicked on a \helpref{wxHtmlCell}{wxhtmlcell}. When handling this event, remember to use \helpref{wxHtmlCell::SetLinkClicked(true)}{wxhtmlcelleventsetlinkclicked} if the cell contains a link.}
553\end{twocollist}
554
555
556\latexignore{\rtfignore{\wxheading{Members}}}
557
558\membersection{wxHtmlCellEvent::wxHtmlCellEvent}\label{wxhtmlcelleventctor}
559
560\func{}{wxHtmlCellEvent}{\param{wxEventType}{ commandType}, \param{int}{ id}, \param{wxHtmlCell *}{ cell}, \param{const wxPoint \&}{ point}}
561
562The constructor is not normally used by the user code.
563
564
565\membersection{wxHtmlCellEvent::GetCell}\label{wxhtmlcelleventgetcell}
566
567\constfunc{wxHtmlCell *}{GetCell}{\void}
568
569Returns the \helpref{wxHtmlCellEvent}{wxhtmlcellevent} associated with the event.
570
571
572\membersection{wxHtmlCellEvent::GetPoint}\label{wxhtmlcelleventgetpoint}
573
574\constfunc{wxPoint}{GetPoint}{\void}
575
576Returns the \helpref{wxPoint}{wxpoint} associated with the event.
577
578
579\membersection{wxHtmlCellEvent::SetLinkClicked}\label{wxhtmlcelleventsetlinkclicked}
580
581\func{bool}{SetLinkClicked}{\param{bool}{ linkclicked}}
582
583Call this function with {\tt linkclicked} set to \true if the cell which has been clicked contained a link or
584\false otherwise (which is the default). With this function the event handler can return info to the
585wxHtmlWindow which sent the event.
586
587
588\membersection{wxHtmlCellEvent::GetLinkClicked}\label{wxhtmlcelleventgetlinkclicked}
589
590\constfunc{bool}{GetLinkClicked}{\void}
591
592Returns \true if \helpref{SetLinkClicked(true)}{wxhtmlcelleventsetlinkclicked} has previously been called;
593\false otherwise.
594