1999-07-27 17:02:58 +00:00
|
|
|
% ----------------------------------------------------------------------------
|
|
|
|
% wxTextInputStream
|
|
|
|
% ----------------------------------------------------------------------------
|
|
|
|
\section{\class{wxTextInputStream}}\label{wxtextinputstream}
|
|
|
|
|
|
|
|
This class provides functions that read text datas using an input stream.
|
|
|
|
So, you can read \it{text} floats, integers.
|
|
|
|
|
1999-07-30 13:16:45 +00:00
|
|
|
The wxTextInputStream correctly reads text files (or streams) in DOS, Macintosh
|
|
|
|
and Unix formats and reports a single newline char as a line ending.
|
|
|
|
|
1999-07-30 12:02:28 +00:00
|
|
|
Operator >> is overloaded and you can use this class like a standard C++ iostream.
|
|
|
|
Note, however, that the arguments are the fixed size types wxUint32, wxInt32 etc
|
|
|
|
and on a typical 32-bit computer, none of these match to the "long" type (wxInt32
|
|
|
|
is defined as int on 32-bit architectures) so that you cannot use long. To avoid
|
|
|
|
problems (here and elsewhere), make use of the wxInt32, wxUint32, etc types.
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
For example:
|
|
|
|
\begin{verbatim}
|
1999-07-30 12:02:28 +00:00
|
|
|
wxFileInputStream input( "mytext.txt" );
|
1999-07-27 17:02:58 +00:00
|
|
|
wxTextInputStream text( input );
|
|
|
|
wxUint8 i1;
|
|
|
|
float f2;
|
|
|
|
wxString line;
|
|
|
|
|
|
|
|
text >> i1; // read a 8 bit integer.
|
1999-07-28 05:52:04 +00:00
|
|
|
text >> i1 >> f2; // read a 8 bit integer followed by float.
|
1999-07-27 17:02:58 +00:00
|
|
|
text >> line; // read a text line
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/txtstrm.h>
|
|
|
|
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
|
|
|
\membersection{wxTextInputStream::wxTextInputStream}\label{wxtextinputstreamconstr}
|
|
|
|
|
|
|
|
\func{}{wxTextInputStream}{\param{wxInputStream\&}{ stream}}
|
|
|
|
|
|
|
|
Constructs a text stream object from an input stream. Only read methods will
|
|
|
|
be available.
|
|
|
|
|
|
|
|
\wxheading{Parameters}
|
|
|
|
|
|
|
|
\docparam{stream}{The input stream.}
|
|
|
|
|
|
|
|
\membersection{wxTextInputStream::\destruct{wxTextInputStream}}
|
|
|
|
|
|
|
|
\func{}{\destruct{wxTextInputStream}}{\void}
|
|
|
|
|
|
|
|
Destroys the wxTextInputStream object.
|
|
|
|
|
|
|
|
\membersection{wxTextInputStream::Read8}
|
|
|
|
|
1999-07-30 12:02:28 +00:00
|
|
|
\func{wxUint8}{Read8}{\void}
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
Reads a single byte from the stream.
|
|
|
|
|
|
|
|
\membersection{wxTextInputStream::Read16}
|
|
|
|
|
1999-07-30 12:02:28 +00:00
|
|
|
\func{wxUint16}{Read16}{\void}
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
Reads a 16 bit integer from the stream.
|
|
|
|
|
|
|
|
\membersection{wxTextInputStream::Read32}
|
|
|
|
|
1999-07-30 12:02:28 +00:00
|
|
|
\func{wxUint16}{Read32}{\void}
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
Reads a 32 bit integer from the stream.
|
|
|
|
|
|
|
|
\membersection{wxTextInputStream::ReadDouble}
|
|
|
|
|
|
|
|
\func{double}{ReadDouble}{\void}
|
|
|
|
|
|
|
|
Reads a double (IEEE encoded) from the stream.
|
|
|
|
|
|
|
|
\membersection{wxTextInputStream::ReadString}
|
|
|
|
|
|
|
|
\func{wxString}{wxTextInputStream::ReadString}{\void}
|
|
|
|
|
|
|
|
Reads a line from the stream. A line is a string which ends with
|
1999-07-28 05:52:04 +00:00
|
|
|
$\backslash$n or $\backslash$r$\backslash$n or $\backslash$r.
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
% ----------------------------------------------------------------------------
|
|
|
|
% wxTextOutputStream
|
|
|
|
% ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
\section{\class{wxTextOutputStream}}\label{wxtextoutputstream}
|
|
|
|
|
|
|
|
This class provides functions that write text datas using an output stream.
|
|
|
|
So, you can write \it{text} floats, integers.
|
|
|
|
|
1999-08-22 16:12:48 +00:00
|
|
|
You can also simulate the C++ cout class:
|
1999-07-27 17:02:58 +00:00
|
|
|
\begin{verbatim}
|
1999-08-22 16:12:48 +00:00
|
|
|
wxFFileOutputStream output( stderr );
|
|
|
|
wxTextOutputStream cout( output );
|
1999-07-27 17:02:58 +00:00
|
|
|
|
1999-08-22 16:12:48 +00:00
|
|
|
cout << "This is a text line" << endl;
|
|
|
|
cout << 1234;
|
|
|
|
cout << 1.23456;
|
1999-07-27 17:02:58 +00:00
|
|
|
\end{verbatim}
|
1999-07-28 05:52:04 +00:00
|
|
|
|
1999-07-30 13:16:45 +00:00
|
|
|
The wxTextOutputStream writes text files (or streams) on DOS, Macintosh
|
|
|
|
and Unix in their native formats (concerning the line ending).
|
|
|
|
|
1999-07-27 17:02:58 +00:00
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
1999-08-05 15:51:32 +00:00
|
|
|
\membersection{wxTextOutputStream::wxTextOutputStream}\label{wxtextoutputstreamconstr}
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
\func{}{wxTextOutputStream}{\param{wxOutputStream\&}{ stream}}
|
|
|
|
|
|
|
|
Constructs a text stream object from an output stream. Only write methods will
|
|
|
|
be available.
|
|
|
|
|
|
|
|
\wxheading{Parameters}
|
|
|
|
|
|
|
|
\docparam{stream}{The output stream.}
|
|
|
|
|
|
|
|
\membersection{wxTextOutputStream::\destruct{wxTextOutputStream}}
|
|
|
|
|
|
|
|
\func{}{\destruct{wxTextOutputStream}}{\void}
|
|
|
|
|
|
|
|
Destroys the wxTextOutputStream object.
|
|
|
|
|
|
|
|
\membersection{wxTextOutputStream::Write8}
|
|
|
|
|
1999-07-30 12:02:28 +00:00
|
|
|
\func{void}{wxTextOutputStream::Write8}{{\param wxUint8 }{i8}}
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
Writes the single byte {\it i8} to the stream.
|
|
|
|
|
|
|
|
\membersection{wxTextOutputStream::Write16}
|
|
|
|
|
1999-07-30 12:02:28 +00:00
|
|
|
\func{void}{wxTextOutputStream::Write16}{{\param wxUint16 }{i16}}
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
Writes the 16 bit integer {\it i16} to the stream.
|
|
|
|
|
|
|
|
\membersection{wxTextOutputStream::Write32}
|
|
|
|
|
1999-07-30 12:02:28 +00:00
|
|
|
\func{void}{wxTextOutputStream::Write32}{{\param wxUint32 }{i32}}
|
1999-07-27 17:02:58 +00:00
|
|
|
|
|
|
|
Writes the 32 bit integer {\it i32} to the stream.
|
|
|
|
|
|
|
|
\membersection{wxTextOutputStream::WriteDouble}
|
|
|
|
|
|
|
|
\func{void}{wxTextOutputStream::WriteDouble}{{\param double }{f}}
|
|
|
|
|
|
|
|
Writes the double {\it f} to the stream using the IEEE format.
|
|
|
|
|
|
|
|
\membersection{wxTextOutputStream::WriteString}
|
|
|
|
|
|
|
|
\func{void}{wxTextOutputStream::WriteString}{{\param const wxString\& }{string}}
|
|
|
|
|
|
|
|
Writes {\it string} as a line. Depending on the operating system, it adds
|
|
|
|
$\backslash$n or $\backslash$r$\backslash$n.
|
1999-08-05 22:05:15 +00:00
|
|
|
|