]> git.saurik.com Git - wxWidgets.git/blame - include/wx/txtstrm.h
Committing in .
[wxWidgets.git] / include / wx / txtstrm.h
CommitLineData
fae05df5
GL
1/////////////////////////////////////////////////////////////////////////////
2// Name: txtstrm.h
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
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_TXTSTREAM_H_
13#define _WX_TXTSTREAM_H_
14
15#ifdef __GNUG__
16#pragma interface "txtstrm.h"
17#endif
18
ed58dbea 19#include "wx/stream.h"
fae05df5
GL
20
21#if wxUSE_STREAMS
22
65045edd
RR
23class WXDLLEXPORT wxTextInputStream;
24class WXDLLEXPORT wxTextOutputStream;
25
26typedef wxTextInputStream& (*__wxTextInputManip)(wxTextInputStream&);
27typedef wxTextOutputStream& (*__wxTextOutputManip)(wxTextOutputStream&);
28
29WXDLLEXPORT wxTextOutputStream &endl( wxTextOutputStream &stream );
30
fae05df5
GL
31class WXDLLEXPORT wxTextInputStream {
32public:
191549ed 33 wxTextInputStream(wxInputStream& s, const wxString &sep=wxT(" \t"));
fae05df5
GL
34 ~wxTextInputStream();
35
36 wxUint32 Read32();
37 wxUint16 Read16();
9853d977
SB
38 wxUint8 Read8();
39 double ReadDouble();
40 wxString ReadString(); // deprecated use ReadLine or ReadWord instead
41 wxString ReadLine();
42 wxString ReadWord();
43
191549ed
SB
44 wxString GetStringSeparators() const { return m_separators;}
45 void SetStringSeparators(const wxString &c) { m_separators=c;}
fae05df5
GL
46
47 // Operators
9853d977 48 wxTextInputStream& operator>>(wxString& word);
940ddb19 49 wxTextInputStream& operator>>(wxChar& c);
fae05df5
GL
50 wxTextInputStream& operator>>(wxInt16& i);
51 wxTextInputStream& operator>>(wxInt32& i);
fae05df5
GL
52 wxTextInputStream& operator>>(wxUint16& i);
53 wxTextInputStream& operator>>(wxUint32& i);
54 wxTextInputStream& operator>>(double& i);
55 wxTextInputStream& operator>>(float& f);
65045edd
RR
56
57 wxTextInputStream& operator>>( __wxTextInputManip func) { return func(*this); }
58
fae05df5 59 protected:
191549ed
SB
60 wxInputStream &m_input;
61 wxString m_separators;
62
63 bool EatEOL(const wxChar &c);
64 wxChar NextNonSeparators();
65 void SkipIfEndOfLine( wxChar c );
fae05df5
GL
66};
67
68class WXDLLEXPORT wxTextOutputStream {
69 public:
70 wxTextOutputStream(wxOutputStream& s);
71 ~wxTextOutputStream();
72
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);
cd25b18c 78
fae05df5
GL
79 wxTextOutputStream& operator<<(const wxChar *string);
80 wxTextOutputStream& operator<<(const wxString& string);
940ddb19 81 wxTextOutputStream& operator<<(wxChar c);
fae05df5
GL
82 wxTextOutputStream& operator<<(wxInt16 c);
83 wxTextOutputStream& operator<<(wxInt32 c);
fae05df5
GL
84 wxTextOutputStream& operator<<(wxUint16 c);
85 wxTextOutputStream& operator<<(wxUint32 c);
86 wxTextOutputStream& operator<<(double f);
87 wxTextOutputStream& operator<<(float f);
88
65045edd
RR
89 wxTextOutputStream& operator<<( __wxTextOutputManip func) { return func(*this); }
90
fae05df5 91 protected:
191549ed 92 wxOutputStream &m_output;
fae05df5
GL
93};
94
95#endif
96 // wxUSE_STREAMS
97
98#endif
99 // _WX_DATSTREAM_H_