1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Text stream classes
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_TXTSTREAM_H_
13 #define _WX_TXTSTREAM_H_
16 #pragma interface "txtstrm.h"
19 #include "wx/stream.h"
23 class WXDLLEXPORT wxTextInputStream
;
24 class WXDLLEXPORT wxTextOutputStream
;
26 typedef wxTextInputStream
& (*__wxTextInputManip
)(wxTextInputStream
&);
27 typedef wxTextOutputStream
& (*__wxTextOutputManip
)(wxTextOutputStream
&);
29 WXDLLEXPORT wxTextOutputStream
&endl( wxTextOutputStream
&stream
);
31 class WXDLLEXPORT wxTextInputStream
{
33 wxTextInputStream(wxInputStream
& s
, const wxString
&sep
=wxT(" \t"));
40 wxString
ReadString(); // deprecated use ReadLine or ReadWord instead
44 wxString
GetStringSeparators() const { return m_separators
;}
45 void SetStringSeparators(const wxString
&c
) { m_separators
=c
;}
48 wxTextInputStream
& operator>>(wxString
& word
);
49 wxTextInputStream
& operator>>(wxChar
& c
);
50 wxTextInputStream
& operator>>(wxInt16
& i
);
51 wxTextInputStream
& operator>>(wxInt32
& i
);
52 wxTextInputStream
& operator>>(wxUint16
& i
);
53 wxTextInputStream
& operator>>(wxUint32
& i
);
54 wxTextInputStream
& operator>>(double& i
);
55 wxTextInputStream
& operator>>(float& f
);
57 wxTextInputStream
& operator>>( __wxTextInputManip func
) { return func(*this); }
60 wxInputStream
&m_input
;
61 wxString m_separators
;
63 bool EatEOL(const wxChar
&c
);
64 wxChar
NextNonSeparators();
65 void SkipIfEndOfLine( wxChar c
);
68 class WXDLLEXPORT wxTextOutputStream
{
70 wxTextOutputStream(wxOutputStream
& s
);
71 ~wxTextOutputStream();
73 void Write32(wxUint32 i
);
74 void Write16(wxUint16 i
);
75 void Write8(wxUint8 i
);
76 void WriteDouble(double d
);
77 void WriteString(const wxString
& string
);
79 wxTextOutputStream
& operator<<(const wxChar
*string
);
80 wxTextOutputStream
& operator<<(const wxString
& string
);
81 wxTextOutputStream
& operator<<(wxChar c
);
82 wxTextOutputStream
& operator<<(wxInt16 c
);
83 wxTextOutputStream
& operator<<(wxInt32 c
);
84 wxTextOutputStream
& operator<<(wxUint16 c
);
85 wxTextOutputStream
& operator<<(wxUint32 c
);
86 wxTextOutputStream
& operator<<(double f
);
87 wxTextOutputStream
& operator<<(float f
);
89 wxTextOutputStream
& operator<<( __wxTextOutputManip func
) { return func(*this); }
92 wxOutputStream
&m_output
;