1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Guilhem Lavaux
5 // Modified by: Ryan Norton
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
20 #include "wx/protocol/protocol.h"
22 #if wxUSE_PROTOCOL_HTTP
23 #include "wx/protocol/http.h"
37 class WXDLLIMPEXP_FWD_NET wxURL
;
39 class WXDLLIMPEXP_NET wxURLNativeImp
: public wxObject
42 virtual ~wxURLNativeImp() { }
43 virtual wxInputStream
*GetInputStream(wxURL
*owner
) = 0;
45 #endif // wxUSE_URL_NATIVE
47 class WXDLLIMPEXP_NET wxURL
: public wxURI
50 wxURL(const wxString
& sUrl
= wxEmptyString
);
51 wxURL(const wxURI
& uri
);
52 wxURL(const wxURL
& url
);
55 wxURL
& operator = (const wxString
& url
);
56 wxURL
& operator = (const wxURI
& uri
);
57 wxURL
& operator = (const wxURL
& url
);
59 wxProtocol
& GetProtocol() { return *m_protocol
; }
60 wxURLError
GetError() const { return m_error
; }
61 wxString
GetURL() const { return m_url
; }
63 wxURLError
SetURL(const wxString
&url
)
64 { *this = url
; return m_error
; }
67 { return m_error
== wxURL_NOERR
; }
69 wxInputStream
*GetInputStream();
71 #if wxUSE_PROTOCOL_HTTP
72 static void SetDefaultProxy(const wxString
& url_proxy
);
73 void SetProxy(const wxString
& url_proxy
);
74 #endif // wxUSE_PROTOCOL_HTTP
77 static wxProtoInfo
*ms_protocols
;
79 #if wxUSE_PROTOCOL_HTTP
80 static wxHTTP
*ms_proxyDefault
;
81 static bool ms_useDefaultProxy
;
84 #endif // wxUSE_PROTOCOL_HTTP
87 friend class wxURLNativeImp
;
88 // pointer to a native URL implementation object
89 wxURLNativeImp
*m_nativeImp
;
90 // Creates on the heap and returns a native
91 // implementation object for the current platform.
92 static wxURLNativeImp
*CreateNativeImpObject();
93 #endif // wxUSE_URL_NATIVE
95 wxProtoInfo
*m_protoinfo
;
96 wxProtocol
*m_protocol
;
101 void Init(const wxString
&);
105 bool FetchProtocol();
107 friend class wxProtoInfo
;
108 friend class wxURLModule
;
111 DECLARE_DYNAMIC_CLASS(wxURL
)