1999-12-23 21:12:23 +00:00
|
|
|
\section{\class{wxHtmlLinkInfo}}\label{wxhtmllinkinfo}
|
|
|
|
|
|
|
|
This class stores all neccessary information about hypertext
|
|
|
|
links (as represented by {\tt <A>} tag in HTML documents). In
|
|
|
|
current implementation it stores URL and target frame name.
|
|
|
|
{\it Note that frames are not currently supported by wxHTML!}
|
|
|
|
|
|
|
|
\wxheading{Derived from}
|
|
|
|
|
|
|
|
\helpref{wxObject}{wxobject}
|
|
|
|
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
|
|
|
\membersection{wxHtmlLinkInfo::wxHtmlLinkInfo}\label{wxhtmllinkinfowxhtmllinkinfo}
|
|
|
|
|
|
|
|
\func{}{wxHtmlLinkInfo}{\void}
|
|
|
|
|
|
|
|
Default ctor.
|
|
|
|
|
|
|
|
\func{}{wxHtmlLinkInfo}{\param{const wxString\& }{href}, \param{const wxString\& }{target = wxEmptyString}}
|
|
|
|
|
|
|
|
Construct hypertext link from HREF (aka URL) and TARGET (name of target
|
|
|
|
frame).
|
|
|
|
|
2000-01-12 08:27:07 +00:00
|
|
|
\membersection{wxHtmlLinkInfo::GetEvent}\label{wxhtmllinkinfogetevent}
|
|
|
|
|
|
|
|
\func{const wxMouseEvent *}{GetEvent}{\void}
|
|
|
|
|
|
|
|
Return pointer to event that generated OnLinkClicked event. Valid
|
|
|
|
only within \helpref{wxHtmlWindow::OnLinkClicked}{wxhtmlwindowonlinkclicked},
|
|
|
|
NULL otherwise.
|
|
|
|
|
|
|
|
\membersection{wxHtmlLinkInfo::GetHtmlCell}\label{wxhtmllinkinfogethtmlcell}
|
|
|
|
|
|
|
|
\func{const wxHtmlCell *}{GetHtmlCell}{\void}
|
|
|
|
|
|
|
|
Return pointer to the cell that was clicked. Valid
|
|
|
|
only within \helpref{wxHtmlWindow::OnLinkClicked}{wxhtmlwindowonlinkclicked},
|
|
|
|
NULL otherwise.
|
|
|
|
|
|
|
|
|
1999-12-23 21:12:23 +00:00
|
|
|
\membersection{wxHtmlLinkInfo::GetHref}\label{wxhtmllinkinfogethref}
|
|
|
|
|
|
|
|
\func{wxString}{GetHref}{\void}
|
|
|
|
|
2000-01-12 08:27:07 +00:00
|
|
|
Return {\it HREF} value of the {\tt <A>} tag.
|
1999-12-23 21:12:23 +00:00
|
|
|
|
|
|
|
\membersection{wxHtmlLinkInfo::GetTarget}\label{wxhtmllinkinfogettarget}
|
|
|
|
|
|
|
|
\func{wxString}{GetTarget}{\void}
|
|
|
|
|
2000-01-12 08:27:07 +00:00
|
|
|
Return {\it TARGET} value of the {\tt <A>} tag (this value
|
1999-12-23 21:12:23 +00:00
|
|
|
is used to specify in which frame should be the page pointed
|
2000-02-02 19:30:09 +00:00
|
|
|
by \helpref{Href}{wxhtmllinkinfogethref} opened).
|
1999-12-29 14:21:38 +00:00
|
|
|
|