1 % ----------------------------------------------------------------------------
3 % ----------------------------------------------------------------------------
4 \section{\class{wxTextInputStream
}}\label{wxtextinputstream
}
6 This class provides functions that read text datas using an input stream.
7 So, you can read
{\it text
} floats, integers.
9 The wxTextInputStream correctly reads text files (or streams) in DOS, Macintosh
10 and Unix formats and reports a single newline char as a line ending.
12 Operator >> is overloaded and you can use this class like a standard C++ iostream.
13 Note, however, that the arguments are the fixed size types wxUint32, wxInt32 etc
14 and on a typical
32-bit computer, none of these match to the "long" type (wxInt32
15 is defined as int on
32-bit architectures) so that you cannot use long. To avoid
16 problems (here and elsewhere), make use of wxInt32, wxUint32 and similar types.
18 If you're scanning through a file using wxTextInputStream, you should check for EOF
{\bf before
}
19 reading the next item (word / number), because otherwise the last item may get lost.
20 You should however be prepared to receive an empty item (empty string / zero number) at the
21 end of file, especially on Windows systems. This is unavoidable because most (but not all) files end
22 with whitespace (i.e. usually a newline).
27 wxFileInputStream input( "mytext.txt" );
28 wxTextInputStream text( input );
33 text >> i1; // read a
8 bit integer.
34 text >> i1 >> f2; // read a
8 bit integer followed by float.
35 text >> line; // read a text line
38 \wxheading{Include files
}
42 \latexignore{\rtfignore{\wxheading{Members
}}}
44 \membersection{wxTextInputStream::wxTextInputStream
}\label{wxtextinputstreamconstr
}
46 \func{}{wxTextInputStream
}{\param{wxInputStream\&
}{ stream
},
\param{const wxString\&
}{ sep=" $
\backslash$t"
},
47 \param{wxMBConv\&
}{ conv = wxConvUTF8
} }
49 Constructs a text stream object from an input stream. Only read methods will
52 \wxheading{Parameters
}
54 \docparam{stream
}{The underlying input stream.
}
56 \docparam{sep
}{The initial string separator characters.
}
58 \docparam{conv
}{{\it In Unicode build only:
} The encoding converter used to convert the bytes in the
59 underlying input stream to characters.
}
61 \membersection{wxTextInputStream::
\destruct{wxTextInputStream
}}
63 \func{}{\destruct{wxTextInputStream
}}{\void}
65 Destroys the wxTextInputStream object.
67 \membersection{wxTextInputStream::Read8
}\label{wxtextinputstreamread8
}
69 \func{wxUint8
}{Read8
}{\param{int
}{ base =
10}}
71 Reads a single unsigned byte from the stream, given in base
{\it base
}.
73 The value of
{\it base
} must be comprised between $
2$ and $
36$, inclusive, or
74 be a special value $
0$ which means that the usual rules of
{\tt C
} numbers are
75 applied: if the number starts with
{\tt 0x
} it is considered to be in base
76 $
16$, if it starts with
{\tt 0} - in base $
8$ and in base $
10$ otherwise. Note
77 that you may not want to specify the base $
0$ if you are parsing the numbers
78 which may have leading zeroes as they can yield unexpected (to the user not
79 familiar with C) results.
81 \membersection{wxTextInputStream::Read8S
}
83 \func{wxInt8
}{Read8S
}{\param{int
}{ base =
10}}
85 Reads a single signed byte from the stream.
87 See
\helpref{wxTextInputStream::Read8
}{wxtextinputstreamread8
} for the
88 description of the
{\it base
} parameter.
90 \membersection{wxTextInputStream::Read16
}
92 \func{wxUint16
}{Read16
}{\param{int
}{ base =
10}}
94 Reads a unsigned
16 bit integer from the stream.
96 See
\helpref{wxTextInputStream::Read8
}{wxtextinputstreamread8
} for the
97 description of the
{\it base
} parameter.
99 \membersection{wxTextInputStream::Read16S
}
101 \func{wxInt16
}{Read16S
}{\param{int
}{ base =
10}}
103 Reads a signed
16 bit integer from the stream.
105 See
\helpref{wxTextInputStream::Read8
}{wxtextinputstreamread8
} for the
106 description of the
{\it base
} parameter.
108 \membersection{wxTextInputStream::Read32
}
110 \func{wxUint32
}{Read32
}{\param{int
}{ base =
10}}
112 Reads a
32 bit unsigned integer from the stream.
114 See
\helpref{wxTextInputStream::Read8
}{wxtextinputstreamread8
} for the
115 description of the
{\it base
} parameter.
117 \membersection{wxTextInputStream::Read32S
}
119 \func{wxInt32
}{Read32S
}{\param{int
}{ base =
10}}
121 Reads a
32 bit signed integer from the stream.
123 See
\helpref{wxTextInputStream::Read8
}{wxtextinputstreamread8
} for the
124 description of the
{\it base
} parameter.
126 \membersection{wxTextInputStream::ReadChar
}\label{wxtextinputstreamreadchar
}
128 \func{wxChar
}{wxTextInputStream::ReadChar
}{\void}
130 Reads a character, returns $
0$ if there are no more characters in the stream.
132 \membersection{wxTextInputStream::ReadDouble
}
134 \func{double
}{ReadDouble
}{\void}
136 Reads a double (IEEE encoded) from the stream.
138 \membersection{wxTextInputStream::ReadLine
}\label{wxtextinputstreamreadline
}
140 \func{wxString
}{wxTextInputStream::ReadLine
}{\void}
142 Reads a line from the input stream and returns it (without the end of line
145 \membersection{wxTextInputStream::ReadString
}
147 \func{wxString
}{wxTextInputStream::ReadString
}{\void}
149 {\bf NB:
} This method is deprecated, use
\helpref{ReadLine
}{wxtextinputstreamreadline
}
150 or
\helpref{ReadWord
}{wxtextinputstreamreadword
} instead.
152 Same as
\helpref{ReadLine
}{wxtextinputstreamreadline
}.
154 \membersection{wxTextInputStream::ReadWord
}\label{wxtextinputstreamreadword
}
156 \func{wxString
}{wxTextInputStream::ReadWord
}{\void}
158 Reads a word (a sequence of characters until the next separator) from the
163 \helpref{SetStringSeparators
}{wxtextinputstreamsetstringseparators
}
165 \membersection{wxTextInputStream::SetStringSeparators
}\label{wxtextinputstreamsetstringseparators
}
167 \func{void
}{SetStringSeparators
}{\param{const wxString\&
}{sep
}}
169 Sets the characters which are used to define the word boundaries in
170 \helpref{ReadWord
}{wxtextinputstreamreadword
}.
172 The default separators are the space and
{\tt TAB
} characters.
174 % ----------------------------------------------------------------------------
176 % ----------------------------------------------------------------------------
178 \section{\class{wxTextOutputStream
}}\label{wxtextoutputstream
}
180 This class provides functions that write text datas using an output stream.
181 So, you can write
{\it text
} floats, integers.
183 You can also simulate the C++ cout class:
186 wxFFileOutputStream output( stderr );
187 wxTextOutputStream cout( output );
189 cout << "This is a text line" << endl;
194 The wxTextOutputStream writes text files (or streams) on DOS, Macintosh
195 and Unix in their native formats (concerning the line ending).
197 \latexignore{\rtfignore{\wxheading{Members
}}}
199 \membersection{wxTextOutputStream::wxTextOutputStream
}\label{wxtextoutputstreamconstr
}
201 \func{}{wxTextOutputStream
}{\param{wxOutputStream\&
}{ stream
},
\param{wxEOL
}{ mode = wxEOL
\_NATIVE}}
203 Constructs a text stream object from an output stream. Only write methods will
206 \wxheading{Parameters
}
208 \docparam{stream
}{The output stream.
}
210 \docparam{mode
}{The end-of-line mode. One of
{\bf wxEOL
\_NATIVE},
{\bf wxEOL
\_DOS},
{\bf wxEOL
\_MAC} and
{\bf wxEOL
\_UNIX}.
}
212 \membersection{wxTextOutputStream::
\destruct{wxTextOutputStream
}}
214 \func{}{\destruct{wxTextOutputStream
}}{\void}
216 Destroys the wxTextOutputStream object.
218 \membersection{wxTextOutputStream::GetMode
}
220 \func{wxEOL
}{wxTextOutputStream::GetMode
}{\void}
222 Returns the end-of-line mode. One of
{\bf wxEOL
\_DOS},
{\bf wxEOL
\_MAC} and
{\bf wxEOL
\_UNIX}.
224 \membersection{wxTextOutputStream::SetMode
}
226 \func{void
}{wxTextOutputStream::SetMode
}{{\param wxEOL
}{ mode = wxEOL
\_NATIVE}}
228 Set the end-of-line mode. One of
{\bf wxEOL
\_NATIVE},
{\bf wxEOL
\_DOS},
{\bf wxEOL
\_MAC} and
{\bf wxEOL
\_UNIX}.
230 \membersection{wxTextOutputStream::Write8
}
232 \func{void
}{wxTextOutputStream::Write8
}{{\param wxUint8
}{i8
}}
234 Writes the single byte
{\it i8
} to the stream.
236 \membersection{wxTextOutputStream::Write16
}
238 \func{void
}{wxTextOutputStream::Write16
}{{\param wxUint16
}{i16
}}
240 Writes the
16 bit integer
{\it i16
} to the stream.
242 \membersection{wxTextOutputStream::Write32
}
244 \func{void
}{wxTextOutputStream::Write32
}{{\param wxUint32
}{i32
}}
246 Writes the
32 bit integer
{\it i32
} to the stream.
248 \membersection{wxTextOutputStream::WriteDouble
}
250 \func{virtual void
}{wxTextOutputStream::WriteDouble
}{{\param double
}{f
}}
252 Writes the double
{\it f
} to the stream using the IEEE format.
254 \membersection{wxTextOutputStream::WriteString
}
256 \func{virtual void
}{wxTextOutputStream::WriteString
}{{\param const wxString\&
}{string
}}
258 Writes
{\it string
} as a line. Depending on the end-of-line mode the end of
259 line ('$
\backslash$n') characters in the string are converted to the correct
260 line ending terminator.