]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/stream.tex
command events are not redirected to focused window
[wxWidgets.git] / docs / latex / wx / stream.tex
... / ...
CommitLineData
1\section{\class{wxStreamBuffer}}\label{wxstreambuffer}
2
3\wxheading{Derived from}
4
5None
6
7\wxheading{Include files}
8
9<wx/stream.h>
10
11\wxheading{See also}
12
13\helpref{wxStreamBase}{wxstreambase}
14
15% ---------------------------------------------------------------------------
16% Members
17% ---------------------------------------------------------------------------
18\latexignore{\rtfignore{\wxheading{Members}}}
19
20% -----------
21% ctor & dtor
22% -----------
23\membersection{wxStreamBuffer::wxStreamBuffer}\label{wxstreambufconst}
24
25\func{}{wxStreamBuffer}{\param{wxStreamBase\&}{ stream}, \param{BufMode}{ mode}}
26
27Constructor, creates a new stream buffer using {\it stream} as a parent stream
28and {\it mode} as the IO mode. {\it mode} can be: wxStreamBuffer::read,
29wxStreamBuffer::write, wxStreamBuffer::read\_write.
30
31
32One stream can have many stream buffers but only one is used internally to
33pass IO call (e.g. wxInputStream::Read() -> wxStreamBuffer::Read()), but you
34can call directly wxStreamBuffer::Read without any problems. Note that
35all errors and messages linked to the stream are stored in the stream, not
36the stream buffers:
37
38\begin{verbatim}
39 streambuffer.Read(...);
40 streambuffer2.Read(...); /* This call erases previous error messages set by
41 ``streambuffer'' */
42\end{verbatim}
43
44\func{}{wxStreamBuffer}{\param{BufMode}{ mode}}
45
46Constructor, creates a new empty stream buffer which won't flush any data
47to a stream. {\it mode} specifies the type of the buffer (read, write, read\_write).
48This stream buffer has the advantage to be stream independent and to
49work only on memory buffers but it is still compatible with the rest of the
50wxStream classes. You can write, read to this special stream and it will
51grow (if it is allowed by the user) its internal buffer. Briefly, it has all
52functionality of a ``normal'' stream.
53
54\wxheading{Warning}
55
56The "read\_write" mode may not work: it isn't completely finished.
57
58\func{}{wxStreamBuffer}{\param{const wxStreamBuffer\&}{buffer}}
59
60Constructor. It initializes the stream buffer with the data of the specified
61stream buffer. The new stream buffer has the same attributes, size, position
62and they share the same buffer. This will cause problems if the stream to
63which the stream buffer belong is destroyed and the newly cloned stream
64buffer continues to be used, trying to call functions in the (destroyed)
65stream. It is advised to use this feature only in very local area of the
66program.
67
68\wxheading{See also}
69
70\helpref{wxStreamBuffer:SetBufferIO}{wxstreambuffersetbufferio}
71
72\membersection{wxStreamBuffer::\destruct{wxStreamBuffer}}
73
74\func{}{wxStreamBuffer}{\destruct{wxStreamBuffer}}
75
76Destructor. It finalizes all IO calls and frees all internal buffers if
77necessary.
78
79% -----------
80% Filtered IO
81% -----------
82\membersection{wxStreamBuffer::Read}\label{wxstreambufferread}
83
84\func{size\_t}{Read}{\param{void *}{buffer}, \param{size\_t }{size}}
85
86Reads a block of the specified {\it size} and stores the data in {\it buffer}.
87This function tries to read from the buffer first and if more data has been
88requested, reads more data from the associated stream and updates the buffer
89accordingly until all requested data is read.
90
91\wxheading{Return value}
92
93It returns the size of the data read. If thereturned size is different of the specified
94{\it size}, an error has occured and should be tested using
95\helpref{LastError}{wxstreambaselasterror}.
96
97\func{size\_t}{Read}{\param{wxStreamBuffer *}{buffer}}
98
99Reads a {\it buffer}. The function returns when {\it buffer} is full or when there isn't
100data anymore in the current buffer.
101
102\wxheading{See also}
103
104\helpref{wxStreamBuffer::Write}{wxstreambufferwrite}
105
106\membersection{wxStreamBuffer::Write}\label{wxstreambufferwrite}
107
108\func{size\_t}{Write}{\param{const void *}{buffer}, \param{size\_t }{size}}
109
110Writes a block of the specified {\it size} using datas of {\it buffer}. The datas
111are cached in a buffer before being sent in one block to the stream.
112
113\func{size\_t}{Write}{\param{wxStreamBuffer *}{buffer}}
114
115See \helpref{Read}{wxstreambufferread}.
116
117\membersection{wxStreamBuffer::GetChar}
118
119\func{char}{GetChar}{\void}
120
121Gets a single char from the stream buffer. It acts like the Read call.
122
123\wxheading{Problem}
124
125You aren't directly notified if an error occured during the IO call.
126
127\wxheading{See also}
128
129\helpref{wxStreamBuffer::Read}{wxstreambufferread}
130
131\membersection{wxStreamBuffer::PutChar}
132
133\func{void}{PutChar}{\param{char }{c}}
134
135Puts a single char to the stream buffer.
136
137\wxheading{Problem}
138
139You aren't directly notified if an error occured during the IO call.
140
141\wxheading{See also}
142
143\helpref{wxStreamBuffer::Read}{wxstreambufferwrite}
144
145\membersection{wxStreamBuffer::Tell}
146
147\constfunc{off\_t}{Tell}{\void}
148
149Gets the current position in the stream. This position is calculated from
150the {\it real} position in the stream and from the internal buffer position: so
151it gives you the position in the {\it real} stream counted from the start of
152the stream.
153
154\wxheading{Return value}
155
156Returns the current position in the stream if possible, wxInvalidOffset in the
157other case.
158
159\membersection{wxStreamBuffer::Seek}\label{wxstreambufferseek}
160
161\func{off\_t}{Seek}{\param{off\_t }{pos}, \param{wxSeekMode }{mode}}
162
163Changes the current position.
164
165{\it mode} may be one of the following:
166
167\twocolwidtha{5cm}
168\begin{twocollist}\itemsep=0pt
169\twocolitem{{\bf wxFromStart}}{The position is counted from the start of the stream.}
170\twocolitem{{\bf wxFromCurrent}}{The position is counted from the current position of the stream.}
171\twocolitem{{\bf wxFromEnd}}{The position is counted from the end of the stream.}
172\end{twocollist}
173
174\wxheading{Return value}
175
176Upon successful completion, it returns the new offset as measured in bytes from
177the beginning of the stream. Otherwise, it returns wxInvalidOffset.
178
179% --------------
180% Buffer control
181% --------------
182\membersection{wxStreamBuffer::ResetBuffer}
183
184\func{void}{ResetBuffer}{\void}
185
186Resets to the initial state variables concerning the buffer.
187
188\membersection{wxStreamBuffer::SetBufferIO}\label{wxstreambuffersetbufferio}
189
190\func{void}{SetBufferIO}{\param{char*}{ buffer\_start}, \param{char*}{ buffer\_end}}
191
192Specifies which pointers to use for stream buffering. You need to pass a pointer on the
193start of the buffer end and another on the end. The object will use this buffer
194to cache stream data. It may be used also as a source/destination buffer when
195you create an empty stream buffer (See \helpref{wxStreamBuffer::wxStreamBuffer}{wxstreambufconst}).
196
197\wxheading{Remarks}
198
199When you use this function, you'll have to destroy the IO buffers yourself
200after the stream buffer is destroyed or don't use it anymore.
201In the case you use it with an empty buffer, the stream buffer will not resize
202it when it is full.
203
204\wxheading{See also}
205
206\helpref{wxStreamBuffer constructor}{wxstreambufconst}\\
207\helpref{wxStreamBuffer::Fixed}{wxstreambufferfixed}\\
208\helpref{wxStreamBuffer::Flushable}{wxstreambufferflushable}
209
210\func{void}{SetBufferIO}{\param{size\_t}{ bufsize}}
211
212Destroys or invalidates the previous IO buffer and allocates a new one of the
213specified size.
214
215\wxheading{Warning}
216
217All previous pointers aren't valid anymore.
218
219\wxheading{Remark}
220
221The created IO buffer is growable by the object.
222
223\wxheading{See also}
224
225\helpref{wxStreamBuffer::Fixed}{wxstreambufferfixed}\\
226\helpref{wxStreamBuffer::Flushable}{wxstreambufferflushable}
227
228\membersection{wxStreamBuffer::GetBufferStart}
229
230\constfunc{char *}{GetBufferStart}{\void}
231
232Returns a pointer on the start of the stream buffer.
233
234\membersection{wxStreamBuffer::GetBufferEnd}
235
236\constfunc{char *}{GetBufferEnd}{\void}
237
238Returns a pointer on the end of the stream buffer.
239
240\membersection{wxStreamBuffer::GetBufferPos}
241
242\constfunc{char *}{GetBufferPos}{\void}
243
244Returns a pointer on the current position of the stream buffer.
245
246\membersection{wxStreamBuffer::GetIntPosition}
247
248\constfunc{off\_t}{GetIntPosition}{\void}
249
250Returns the current position (counted in bytes) in the stream buffer.
251
252\membersection{wxStreamBuffer::SetIntPosition}
253
254\func{void}{SetIntPosition}{\void}
255
256Sets the current position (in bytes) in the stream buffer.
257
258\wxheading{Warning}
259
260Since it is a very low-level function, there is no check on the position:
261specify an invalid position can induce unexpected results.
262
263\membersection{wxStreamBuffer::GetLastAccess}
264
265\constfunc{size\_t}{GetLastAccess}{\void}
266
267Returns the amount of bytes read during the last IO call to the parent stream.
268
269\membersection{wxStreamBuffer::Fixed}\label{wxstreambufferfixed}
270
271\func{void}{Fixed}{\param{bool}{ fixed}}
272
273Toggles the fixed flag. Usually this flag is toggled at the same time as
274{\it flushable}. This flag allows (when it has the FALSE value) or forbids
275(when it has the TRUE value) the stream buffer to resize dynamically the IO buffer.
276
277\wxheading{See also}
278
279\helpref{wxStreamBuffer::SetBufferIO}{wxstreambuffersetbufferio}
280
281\membersection{wxStreamBuffer::Flushable}\label{wxstreambufferflushable}
282
283\func{void}{Flushable}{\param{bool}{ flushable}}
284
285Toggles the flushable flag. If {\it flushable} is disabled, no datas are sent
286to the parent stream.
287
288\membersection{wxStreamBuffer::FlushBuffer}
289
290\func{bool}{FlushBuffer}{\void}
291
292Flushes the IO buffer.
293
294\membersection{wxStreamBuffer::FillBuffer}
295
296\func{bool}{FillBuffer}{\void}
297
298Fill the IO buffer.
299
300\membersection{wxStreamBuffer::GetDataLeft}
301
302\func{size\_t}{GetDataLeft}{\void}
303
304Returns the amount of available datas in the buffer.
305
306% --------------
307% Administration
308% --------------
309\membersection{wxStreamBuffer::Stream}
310
311\func{wxStreamBase*}{Stream}{\void}
312
313Returns the parent stream of the stream buffer.
314