]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/uri.tex
Documented SetItemDropEffect
[wxWidgets.git] / docs / latex / wx / uri.tex
CommitLineData
dd65d8c8
RN
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: uri.tex
3%% Purpose: wxURI docs
4%% Author: Ryan Norton <wxprojects@comcast.net>
5%% Modified by:
6%% Created: 7/7/2004
7%% RCS-ID: $Id$
8%% Copyright: (c) Ryan Norton
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxURI}}\label{wxuri}
13
14wxURI is used to extract information from
15a URI (Uniform Resource Identifier).
16
17For information about URIs, see
18\urlref{RFC 2396}{http://www.ietf.org/rfc/rfc2396.txt} or
19\urlref{RFC 2396.bis (Updated draft of RFC 2396)}{http://www.gbiv.com/protocols/uri/rev-2002/rfc2396bis.html}.
20
21In short, a URL \em{is} a URI. In other
153fe6e7 22words, URL is a subset of a URI - all
dd65d8c8
RN
23acceptable URLs are also acceptable URIs.
24
ce321570
RN
25wxURI automatically escapes invalid characters in a string,
26so there is no chance of wxURI "failing" on construction/creation.
27
dd65d8c8
RN
28wxURI supports copy construction and standard assignment
29operators. wxURI can also be inherited from to provide
30furthur functionality.
31
32\wxheading{Derived from}
33
b60b2ec8 34\helpref{wxObject}{wxobject}
dd65d8c8
RN
35
36\wxheading{Include files}
37
38<uri.h>
39
40\latexignore{\rtfignore{\wxheading{Members}}}
41
aed31418 42\membersection{Obtaining individual components}\label{obtainingwxuricomponents}
dd65d8c8
RN
43
44To obtain individual components you can use
ce321570 45one of the following methods
dd65d8c8
RN
46
47\helpref{GetScheme}{wxurigetscheme}\\
48\helpref{GetUser}{wxurigetuser}\\
49\helpref{GetServer}{wxurigetserver}\\
50\helpref{GetPort}{wxurigetserver}\\
51\helpref{GetPath}{wxurigetpath}\\
52\helpref{GetQuery}{wxurigetquery}\\
53\helpref{GetFragment}{wxurigetfragment}
54
55However, you should check HasXXX before
ce321570
RN
56calling a get method, which determines whether or not the component referred
57to by the method is defined according to RFC 2396.
58
59Consider an undefined component equivilent to a
60NULL C string.\\
61\\
dd65d8c8
RN
62\helpref{HasScheme}{wxurihasscheme}\\
63\helpref{HasUser}{wxurihasuser}\\
64\helpref{HasServer}{wxurihasserver}\\
65\helpref{HasPort}{wxurihasserver}\\
66\helpref{HasPath}{wxurihaspath}\\
67\helpref{HasQuery}{wxurihasquery}\\
68\helpref{HasFragment}{wxurihasfragment}
69
70Example:
71\begin{verbatim}
72//protocol will hold the http protocol (i.e. "http")
73wxString protocol;
74wxURI myuri(wxT("http://mysite.com"));
75if(myuri.HasScheme())
76 protocol = myuri.GetScheme();
77\end{verbatim}
78
dd65d8c8
RN
79\membersection{wxURI::wxURI}\label{wxuriwxuri}
80
81\func{}{wxURI}{\void}
82
153fe6e7 83Creates an empty URI.
dd65d8c8
RN
84
85\func{}{wxURI}{\param{const wxChar* }{uri}}
86
153fe6e7 87Constructor for quick creation.
dd65d8c8
RN
88
89\docparam{uri}{string to initialize with}
90
153fe6e7 91\func{}{wxURI}{\param{const wxURI\& }{uri}}
dd65d8c8
RN
92
93Copies this URI from another URI.
94
95\docparam{uri}{URI (Uniform Resource Identifier) to initialize with}
96
97
86470d43
RN
98\membersection{wxURI::BuildURI}\label{wxuribuilduri}
99
100\constfunc{wxString}{BuildURI}{\void}
101
102Builds the URI from its individual components and adds proper seperators.
103
104If the URI is not a reference or is not resolved,
105the URI that is returned from Get is the same one
106passed to Create.
107
108
109\membersection{wxURI::BuildUnescapedURI}\label{wxuribuildunescapeduri}
110
111\constfunc{wxString}{BuildUnescapedURI}{\void}
112
113Builds the URI from its individual components, adds proper seperators, and
114returns escape sequences to normal characters.
115
116Note that it is preferred to call this over Unescape(BuildURI()) since
47261ba0 117\helpref{BuildUnescapedURI}{wxuribuildunescapeduri} performs some optimizations over the plain method.
86470d43
RN
118
119
dd65d8c8
RN
120\membersection{wxURI::Create}\label{wxuricreate}
121
ce321570 122\func{const wxChar*}{Create}{\param{const wxChar* }{uri}}
dd65d8c8 123
e6a156f9 124Creates this URI from the string \arg{uri}.
dd65d8c8 125
ce321570
RN
126Returns the position at which parsing stopped (there
127is no such thing as an "invalid" wxURI).
128
dd65d8c8
RN
129\docparam{uri}{string to initialize from}
130
dd65d8c8
RN
131
132\membersection{wxURI::GetFragment}\label{wxurigetfragment}
133
134\constfunc{const wxString&}{GetFragment}{\void}
135
136Obtains the fragment of this URI.
137
138The fragment of a URI is the last value of the URI,
139and is the value after a '#' character after the path
140of the URI.
141
142\tt{http://mysite.com/mypath\#<fragment>}
143
144\membersection{wxURI::GetHostType}\label{wxurigethosttype}
145
146\constfunc{const HostType\&}{GetHostType}{\void}
147
148Obtains the host type of this URI, which is of type
149wxURI::HostType:
150
151\twocolwidtha{7cm}
152\begin{twocollist}\itemsep=0pt
153\twocolitem{{\bf wxURI\_REGNAME}}{Server is a host name, or the Server component itself is undefined.}
154\twocolitem{{\bf wxURI\_IPV4ADDRESS}}{Server is a IP version 4 address (XXX.XXX.XXX.XXX)}
155\twocolitem{{\bf wxURI\_IPV6ADDRESS}}{Server is a IP version 6 address ((XXX:)XXX::(XXX)XXX:XXX}
156\twocolitem{{\bf wxURI\_IPVFUTURE}}{Server is an IP address, but not versions 4 or 6}
157\end{twocollist}
158
159\membersection{wxURI::GetPath}\label{wxurigetpath}
160
161\constfunc{const wxString&}{GetPath}{\void}
162
163Returns the (normalized) path of the URI.
164
165The path component of a URI comes
166directly after the scheme component
167if followed by zero or one slashes ('/'),
168or after the server/port component.
169
170Absolute paths include the leading '/'
171character.
172
173\tt{http://mysite.com<path>}
174
175\membersection{wxURI::GetPort}\label{wxurigetport}
176
177\constfunc{const wxString&}{GetPort}{\void}
178
179Returns a string representation of the URI's port.
180
181The Port of a URI is a value after the server, and
182must come after a colon (:).
183
184\tt{http://mysite.com:<port>}
185
186Note that you can easily get the numeric value of the port
187by using wxAtoi or wxString::Format.
188
189\membersection{wxURI::GetQuery}\label{wxurigetquery}
190
191\constfunc{const wxString&}{GetQuery}{\void}
192
193Returns the Query component of the URI.
194
195The query component is what is commonly passed to a
196cgi application, and must come after the path component,
197and after a '?' character.
198
199\tt{http://mysite.com/mypath?<query>}
200
201
202\membersection{wxURI::GetScheme}\label{wxurigetscheme}
203
204\constfunc{const wxString&}{GetScheme}{\void}
205
206Returns the Scheme component of the URI.
207
208The first part of the uri.
209
210\tt{<scheme>://mysite.com}
211
212
213\membersection{wxURI::GetServer}\label{wxurigetserver}
214
215\constfunc{const wxString&}{GetServer}{\void}
216
217Returns the Server component of the URI.
218
219The server of the uri can be a server name or
220a type of ip address. See
221\helpref{GetHostType}{wxurigethosttype} for the
222possible values for the host type of the
223server component.
224
225\tt{http://<server>/mypath}
226
227
228\membersection{wxURI::GetUser}\label{wxurigetuser}
229
230\constfunc{const wxString&}{GetUser}{\void}
231
232Returns the User component of the URI.
233
234The component of a URI before the server component
235that is postfixed by a '@' character.
236
237\tt{http://<user>@mysite.com/mypath}
238
239\membersection{wxURI::HasFragment}\label{wxurihasfragment}
240
241\constfunc{bool}{HasFragment}{\void}
242
e6a156f9 243Returns \true if the Fragment component of the URI exists.
dd65d8c8
RN
244
245\membersection{wxURI::HasPath}\label{wxurihaspath}
246
247\constfunc{bool}{HasPath}{\void}
248
e6a156f9 249Returns \true if the Path component of the URI exists.
dd65d8c8
RN
250
251\membersection{wxURI::HasPort}\label{wxurihasport}
252
253\constfunc{bool}{HasPort}{\void}
254
e6a156f9 255Returns \true if the Port component of the URI exists.
dd65d8c8
RN
256
257
258\membersection{wxURI::HasQuery}\label{wxurihasquery}
259
260\constfunc{bool}{HasQuery}{\void}
261
e6a156f9 262Returns \true if the Query component of the URI exists.
dd65d8c8
RN
263
264
265\membersection{wxURI::HasScheme}\label{wxurihasscheme}
266
267\constfunc{bool}{HasScheme}{\void}
268
e6a156f9 269Returns \true if the Scheme component of the URI exists.
dd65d8c8
RN
270
271
272\membersection{wxURI::HasServer}\label{wxurihasserver}
273
274\constfunc{bool}{HasServer}{\void}
275
e6a156f9 276Returns \true if the Server component of the URI exists.
dd65d8c8
RN
277
278
279\membersection{wxURI::HasUser}\label{wxurihasuser}
280
281\constfunc{bool}{HasUser}{\void}
282
e6a156f9 283Returns \true if the User component of the URI exists.
dd65d8c8
RN
284
285
dd65d8c8
RN
286\membersection{wxURI::IsReference}\label{wxuriisreference}
287
288\constfunc{bool}{IsReference}{\void}
289
e6a156f9 290Returns \true if a valid [absolute] URI, otherwise this URI
dd65d8c8 291is a URI reference and not a full URI, and IsReference
e6a156f9 292returns \false.
dd65d8c8
RN
293
294
295\membersection{wxURI::operator ==}\label{wxurioperatorcompare}
296
153fe6e7 297\func{void}{operator ==}{\param{const wxURI\& }{uricomp}}
dd65d8c8 298
e6a156f9
VZ
299Compares this URI to another URI, and returns \true if
300this URI equals \arg{uricomp}, otherwise it returns \false.
dd65d8c8
RN
301
302\docparam{uricomp}{URI to compare to}
303
304
dd65d8c8
RN
305\membersection{wxURI::Resolve}\label{wxuriresolve}
306
8404931e 307\func{void}{Resolve}{\param{const wxURI\& }{base}, \param{int }{flags = \texttt{wxURI\_STRICT}}}
dd65d8c8
RN
308
309Inherits this URI from a base URI - components that do not
310exist in this URI are copied from the base, and if this URI's
311path is not an absolute path (prefixed by a '/'), then this URI's
312path is merged with the base's path.
313
314For instance, resolving "../mydir" from "http://mysite.com/john/doe"
315results in the scheme (http) and server (mysite.com) being copied into
316this URI, since they do not exist. In addition, since the path
317of this URI is not absolute (does not begin with '/'), the path
318of the base's is merged with this URI's path, resulting in the URI
319"http://mysite.com/john/mydir".
320
321\docparam{base}{Base URI to inherit from. Must be a full URI and not a reference}
8404931e
VZ
322\docparam{flags}{Currently either \texttt{wxURI\_STRICT} or $0$, in non strict
323mode some compatability layers are enabled to allow loopholes from RFCs prior
324to 2396}
dd65d8c8 325
86470d43
RN
326\membersection{wxURI::Unescape}\label{wxuriunescape}
327
328\func{wxString}{Unescape}{\param{const wxString\& }{uri}}
329
330Translates all escape sequences (% hex hex) of \arg{uri} into
331normal characters and returns the result.
332
47261ba0 333This is the preferred over deprecated wxURL::ConvertFromURI.
86470d43 334
47261ba0 335If you want to unescape an entire wxURI, use \helpref{BuildUnescapedURI}{wxuribuildunescapeduri} instead,
86470d43
RN
336as it performs some optimizations over this method.
337
338\docparam{uri}{string with escaped characters to convert}
339
340