]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/htmlpars.h
Fixing font utilities
[wxWidgets.git] / include / wx / html / htmlpars.h
index 25d9c5991e175b64dc35b9603011ca1eb3d25d16..0faf78d4ddcb16efbd414b5892da8e6470a8199a 100644 (file)
@@ -48,6 +48,10 @@ public:
 
     wxFileSystem* GetFS() const { return m_FS; }
 
+    // Returns TRUE if the parser is allowed to open given URL (may be forbidden
+    // for security reasons)    
+    virtual bool CanOpenURL(const wxString& url) const { return TRUE; }
+
     // You can simply call this method when you need parsed output.
     // This method does these things:
     // 1. call InitParser(source);
@@ -225,11 +229,14 @@ public:
     // Parses entities in input and replaces them with respective characters
     // (with respect to output encoding)
     wxString Parse(const wxString& input);
-    
-protected:
+
+    // Returns character for given entity or 0 if the enity is unknown
     wxChar GetEntityChar(const wxString& entity);
+
+    // Returns character that represents given Unicode code
     wxChar GetCharForCode(unsigned code);
 
+protected:
 #if wxUSE_WCHAR_T && !wxUSE_UNICODE
     wxMBConv *m_conv;
     wxFontEncoding m_encoding;