]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/url.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxURL
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
9 Error types returned from wxURL::GetError().
12 wxURL_NOERR
= 0, ///< No error.
13 wxURL_SNTXERR
, ///< Syntax error in the URL string.
14 wxURL_NOPROTO
, ///< Found no protocol which can get this URL.
15 wxURL_NOHOST
, ///< A host name is required for this protocol.
16 wxURL_NOPATH
, ///< A path is required for this protocol.
17 wxURL_CONNERR
, ///< Connection error.
18 wxURL_PROTOERR
///< An error occurred during negotiation.
24 wxURL is a specialization of wxURI for parsing URLs. Please look at wxURI
25 documentation for more info about the functions you can use to retrieve the
26 various parts of the URL (scheme, server, port, etc).
28 Supports standard assignment operators, copy constructors, and comparison
34 @see wxSocketBase, wxProtocol
36 class wxURL
: public wxURI
40 Constructs a URL object from the string. The URL must be valid
41 according to RFC 1738. In particular, file URLs must be of the format
42 @c "file://hostname/path/to/file", otherwise GetError() will return a
43 value different from ::wxURL_NOERR.
45 It is valid to leave out the hostname but slashes must remain in place,
46 in other words, a file URL without a hostname must contain three
47 consecutive slashes (e.g. @c "file:///somepath/myfile").
52 wxURL(const wxString
& url
= wxEmptyString
);
55 Destroys the URL object.
60 Returns the last error. This error refers to the URL parsing or to the
61 protocol. It can be one of ::wxURLError.
63 wxURLError
GetError() const;
66 Creates a new input stream on the specified URL. You can use all but
67 seek functionality of wxStream. Seek isn't available on all streams.
68 For example, HTTP or FTP streams don't deal with it.
70 Note that this method is somewhat deprecated, all future wxWidgets
71 applications should use wxFileSystem instead.
76 wxURL url("http://a.host/a.dir/a.file");
77 if (url.GetError() == wxURL_NOERR)
79 wxInputStream *in_stream;
81 in_stream = url.GetInputStream();
82 // Then, you can use all IO calls of in_stream (See wxStream)
86 @return Returns the initialized stream. You will have to delete it
91 wxInputStream
* GetInputStream();
94 Returns a reference to the protocol which will be used to get the URL.
96 wxProtocol
& GetProtocol();
99 Returns @true if this object is correctly initialized, i.e.\ if
100 GetError() returns ::wxURL_NOERR.
105 Sets the default proxy server to use to get the URL. The string
106 specifies the proxy like this: @c "<hostname>:<port number>".
109 Specifies the proxy to use.
113 static void SetDefaultProxy(const wxString
& url_proxy
);
116 Sets the proxy to use for this URL.
118 @see SetDefaultProxy()
120 void SetProxy(const wxString
& url_proxy
);
123 Initializes this object with the given URL and returns ::wxURL_NOERR if
124 it's valid (see GetError() for more info).
126 wxURLError
SetURL(const wxString
& url
);