]> git.saurik.com Git - wxWidgets.git/blame - include/wx/url.h
char handling fixed again
[wxWidgets.git] / include / wx / url.h
CommitLineData
f4ada568
GL
1/////////////////////////////////////////////////////////////////////////////
2// Name: url.h
3// Purpose: URL parser
4// Author: Guilhem Lavaux
5// Modified by:
6// Created: 20/07/1997
7// RCS-ID: $Id$
8// Copyright: (c) 1997, 1998 Guilhem Lavaux
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11#ifndef _WX_URL_H
12#define _WX_URL_H
13
14#ifdef __GNUG__
15#pragma interface
16#endif
17
18// wxWindows header
19#include "wx/object.h"
20
21// wxSocket headers
22#include "wx/protocol/protocol.h"
23#include "wx/protocol/http.h"
24
25typedef enum {
26 wxURL_NOERR = 0,
27 wxURL_SNTXERR,
28 wxURL_NOPROTO,
29 wxURL_NOHOST,
30 wxURL_NOPATH,
31 wxURL_CONNERR,
32 wxURL_PROTOERR
33} wxURLError;
34
35class WXDLLEXPORT wxURL : public wxObject {
36 DECLARE_DYNAMIC_CLASS(wxURL)
37protected:
38 static wxProtoInfo *g_protocols;
3b4183d8 39 static wxHTTP *g_proxy;
f4ada568
GL
40 wxProtoInfo *m_protoinfo;
41 wxProtocol *m_protocol;
42 wxHTTP m_proxy;
43 wxURLError m_error;
44 wxString m_protoname, m_hostname, m_servname, m_path, m_url;
856d2e52 45 wxString m_user, m_password;
f4ada568
GL
46
47 bool PrepProto(wxString& url);
48 bool PrepHost(wxString& url);
49 bool PrepPath(wxString& url);
50 bool ParseURL();
51 void CleanData();
52 bool FetchProtocol();
53
54 friend class wxProtoInfo;
3b4183d8 55 friend class wxProtocolModule;
f4ada568
GL
56public:
57
58 wxURL(const wxString& url);
59 virtual ~wxURL();
60
61 inline wxString GetProtocolName() const
62 { return m_protoinfo->m_protoname; }
63 inline wxProtocol& GetProtocol() { return *m_protocol; }
64 inline wxURLError GetError() const { return m_error; }
375abe3d 65 inline wxString GetPath() const { return m_path; }
f4ada568
GL
66
67 wxInputStream *GetInputStream();
68
69 static void SetDefaultProxy(const wxString& url_proxy);
70 void SetProxy(const wxString& url_proxy);
71};
72
73#endif