]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/url.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Guilhem Lavaux
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
19 #include "wx/object.h"
22 #include "wx/protocol/protocol.h"
23 #include "wx/protocol/http.h"
35 class WXDLLEXPORT wxURL
: public wxObject
{
36 DECLARE_DYNAMIC_CLASS(wxURL
)
38 static wxProtoInfo
*g_protocols
;
39 static wxHTTP g_proxy
;
40 wxProtoInfo
*m_protoinfo
;
41 wxProtocol
*m_protocol
;
44 wxString m_protoname
, m_hostname
, m_servname
, m_path
, m_url
;
46 bool PrepProto(wxString
& url
);
47 bool PrepHost(wxString
& url
);
48 bool PrepPath(wxString
& url
);
53 friend class wxProtoInfo
;
56 wxURL(const wxString
& url
);
59 inline wxString
GetProtocolName() const
60 { return m_protoinfo
->m_protoname
; }
61 inline wxProtocol
& GetProtocol() { return *m_protocol
; }
62 inline wxURLError
GetError() const { return m_error
; }
64 wxInputStream
*GetInputStream();
66 static void SetDefaultProxy(const wxString
& url_proxy
);
67 void SetProxy(const wxString
& url_proxy
);