]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/strtotxt.tex
sorting support for generic version (patch 1765087 from Bo)
[wxWidgets.git] / docs / latex / wx / strtotxt.tex
CommitLineData
d73e6791
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: strtotxt.tex
3%% Purpose: wxStreamToTextRedirector documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 19.10.01
7%% RCS-ID: $Id$
8%% Copyright: (c) 2001 Vadim Zeitlin <vadim@wxwindows.org>
8795498c 9%% License: wxWindows license
d73e6791
VZ
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxStreamToTextRedirector}}\label{wxstreamtotextredirector}
13
14This class can be used to (temporarily) redirect all output sent to a C++
15ostream object to a \helpref{wxTextCtrl}{wxtextctrl} instead.
16
17{\bf NB:} Some compilers and/or build configurations don't support multiply
18inheriting \helpref{wxTextCtrl}{wxtextctrl} from {\tt std::streambuf} in which
19case this class is not compiled in. You also must have {\tt wxUSE\_STD\_IOSTREAM}
20option on (i.e. set to $1$) in your setup.h to be able to use it. Under Unix,
21specify {\tt --enable-std\_iostreams} switch when running configure for this.
22
23Example of usage:
24{\small%
25\begin{verbatim}
26 using namespace std;
27
28 wxTextCtrl *text = new wxTextCtrl(...);
29
30 {
31 wxStreamToTextRedirector redirect(text);
32
33 // this goes to the text control
34 cout << "Hello, text!" << endl;
35 }
36
dbd94b75 37 // this goes somewhere else, presumably to stdout
d73e6791
VZ
38 cout << "Hello, console!" << endl;
39\end{verbatim}
40}%
41
42\wxheading{Derived from}
43
44No base class
45
46\wxheading{Include files}
47
48<wx/textctrl.h>
49
a7af285d
VZ
50\wxheading{Library}
51
52\helpref{wxCore}{librarieslist}
53
d73e6791
VZ
54\wxheading{See also}
55
56\helpref{wxTextCtrl}{wxtextctrl}
57
58\latexignore{\rtfignore{\wxheading{Members}}}
59
60\membersection{wxStreamToTextRedirector::wxStreamToTextRedirector}\label{wxstreamtotextredirectorctor}
61
051443d4 62\func{}{wxStreamToTextRedirector}{\param{wxTextCtrl }{*text}, \param{ostream *}{ostr = NULL}}
d73e6791
VZ
63
64The constructor starts redirecting output sent to {\it ostr} or {\it cout} for
65the default parameter value to the text control {\it text}.
66
67\wxheading{Parameters}
68
154b6b0f 69\docparam{text}{The text control to append output too, must be non-NULL}
d73e6791
VZ
70
71\docparam{ostr}{The C++ stream to redirect, {\it cout} is used if it is NULL}
72
15d83f72 73\membersection{wxStreamToTextRedirector::\destruct{wxStreamToTextRedirector}}\label{wxstreamtotextredirectordtor}
d73e6791
VZ
74
75\func{}{\destruct{wxStreamToTextRedirector}}{\void}
76
77When a wxStreamToTextRedirector object is destroyed, the redirection is ended
78and any output sent to the C++ ostream which had been specified at the time of
79the object construction will go to its original destination.
80