+ wxURL(const wxString& url);
+ virtual ~wxURL();
+
+ wxString GetProtocolName() const { return m_protoinfo->m_protoname; }
+ wxString GetHostName() const { return m_hostname; }
+ wxString GetURL() const { return m_url; }
+ wxProtocol& GetProtocol() { return *m_protocol; }
+ wxURLError GetError() const { return m_error; }
+ wxString GetPath() const { return m_path; }
+
+ wxInputStream *GetInputStream();
+
+#if wxUSE_SOCKETS
+ static void SetDefaultProxy(const wxString& url_proxy);
+ void SetProxy(const wxString& url_proxy);
+#endif // wxUSE_SOCKETS
+
+ static wxString ConvertToValidURI(
+ const wxString& uri,
+ const wxChar* delims = wxT(";/?:@&=+$,")
+ );
+ static wxString ConvertFromURI(const wxString& uri);
+
+protected:
+ static wxProtoInfo *ms_protocols;
+
+#if wxUSE_SOCKETS
+ static wxHTTP *ms_proxyDefault;
+ static bool ms_useDefaultProxy;
+ wxHTTP *m_proxy;
+#endif // wxUSE_SOCKETS
+
+ wxProtoInfo *m_protoinfo;
+ wxProtocol *m_protocol;
+
+ wxURLError m_error;
+ wxString m_protoname, m_hostname, m_servname, m_path, m_url;
+ wxString m_user, m_password;
+ bool m_useProxy;