Fixes and tweaks and additions to the wxHtml docs for Phoenix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72858 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6,6 +6,15 @@
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
enum wxHtmlURLType
|
||||
{
|
||||
wxHTML_URL_PAGE,
|
||||
wxHTML_URL_IMAGE,
|
||||
wxHTML_URL_OTHER
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
@class wxHtmlTagHandler
|
||||
|
||||
@@ -75,6 +84,14 @@ protected:
|
||||
*/
|
||||
void ParseInner(const wxHtmlTag& tag);
|
||||
|
||||
/**
|
||||
Parses given source as if it was tag's inner code (see
|
||||
wxHtmlParser::GetInnerSource). Unlike ParseInner(), this method lets
|
||||
you specify the source code to parse. This is useful when you need to
|
||||
modify the inner text before parsing.
|
||||
*/
|
||||
void ParseInnerSource(const wxString& source);
|
||||
|
||||
/**
|
||||
This attribute is used to access parent parser. It is protected so that
|
||||
it can't be accessed by user but can be accessed from derived classes.
|
||||
|
Reference in New Issue
Block a user