2 % automatically generated by HelpGen from
3 % htmlwindow.tex at 14/Mar/99 20:13:37
6 \section{\class{wxHtmlWindow
}}\label{wxhtmlwindow
}
8 wxHtmlWindow is probably the only class you will directly use
9 unless you want to do something special (like adding new tag
10 handlers or MIME filters).
12 The purpose of this class is to display HTML pages (either local
13 file or downloaded via HTTP protocol) in a window. The width
14 of the window is constant - given in the constructor - and virtual height
15 is changed dynamically depending on page size.
16 Once 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
}.
23 wxHtmlWindow uses the
\helpref{wxImage
}{wximage
} class for displaying images.
24 Don't forget to initialize all image formats you need before loading any page!
25 (See
\helpref{wxInitAllImageHandlers
}{wxinitallimagehandlers
} and
26 \helpref{wxImage::AddHandler
}{wximageaddhandler
}.)
28 \wxheading{Derived from
}
30 \helpref{wxScrolledWindow
}{wxscrolledwindow
}\\
31 \helpref{wxPanel
}{wxpanel
}\\
32 \helpref{wxWindow
}{wxwindow
}\\
33 \helpref{wxEvtHandler
}{wxevthandler
}\\
34 \helpref{wxObject
}{wxobject
}
36 \wxheading{Include files
}
42 \helpref{wxHtml
}{librarieslist
}
44 \wxheading{Window styles
}
47 \begin{twocollist
}\itemsep=
0pt
48 \twocolitem{\windowstyle{wxHW
\_SCROLLBAR\_NEVER}}{Never display scrollbars, not
49 even when the page is larger than the window.
}
50 \twocolitem{\windowstyle{wxHW
\_SCROLLBAR\_AUTO}}{Display scrollbars only if
51 page's size exceeds window's size.
}
52 \twocolitem{\windowstyle{wxHW
\_NO\_SELECTION}}{Don't allow the user to select
57 \wxheading{Event handling
}
59 To process input from a wxHtmlWindow, use these event handler macros to direct input to member
60 functions that take a
\helpref{wxHtmlCellEvent
}{wxhtmlcellevent
} argument or a
\helpref{wxHtmlLinkEvent
}{wxhtmllinkevent
}.
63 \begin{twocollist
}\itemsep=
0pt
64 \twocolitem{{\bf EVT
\_HTML\_CELL\_CLICKED(id, func)
}}{A
\helpref{wxHtmlCell
}{wxhtmlcell
} was clicked.
}
65 \twocolitem{{\bf EVT
\_HTML\_CELL\_HOVER(id, func)
}}{The mouse passed over a
\helpref{wxHtmlCell
}{wxhtmlcell
}.
}
66 \twocolitem{{\bf EVT
\_HTML\_LINK\_CLICKED(id, func)
}}{A
\helpref{wxHtmlCell
}{wxhtmlcell
} which contains an hyperlink was clicked.
}
72 \helpref{wxHtmlLinkEvent
}{wxhtmllinkevent
},
\helpref{wxHtmlCellEvent
}{wxhtmlcellevent
}
76 \latexignore{\rtfignore{\wxheading{Members
}}}
78 \membersection{wxHtmlWindow::wxHtmlWindow
}\label{wxhtmlwindowwxhtmlwindow
}
80 \func{}{wxHtmlWindow
}{\void}
84 \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"
}}
86 Constructor. The parameters are the same as for the
\helpref{wxScrolledWindow
}{wxscrolledwindow
} constructor.
88 \wxheading{Parameters
}
90 \docparam{style
}{Window style. See
\helpref{wxHtmlWindow
}{wxhtmlwindow
}.
}
92 \membersection{wxHtmlWindow::AddFilter
}\label{wxhtmlwindowaddfilter
}
94 \func{static void
}{AddFilter
}{\param{wxHtmlFilter
}{*filter
}}
96 Adds
\helpref{input filter
}{filters
} to the static list of available
97 filters. These filters are present by default:
99 \begin{itemize
}\itemsep=
0pt
100 \item {\tt text/html
} MIME type
101 \item {\tt image/*
} MIME types
102 \item Plain Text filter (this filter is used if no other filter matches)
105 \membersection{wxHtmlWindow::AppendToPage
}\label{wxhtmlwindowappendtopage
}
107 \func{bool
}{AppendToPage
}{\param{const wxString\&
}{source
}}
109 Appends HTML fragment to currently displayed text and refreshes the window.
111 \wxheading{Parameters
}
113 \docparam{source
}{HTML code fragment
}
115 \wxheading{Return value
}
117 false if an error occurred, true otherwise.
119 \membersection{wxHtmlWindow::GetInternalRepresentation
}\label{wxhtmlwindowgetinternalrepresentation
}
121 \constfunc{wxHtmlContainerCell*
}{GetInternalRepresentation
}{\void}
123 Returns pointer to the top-level container.
125 See also:
\helpref{Cells Overview
}{cells
},
126 \helpref{Printing Overview
}{printing
}
128 \membersection{wxHtmlWindow::GetOpenedAnchor
}\label{wxhtmlwindowgetopenedanchor
}
130 \func{wxString
}{GetOpenedAnchor
}{\void}
132 Returns anchor within currently opened page
133 (see
\helpref{GetOpenedPage
}{wxhtmlwindowgetopenedpage
}).
134 If no page is opened or if the displayed page wasn't
135 produced by call to LoadPage, empty string is returned.
138 \membersection{wxHtmlWindow::GetOpenedPage
}\label{wxhtmlwindowgetopenedpage
}
140 \func{wxString
}{GetOpenedPage
}{\void}
142 Returns full location of the opened page. If no page is opened or if the displayed page wasn't
143 produced by call to LoadPage, empty string is returned.
145 \membersection{wxHtmlWindow::GetOpenedPageTitle
}\label{wxhtmlwindowgetopenedpagetitle
}
147 \func{wxString
}{GetOpenedPageTitle
}{\void}
149 Returns title of the opened page or wxEmptyString if current page does not contain
{\tt <TITLE>
} tag.
151 \membersection{wxHtmlWindow::GetRelatedFrame
}\label{wxhtmlwindowgetrelatedframe
}
153 \constfunc{wxFrame*
}{GetRelatedFrame
}{\void}
155 Returns the related frame.
157 \membersection{wxHtmlWindow::HistoryBack
}\label{wxhtmlwindowhistoryback
}
159 \func{bool
}{HistoryBack
}{\void}
161 Moves back to the previous page. (each page displayed using
162 \helpref{LoadPage
}{wxhtmlwindowloadpage
} is stored in history list.)
164 \membersection{wxHtmlWindow::HistoryCanBack
}\label{wxhtmlwindowhistorycanback
}
166 \func{bool
}{HistoryCanBack
}{\void}
168 Returns true if it is possible to go back in the history (i.e. HistoryBack()
171 \membersection{wxHtmlWindow::HistoryCanForward
}\label{wxhtmlwindowhistorycanforward
}
173 \func{bool
}{HistoryCanForward
}{\void}
175 Returns true if it is possible to go forward in the history (i.e. HistoryBack()
179 \membersection{wxHtmlWindow::HistoryClear
}\label{wxhtmlwindowhistoryclear
}
181 \func{void
}{HistoryClear
}{\void}
185 \membersection{wxHtmlWindow::HistoryForward
}\label{wxhtmlwindowhistoryforward
}
187 \func{bool
}{HistoryForward
}{\void}
189 Moves to next page in history.
191 \membersection{wxHtmlWindow::LoadFile
}\label{wxhtmlwindowloadfile
}
193 \func{virtual bool
}{LoadFile
}{\param{const wxFileName\&
}{filename
}}
195 Loads HTML page from file and displays it.
197 \wxheading{Return value
}
199 false if an error occurred, true otherwise
203 \helpref{LoadPage
}{wxhtmlwindowloadpage
}
205 \membersection{wxHtmlWindow::LoadPage
}\label{wxhtmlwindowloadpage
}
207 \func{virtual bool
}{LoadPage
}{\param{const wxString\&
}{location
}}
209 Unlike SetPage this function first loads HTML page from
{\it location
}
210 and then displays it. See example:
213 htmlwin->LoadPage("help/myproject/index.htm");
216 \wxheading{Parameters
}
218 \docparam{location
}{The address of
document. See
\helpref{wxFileSystem
}{wxfilesystem
} for details on address format and behaviour of "opener".
}
220 \wxheading{Return value
}
222 false if an error occurred, true otherwise
226 \helpref{LoadFile
}{wxhtmlwindowloadfile
}
228 \membersection{wxHtmlWindow::OnCellClicked
}\label{wxhtmlwindowoncellclicked
}
230 \func{virtual bool
}{OnCellClicked
}{\param{wxHtmlCell
}{*cell
},
\param{wxCoord
}{x
},
\param{wxCoord
}{y
},
\param{const wxMouseEvent\&
}{event
}}
232 This method is called when a mouse button is clicked inside wxHtmlWindow.
234 The default behaviour is to emit a
\helpref{wxHtmlCellEvent
}{wxhtmlcellevent
}
235 and, if the event was not processed or skipped, call
236 \helpref{OnLinkClicked
}{wxhtmlwindowonlinkclicked
} if the cell contains an
239 Overloading this method is deprecated; intercept the event instead.
242 \wxheading{Parameters
}
244 \docparam{cell
}{The cell inside which the mouse was clicked, always a simple
245 (i.e. non-container) cell
}
247 \docparam{x, y
}{The logical coordinates of the click point
}
249 \docparam{event
}{The mouse event containing other information about the click
}
251 \wxheading{Return value
}
253 \true if a link was clicked,
\false otherwise.
255 \membersection{wxHtmlWindow::OnCellMouseHover
}\label{wxhtmlwindowoncellmousehover
}
257 \func{virtual void
}{OnCellMouseHover
}{\param{wxHtmlCell
}{*cell
},
\param{wxCoord
}{x
},
\param{wxCoord
}{y
}}
259 This method is called when a mouse moves over an HTML cell.
260 Default behaviour is to emit a
\helpref{wxHtmlCellEvent
}{wxhtmlcellevent
}.
261 Overloading this method is deprecated; intercept the event instead.
263 \wxheading{Parameters
}
265 \docparam{cell
}{The cell inside which the mouse is currently, always a simple
266 (i.e. non-container) cell
}
268 \docparam{x, y
}{The logical coordinates of the click point
}
270 \membersection{wxHtmlWindow::OnLinkClicked
}\label{wxhtmlwindowonlinkclicked
}
272 \func{virtual void
}{OnLinkClicked
}{\param{const wxHtmlLinkInfo\&
}{link
}}
274 Called when user clicks on hypertext link. Default behaviour is to emit a
275 \helpref{wxHtmlLinkEvent
}{wxhtmllinkevent
} and, if the event was not processed
276 or skipped, call
\helpref{LoadPage
}{wxhtmlwindowloadpage
} and do nothing else.
277 Overloading this method is deprecated; intercept the event instead.
279 Also see
\helpref{wxHtmlLinkInfo
}{wxhtmllinkinfo
}.
281 \membersection{wxHtmlWindow::OnOpeningURL
}\label{wxhtmlwindowonopeningurl
}
283 \func{virtual wxHtmlOpeningStatus
}{OnOpeningURL
}{\param{wxHtmlURLType
}{type
},
\param{const wxString\&
}{url
},
\param{wxString *
}{redirect
}}
285 Called when an URL is being opened (either when the user clicks on a link or
286 an image is loaded). The URL will be opened only if OnOpeningURL returns
287 {\tt wxHTML
\_OPEN}. This method is called by
288 \helpref{wxHtmlParser::OpenURL
}{wxhtmlparseropenurl
}.
289 You can override OnOpeningURL to selectively block some
290 URLs (e.g. for security reasons) or to redirect them elsewhere. Default
291 behaviour is to always return
{\tt wxHTML
\_OPEN}.
293 \wxheading{Parameters
}
295 \docparam{type
}{Indicates type of the resource. Is one of
296 \begin{twocollist
}\itemsep=
0pt
297 \twocolitem{{\bf wxHTML
\_URL\_PAGE}}{Opening a HTML page.
}
298 \twocolitem{{\bf wxHTML
\_URL\_IMAGE}}{Opening an image.
}
299 \twocolitem{{\bf wxHTML
\_URL\_OTHER}}{Opening a resource that doesn't fall into
303 \docparam{url
}{URL being opened.
}
305 \docparam{redirect
}{Pointer to wxString variable that must be filled with an
306 URL if OnOpeningURL returns
{\tt wxHTML
\_REDIRECT}.
}
308 \wxheading{Return value
}
309 \begin{twocollist
}\itemsep=
0pt
310 \twocolitem{{\bf wxHTML
\_OPEN}}{Open the URL.
}
311 \twocolitem{{\bf wxHTML
\_BLOCK}}{Deny access to the URL,
\helpref{wxHtmlParser::OpenURL
}{wxhtmlparseropenurl
} will return NULL.
}
312 \twocolitem{{\bf wxHTML
\_REDIRECT}}{Don't open
{\it url
}, redirect to another
313 URL. OnOpeningURL must fill
{\it *redirect
} with the new URL. OnOpeningURL will
314 be called again on returned URL.
}
317 \membersection{wxHtmlWindow::OnSetTitle
}\label{wxhtmlwindowonsettitle
}
319 \func{virtual void
}{OnSetTitle
}{\param{const wxString\&
}{title
}}
321 Called on parsing
{\tt <TITLE>
} tag.
324 \membersection{wxHtmlWindow::ReadCustomization
}\label{wxhtmlwindowreadcustomization
}
326 \func{virtual void
}{ReadCustomization
}{\param{wxConfigBase
}{*cfg
},
\param{wxString
}{path = wxEmptyString
}}
328 This reads custom settings from wxConfig. It uses the path 'path'
329 if given, otherwise it saves info into currently selected path.
330 The values are stored in sub-path
{\tt wxHtmlWindow
}
332 Read values: all things set by SetFonts, SetBorders.
334 \wxheading{Parameters
}
336 \docparam{cfg
}{wxConfig from which you want to read the configuration.
}
338 \docparam{path
}{Optional path in config tree. If not given current path is used.
}
340 \membersection{wxHtmlWindow::SelectAll
}\label{wxhtmlwindowselectall
}
342 \func{void
}{SelectAll
}{\void}
344 Selects all text in the window.
348 \helpref{SelectLine
}{wxhtmlwindowselectline
},
349 \helpref{SelectWord
}{wxhtmlwindowselectword
}
351 \membersection{wxHtmlWindow::SelectionToText
}\label{wxhtmlwindowselectiontotext
}
353 \func{wxString
}{SelectionToText
}{\void}
355 Returns current selection as plain text. Returns empty string if no text
356 is currently selected.
358 \membersection{wxHtmlWindow::SelectLine
}\label{wxhtmlwindowselectline
}
360 \func{void
}{SelectLine
}{\param{const wxPoint\&
}{pos
}}
362 Selects the line of text that
\arg{pos
} points at. Note that
\arg{pos
}
363 is relative to the top of displayed page, not to window's origin, use
364 \helpref{CalcUnscrolledPosition
}{wxscrolledwindowcalcunscrolledposition
}
365 to convert physical coordinate.
369 \helpref{SelectAll
}{wxhtmlwindowselectall
},
370 \helpref{SelectWord
}{wxhtmlwindowselectword
}
372 \membersection{wxHtmlWindow::SelectWord
}\label{wxhtmlwindowselectword
}
374 \func{void
}{SelectWord
}{\param{const wxPoint\&
}{pos
}}
376 Selects the word at position
\arg{pos
}. Note that
\arg{pos
}
377 is relative to the top of displayed page, not to window's origin, use
378 \helpref{CalcUnscrolledPosition
}{wxscrolledwindowcalcunscrolledposition
}
379 to convert physical coordinate.
383 \helpref{SelectAll
}{wxhtmlwindowselectall
},
384 \helpref{SelectLine
}{wxhtmlwindowselectline
}
386 \membersection{wxHtmlWindow::SetBorders
}\label{wxhtmlwindowsetborders
}
388 \func{void
}{SetBorders
}{\param{int
}{b
}}
390 This function sets the space between border of window and HTML contents. See image:
392 \helponly{\image{}{border.bmp
}}
394 \wxheading{Parameters
}
396 \docparam{b
}{indentation from borders in pixels
}
398 \membersection{wxHtmlWindow::SetFonts
}\label{wxhtmlwindowsetfonts
}
400 \func{void
}{SetFonts
}{\param{const wxString\&
}{normal
\_face},
\param{const wxString\&
}{fixed
\_face},
\param{const int
}{*sizes = NULL
}}
402 This function sets font sizes and faces.
404 \wxheading{Parameters
}
406 \docparam{normal
\_face}{This is face name for normal (i.e. non-fixed) font.
407 It can be either empty string (then the default face is chosen) or
408 platform-specific face name. Examples are "helvetica" under Unix or
409 "Times New Roman" under Windows.
}
411 \docparam{fixed
\_face}{The same thing for fixed face ( <TT>..</TT> )
}
413 \docparam{sizes
}{This is an array of
7 items of
{\it int
} type.
414 The values represent size of font with HTML size from -
2 to +
4
415 ( <FONT SIZE=-
2> to <FONT SIZE=+
4> ). Default sizes are used if
{\it sizes
}
420 Default font sizes are defined by constants wxHTML
\_FONT\_SIZE\_1,
421 wxHTML
\_FONT\_SIZE\_2, ..., wxHTML
\_FONT\_SIZE\_7. Note that they differ among
422 platforms. Default face names are empty strings.
424 \membersection{wxHtmlWindow::SetPage
}\label{wxhtmlwindowsetpage
}
426 \func{bool
}{SetPage
}{\param{const wxString\&
}{source
}}
428 Sets HTML page and display it. This won't
{\bf load
} the page!!
429 It will display the
{\it source
}. See example:
432 htmlwin -> SetPage("<html><body>Hello, world!</body></html>");
435 If you want to load a
document from some location use
436 \helpref{LoadPage
}{wxhtmlwindowloadpage
} instead.
438 \wxheading{Parameters
}
440 \docparam{source
}{The HTML
document source to be displayed.
}
442 \wxheading{Return value
}
444 false if an error occurred, true otherwise.
446 \membersection{wxHtmlWindow::SetRelatedFrame
}\label{wxhtmlwindowsetrelatedframe
}
448 \func{void
}{SetRelatedFrame
}{\param{wxFrame*
}{frame
},
\param{const wxString\&
}{format
}}
450 Sets the frame in which page title will be displayed.
{\it format
} is format of
451 frame title, e.g. "HtmlHelp : \%s". It must contain exactly one \%s. This
452 \%s is substituted with HTML page title.
454 \membersection{wxHtmlWindow::SetRelatedStatusBar
}\label{wxhtmlwindowsetrelatedstatusbar
}
456 \func{void
}{SetRelatedStatusBar
}{\param{int
}{bar
}}
458 {\bf After
} calling
\helpref{SetRelatedFrame
}{wxhtmlwindowsetrelatedframe
},
459 this sets statusbar slot where messages will be displayed.
460 (Default is -
1 = no messages.)
462 \wxheading{Parameters
}
464 \docparam{bar
}{statusbar slot number (
0..n)
}
466 \membersection{wxHtmlWindow::ToText
}\label{wxhtmlwindowtotext
}
468 \func{wxString
}{ToText
}{\void}
470 Returns content of currently displayed page as plain text.
472 \membersection{wxHtmlWindow::WriteCustomization
}\label{wxhtmlwindowwritecustomization
}
474 \func{virtual void
}{WriteCustomization
}{\param{wxConfigBase
}{*cfg
},
\param{wxString
}{path = wxEmptyString
}}
476 Saves custom settings into wxConfig. It uses the path 'path'
477 if given, otherwise it saves info into currently selected path.
478 Regardless of whether the path is given or not, the function creates sub-path
481 Saved values: all things set by SetFonts, SetBorders.
483 \wxheading{Parameters
}
485 \docparam{cfg
}{wxConfig to which you want to save the configuration.
}
487 \docparam{path
}{Optional path in config tree. If not given, the current path is used.
}
495 \section{\class{wxHtmlLinkEvent
}}\label{wxhtmllinkevent
}
497 This event class is used for the events generated by
\helpref{wxHtmlWindow
}{wxhtmlwindow
}.
499 \wxheading{Derived from
}
501 \helpref{wxCommandEvent
}{wxcommandevent
}\\
502 \helpref{wxEvent
}{wxevent
}\\
503 \helpref{wxObject
}{wxobject
}
505 \wxheading{Include files
}
511 \helpref{wxHtml
}{librarieslist
}
513 \wxheading{Event handling
}
515 To process input from a wxHtmlLinkEvent, use one of these event handler macros to
516 direct input to member function that take a
\helpref{wxHtmlLinkEvent
}{wxhtmllinkevent
} argument:
520 \twocolitem{{\bf EVT
\_HTML\_LINK\_CLICKED(id, func)
}}{User clicked on an hyperlink.
}
524 \latexignore{\rtfignore{\wxheading{Members
}}}
526 \membersection{wxHtmlLinkEvent::wxHtmlLinkEvent
}\label{wxhtmllinkeventctor
}
528 \func{}{wxHyperlinkEvent
}{\param{int
}{ id
},
\param{const wxHtmlLinkInfo \&
}{ linkinfo
}}
530 The constructor is not normally used by the user code.
533 \membersection{wxHtmlLinkEvent::GetLinkInfo
}\label{wxhtmllinkeventgetlinkinfo
}
535 \constfunc{const wxHtmlLinkInfo &
}{GetLinkInfo
}{\void}
537 Returns the
\helpref{wxHtmlLinkInfo
}{wxhtmllinkinfo
} which contains info about the cell clicked and the hyperlink it contains.
544 \section{\class{wxHtmlCellEvent
}}\label{wxhtmlcellevent
}
546 This event class is used for the events generated by
\helpref{wxHtmlWindow
}{wxhtmlwindow
}.
548 \wxheading{Derived from
}
550 \helpref{wxCommandEvent
}{wxcommandevent
}\\
551 \helpref{wxEvent
}{wxevent
}\\
552 \helpref{wxObject
}{wxobject
}
554 \wxheading{Include files
}
560 \helpref{wxHtml
}{librarieslist
}
562 \wxheading{Event handling
}
564 To process input from a wxHtmlCellEvent, use one of these event handler macros to
565 direct input to member function that take a
\helpref{wxHtmlCellEvent
}{wxhtmlcellevent
} argument:
569 \twocolitem{{\bf EVT
\_HTML\_CELL\_HOVER(id, func)
}}{User moved the mouse over a
\helpref{wxHtmlCell
}{wxhtmlcell
}.
}
570 \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.
}
574 \latexignore{\rtfignore{\wxheading{Members
}}}
576 \membersection{wxHtmlCellEvent::wxHtmlCellEvent
}\label{wxhtmlcelleventctor
}
578 \func{}{wxHtmlCellEvent
}{\param{wxEventType
}{ commandType
},
\param{int
}{ id
},
\param{wxHtmlCell *
}{ cell
},
\param{const wxPoint \&
}{ point
}}
580 The constructor is not normally used by the user code.
583 \membersection{wxHtmlCellEvent::GetCell
}\label{wxhtmlcelleventgetcell
}
585 \constfunc{wxHtmlCell *
}{GetCell
}{\void}
587 Returns the
\helpref{wxHtmlCellEvent
}{wxhtmlcellevent
} associated with the event.
590 \membersection{wxHtmlCellEvent::GetPoint
}\label{wxhtmlcelleventgetpoint
}
592 \constfunc{wxPoint
}{GetPoint
}{\void}
594 Returns the
\helpref{wxPoint
}{wxpoint
} associated with the event.
597 \membersection{wxHtmlCellEvent::SetLinkClicked
}\label{wxhtmlcelleventsetlinkclicked
}
599 \func{bool
}{SetLinkClicked
}{\param{bool
}{ linkclicked
}}
601 Call this function with
{\tt linkclicked
} set to
\true if the cell which has been clicked contained a link or
602 \false otherwise (which is the default). With this function the event handler can return info to the
603 wxHtmlWindow which sent the event.
606 \membersection{wxHtmlCellEvent::GetLinkClicked
}\label{wxhtmlcelleventgetlinkclicked
}
608 \constfunc{bool
}{GetLinkClicked
}{\void}
610 Returns
\true if
\helpref{SetLinkClicked(true)
}{wxhtmlcelleventsetlinkclicked
} has previously been called;