X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/65045edde4a36217aebb214d841b658f28eb6ac7..f973828cd9b31d3b80386fab5e6f7c4a106d97fc:/docs/latex/wx/txtstrm.tex diff --git a/docs/latex/wx/txtstrm.tex b/docs/latex/wx/txtstrm.tex index 559209c182..50d70b79e4 100644 --- a/docs/latex/wx/txtstrm.tex +++ b/docs/latex/wx/txtstrm.tex @@ -4,7 +4,7 @@ \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. +So, you can read {\it text} floats, integers. The wxTextInputStream correctly reads text files (or streams) in DOS, Macintosh and Unix formats and reports a single newline char as a line ending. @@ -13,9 +13,16 @@ Operator >> is overloaded and you can use this class like a standard C++ iostrea 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. +problems (here and elsewhere), make use of wxInt32, wxUint32 and similar types. + +If you're scanning through a file using wxTextInputStream, you should check for EOF {\bf before} +reading the next item (word / number), because otherwise the last item may get lost. +You should however be prepared to receive an empty item (empty string / zero number) at the +end of file, especially on Windows systems. This is unavoidable because most (but not all) files end +with whitespace (i.e. usually a newline). For example: + \begin{verbatim} wxFileInputStream input( "mytext.txt" ); wxTextInputStream text( input ); @@ -36,14 +43,20 @@ For example: \membersection{wxTextInputStream::wxTextInputStream}\label{wxtextinputstreamconstr} -\func{}{wxTextInputStream}{\param{wxInputStream\&}{ stream}} +\func{}{wxTextInputStream}{\param{wxInputStream\&}{ stream}, \param{const wxString\&}{ sep=" $\backslash$t"}, + \param{wxMBConv\&}{ conv = wxConvUTF8} } Constructs a text stream object from an input stream. Only read methods will be available. \wxheading{Parameters} -\docparam{stream}{The input stream.} +\docparam{stream}{The underlying input stream.} + +\docparam{sep}{The initial string separator characters.} + +\docparam{conv}{{\it In Unicode build only:} The encoding converter used to convert the bytes in the + underlying input stream to characters.} \membersection{wxTextInputStream::\destruct{wxTextInputStream}} @@ -51,23 +64,70 @@ be available. Destroys the wxTextInputStream object. -\membersection{wxTextInputStream::Read8} +\membersection{wxTextInputStream::Read8}\label{wxtextinputstreamread8} + +\func{wxUint8}{Read8}{\param{int}{ base = 10}} + +Reads a single unsigned byte from the stream, given in base {\it base}. -\func{wxUint8}{Read8}{\void} +The value of {\it base} must be comprised between $2$ and $36$, inclusive, or +be a special value $0$ which means that the usual rules of {\tt C} numbers are +applied: if the number starts with {\tt 0x} it is considered to be in base +$16$, if it starts with {\tt 0} - in base $8$ and in base $10$ otherwise. Note +that you may not want to specify the base $0$ if you are parsing the numbers +which may have leading zeroes as they can yield unexpected (to the user not +familiar with C) results. -Reads a single byte from the stream. +\membersection{wxTextInputStream::Read8S} + +\func{wxInt8}{Read8S}{\param{int}{ base = 10}} + +Reads a single signed byte from the stream. + +See \helpref{wxTextInputStream::Read8}{wxtextinputstreamread8} for the +description of the {\it base} parameter. \membersection{wxTextInputStream::Read16} -\func{wxUint16}{Read16}{\void} +\func{wxUint16}{Read16}{\param{int}{ base = 10}} + +Reads a unsigned 16 bit integer from the stream. + +See \helpref{wxTextInputStream::Read8}{wxtextinputstreamread8} for the +description of the {\it base} parameter. -Reads a 16 bit integer from the stream. +\membersection{wxTextInputStream::Read16S} + +\func{wxInt16}{Read16S}{\param{int}{ base = 10}} + +Reads a signed 16 bit integer from the stream. + +See \helpref{wxTextInputStream::Read8}{wxtextinputstreamread8} for the +description of the {\it base} parameter. \membersection{wxTextInputStream::Read32} -\func{wxUint16}{Read32}{\void} +\func{wxUint32}{Read32}{\param{int}{ base = 10}} + +Reads a 32 bit unsigned integer from the stream. + +See \helpref{wxTextInputStream::Read8}{wxtextinputstreamread8} for the +description of the {\it base} parameter. + +\membersection{wxTextInputStream::Read32S} + +\func{wxInt32}{Read32S}{\param{int}{ base = 10}} + +Reads a 32 bit signed integer from the stream. + +See \helpref{wxTextInputStream::Read8}{wxtextinputstreamread8} for the +description of the {\it base} parameter. + +\membersection{wxTextInputStream::ReadChar}\label{wxtextinputstreamreadchar} + +\func{wxChar}{wxTextInputStream::ReadChar}{\void} -Reads a 32 bit integer from the stream. +Reads a character, returns $0$ if there are no more characters in the stream. \membersection{wxTextInputStream::ReadDouble} @@ -75,12 +135,41 @@ Reads a 32 bit integer from the stream. Reads a double (IEEE encoded) from the stream. +\membersection{wxTextInputStream::ReadLine}\label{wxtextinputstreamreadline} + +\func{wxString}{wxTextInputStream::ReadLine}{\void} + +Reads a line from the input stream and returns it (without the end of line +character). + \membersection{wxTextInputStream::ReadString} \func{wxString}{wxTextInputStream::ReadString}{\void} -Reads a line from the stream. A line is a string which ends with -$\backslash$n or $\backslash$r$\backslash$n or $\backslash$r. +{\bf NB:} This method is deprecated, use \helpref{ReadLine}{wxtextinputstreamreadline} +or \helpref{ReadWord}{wxtextinputstreamreadword} instead. + +Same as \helpref{ReadLine}{wxtextinputstreamreadline}. + +\membersection{wxTextInputStream::ReadWord}\label{wxtextinputstreamreadword} + +\func{wxString}{wxTextInputStream::ReadWord}{\void} + +Reads a word (a sequence of characters until the next separator) from the +input stream. + +\wxheading{See also} + +\helpref{SetStringSeparators}{wxtextinputstreamsetstringseparators} + +\membersection{wxTextInputStream::SetStringSeparators}\label{wxtextinputstreamsetstringseparators} + +\func{void}{SetStringSeparators}{\param{const wxString\& }{sep}} + +Sets the characters which are used to define the word boundaries in +\helpref{ReadWord}{wxtextinputstreamreadword}. + +The default separators are the space and {\tt TAB} characters. % ---------------------------------------------------------------------------- % wxTextOutputStream @@ -89,9 +178,10 @@ $\backslash$n or $\backslash$r$\backslash$n or $\backslash$r. \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. +So, you can write {\it text} floats, integers. You can also simulate the C++ cout class: + \begin{verbatim} wxFFileOutputStream output( stderr ); wxTextOutputStream cout( output ); @@ -108,7 +198,7 @@ and Unix in their native formats (concerning the line ending). \membersection{wxTextOutputStream::wxTextOutputStream}\label{wxtextoutputstreamconstr} -\func{}{wxTextOutputStream}{\param{wxOutputStream\&}{ stream}} +\func{}{wxTextOutputStream}{\param{wxOutputStream\&}{ stream}, \param{wxEOL}{ mode = wxEOL\_NATIVE}} Constructs a text stream object from an output stream. Only write methods will be available. @@ -117,12 +207,26 @@ be available. \docparam{stream}{The output stream.} +\docparam{mode}{The end-of-line mode. One of {\bf wxEOL\_NATIVE}, {\bf wxEOL\_DOS}, {\bf wxEOL\_MAC} and {\bf wxEOL\_UNIX}.} + \membersection{wxTextOutputStream::\destruct{wxTextOutputStream}} \func{}{\destruct{wxTextOutputStream}}{\void} Destroys the wxTextOutputStream object. +\membersection{wxTextOutputStream::GetMode} + +\func{wxEOL}{wxTextOutputStream::GetMode}{\void} + +Returns the end-of-line mode. One of {\bf wxEOL\_DOS}, {\bf wxEOL\_MAC} and {\bf wxEOL\_UNIX}. + +\membersection{wxTextOutputStream::SetMode} + +\func{void}{wxTextOutputStream::SetMode}{{\param wxEOL}{ mode = wxEOL\_NATIVE}} + +Set the end-of-line mode. One of {\bf wxEOL\_NATIVE}, {\bf wxEOL\_DOS}, {\bf wxEOL\_MAC} and {\bf wxEOL\_UNIX}. + \membersection{wxTextOutputStream::Write8} \func{void}{wxTextOutputStream::Write8}{{\param wxUint8 }{i8}} @@ -143,14 +247,15 @@ Writes the 32 bit integer {\it i32} to the stream. \membersection{wxTextOutputStream::WriteDouble} -\func{void}{wxTextOutputStream::WriteDouble}{{\param double }{f}} +\func{virtual 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}} +\func{virtual 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. +Writes {\it string} as a line. Depending on the end-of-line mode the end of +line ('$\backslash$n') characters in the string are converted to the correct +line ending terminator.