]>
Commit | Line | Data |
---|---|---|
fae05df5 | 1 | ///////////////////////////////////////////////////////////////////////////// |
40ff126a | 2 | // Name: wx/txtstrm.h |
fae05df5 GL |
3 | // Purpose: Text stream classes |
4 | // Author: Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 28/06/1998 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Guilhem Lavaux | |
cb719f2e | 9 | // Licence: wxWindows licence |
fae05df5 GL |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_TXTSTREAM_H_ | |
13 | #define _WX_TXTSTREAM_H_ | |
14 | ||
ed58dbea | 15 | #include "wx/stream.h" |
830f8f11 | 16 | #include "wx/convauto.h" |
fae05df5 GL |
17 | |
18 | #if wxUSE_STREAMS | |
19 | ||
b5dbe15d VS |
20 | class WXDLLIMPEXP_FWD_BASE wxTextInputStream; |
21 | class WXDLLIMPEXP_FWD_BASE wxTextOutputStream; | |
65045edd RR |
22 | |
23 | typedef wxTextInputStream& (*__wxTextInputManip)(wxTextInputStream&); | |
24 | typedef wxTextOutputStream& (*__wxTextOutputManip)(wxTextOutputStream&); | |
25 | ||
bddd7a8d | 26 | WXDLLIMPEXP_BASE wxTextOutputStream &endl( wxTextOutputStream &stream ); |
65045edd | 27 | |
2b5f62a0 | 28 | |
2348a842 VZ |
29 | #define wxEOT wxT('\4') // the End-Of-Text control code (used only inside wxTextInputStream) |
30 | ||
31 | // If you're scanning through a file using wxTextInputStream, you should check for EOF _before_ | |
cb719f2e | 32 | // reading the next item (word / number), because otherwise the last item may get lost. |
2348a842 VZ |
33 | // You should however be prepared to receive an empty item (empty string / zero number) at the |
34 | // end of file, especially on Windows systems. This is unavoidable because most (but not all) files end | |
35 | // with whitespace (i.e. usually a newline). | |
bddd7a8d | 36 | class WXDLLIMPEXP_BASE wxTextInputStream |
c7a9fa36 | 37 | { |
fae05df5 | 38 | public: |
2b5f62a0 | 39 | #if wxUSE_UNICODE |
830f8f11 VZ |
40 | wxTextInputStream(wxInputStream& s, |
41 | const wxString &sep=wxT(" \t"), | |
42 | const wxMBConv& conv = wxConvAuto()); | |
2b5f62a0 | 43 | #else |
830f8f11 | 44 | wxTextInputStream(wxInputStream& s, const wxString &sep=wxT(" \t")); |
2b5f62a0 | 45 | #endif |
c7a9fa36 RR |
46 | ~wxTextInputStream(); |
47 | ||
23a9142e VZ |
48 | const wxInputStream& GetInputStream() const { return m_input; } |
49 | ||
2348a842 VZ |
50 | wxUint32 Read32(int base = 10); // base may be between 2 and 36, inclusive, or the special 0 (= C format) |
51 | wxUint16 Read16(int base = 10); | |
52 | wxUint8 Read8(int base = 10); | |
53 | wxInt32 Read32S(int base = 10); | |
54 | wxInt16 Read16S(int base = 10); | |
55 | wxInt8 Read8S(int base = 10); | |
c7a9fa36 | 56 | double ReadDouble(); |
c7a9fa36 RR |
57 | wxString ReadLine(); |
58 | wxString ReadWord(); | |
254a2129 | 59 | wxChar GetChar() { wxChar c = NextChar(); return (wxChar)(c != wxEOT ? c : 0); } |
c7a9fa36 RR |
60 | |
61 | wxString GetStringSeparators() const { return m_separators; } | |
62 | void SetStringSeparators(const wxString &c) { m_separators = c; } | |
63 | ||
64 | // Operators | |
65 | wxTextInputStream& operator>>(wxString& word); | |
f6bcfd97 | 66 | wxTextInputStream& operator>>(char& c); |
fdd99f15 VZ |
67 | #if wxUSE_UNICODE && wxWCHAR_T_IS_REAL_TYPE |
68 | wxTextInputStream& operator>>(wchar_t& wc); | |
69 | #endif // wxUSE_UNICODE | |
c7a9fa36 RR |
70 | wxTextInputStream& operator>>(wxInt16& i); |
71 | wxTextInputStream& operator>>(wxInt32& i); | |
72 | wxTextInputStream& operator>>(wxUint16& i); | |
73 | wxTextInputStream& operator>>(wxUint32& i); | |
74 | wxTextInputStream& operator>>(double& i); | |
75 | wxTextInputStream& operator>>(float& f); | |
28f5bdb4 | 76 | |
c7a9fa36 | 77 | wxTextInputStream& operator>>( __wxTextInputManip func) { return func(*this); } |
28f5bdb4 | 78 | |
40ff126a WS |
79 | #if WXWIN_COMPATIBILITY_2_6 |
80 | wxDEPRECATED( wxString ReadString() ); // use ReadLine or ReadWord instead | |
81 | #endif // WXWIN_COMPATIBILITY_2_6 | |
82 | ||
c7a9fa36 RR |
83 | protected: |
84 | wxInputStream &m_input; | |
85 | wxString m_separators; | |
2348a842 | 86 | char m_lastBytes[10]; // stores the bytes that were read for the last character |
cb719f2e | 87 | |
2b5f62a0 | 88 | #if wxUSE_UNICODE |
d36c9347 | 89 | wxMBConv *m_conv; |
2b5f62a0 | 90 | #endif |
191549ed | 91 | |
c7a9fa36 | 92 | bool EatEOL(const wxChar &c); |
2348a842 VZ |
93 | void UngetLast(); // should be used instead of wxInputStream::Ungetch() because of Unicode issues |
94 | // returns EOT (\4) if there is a stream error, or end of file | |
95 | wxChar NextChar(); // this should be used instead of GetC() because of Unicode issues | |
c7a9fa36 | 96 | wxChar NextNonSeparators(); |
fc7a2a60 | 97 | |
c0c133e1 | 98 | wxDECLARE_NO_COPY_CLASS(wxTextInputStream); |
fae05df5 GL |
99 | }; |
100 | ||
2b5f62a0 VZ |
101 | typedef enum |
102 | { | |
c7a9fa36 RR |
103 | wxEOL_NATIVE, |
104 | wxEOL_UNIX, | |
105 | wxEOL_MAC, | |
28f5bdb4 | 106 | wxEOL_DOS |
c7a9fa36 | 107 | } wxEOL; |
fae05df5 | 108 | |
bddd7a8d | 109 | class WXDLLIMPEXP_BASE wxTextOutputStream |
c7a9fa36 RR |
110 | { |
111 | public: | |
2b5f62a0 | 112 | #if wxUSE_UNICODE |
830f8f11 VZ |
113 | wxTextOutputStream(wxOutputStream& s, |
114 | wxEOL mode = wxEOL_NATIVE, | |
115 | const wxMBConv& conv = wxConvAuto()); | |
2b5f62a0 | 116 | #else |
830f8f11 | 117 | wxTextOutputStream(wxOutputStream& s, wxEOL mode = wxEOL_NATIVE); |
2b5f62a0 | 118 | #endif |
c7a9fa36 RR |
119 | virtual ~wxTextOutputStream(); |
120 | ||
23a9142e VZ |
121 | const wxOutputStream& GetOutputStream() const { return m_output; } |
122 | ||
c7a9fa36 RR |
123 | void SetMode( wxEOL mode = wxEOL_NATIVE ); |
124 | wxEOL GetMode() { return m_mode; } | |
125 | ||
126 | void Write32(wxUint32 i); | |
127 | void Write16(wxUint16 i); | |
128 | void Write8(wxUint8 i); | |
129 | virtual void WriteDouble(double d); | |
130 | virtual void WriteString(const wxString& string); | |
28f5bdb4 | 131 | |
ba854691 RN |
132 | wxTextOutputStream& PutChar(wxChar c); |
133 | ||
ca8cf4ff VZ |
134 | void Flush(); |
135 | ||
c7a9fa36 | 136 | wxTextOutputStream& operator<<(const wxString& string); |
f6bcfd97 | 137 | wxTextOutputStream& operator<<(char c); |
e4940feb | 138 | #if wxUSE_UNICODE && wxWCHAR_T_IS_REAL_TYPE |
3ca1bf5a | 139 | wxTextOutputStream& operator<<(wchar_t wc); |
e4940feb | 140 | #endif // wxUSE_UNICODE |
c7a9fa36 RR |
141 | wxTextOutputStream& operator<<(wxInt16 c); |
142 | wxTextOutputStream& operator<<(wxInt32 c); | |
143 | wxTextOutputStream& operator<<(wxUint16 c); | |
144 | wxTextOutputStream& operator<<(wxUint32 c); | |
145 | wxTextOutputStream& operator<<(double f); | |
146 | wxTextOutputStream& operator<<(float f); | |
28f5bdb4 | 147 | |
c7a9fa36 | 148 | wxTextOutputStream& operator<<( __wxTextOutputManip func) { return func(*this); } |
28f5bdb4 | 149 | |
c7a9fa36 RR |
150 | protected: |
151 | wxOutputStream &m_output; | |
152 | wxEOL m_mode; | |
cb719f2e | 153 | |
2b5f62a0 | 154 | #if wxUSE_UNICODE |
d36c9347 | 155 | wxMBConv *m_conv; |
2b5f62a0 VZ |
156 | #endif |
157 | ||
c0c133e1 | 158 | wxDECLARE_NO_COPY_CLASS(wxTextOutputStream); |
fae05df5 GL |
159 | }; |
160 | ||
161 | #endif | |
162 | // wxUSE_STREAMS | |
163 | ||
164 | #endif | |
165 | // _WX_DATSTREAM_H_ |