]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/buffer.h
add note for wxWidgets user with a skeleton for a very minimal console app
[wxWidgets.git] / interface / wx / buffer.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: buffer.h
e54c96f1 3// Purpose: interface of wxMemoryBuffer
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
8ef2a553
FM
9
10/**
11 wxCharTypeBuffer<T> is a template class for storing characters.
12
13 @todo provide better docs for this class
14
15 @nolibrary
16 @category{misc}
17*/
18template <typename T>
19class wxCharTypeBuffer
20{
21public:
22 typedef T CharType;
23
24 wxCharTypeBuffer(const CharType *str = NULL);
25 wxCharTypeBuffer(size_t len);
26 wxCharTypeBuffer(const wxCharTypeBuffer& src);
27 ~wxCharTypeBuffer();
28
29 void reset();
30
31 wxCharTypeBuffer& operator=(const CharType *str);
32 wxCharTypeBuffer& operator=(const wxCharTypeBuffer& src);
33
34 bool extend(size_t len);
35
36 CharType *data();
37 const CharType *data() const;
38 operator const CharType *() const;
39 CharType operator[](size_t n) const;
40};
41
42/**
43 This is a specialization of wxCharTypeBuffer<T> for @c char type.
44
45 @todo provide better docs for this class
46
47 @nolibrary
48 @category{misc}
49*/
50class wxCharBuffer : public wxCharTypeBuffer<char>
51{
52public:
53 typedef wxCharTypeBuffer<char> wxCharTypeBufferBase;
54
55 wxCharBuffer(const wxCharTypeBufferBase& buf);
56 wxCharBuffer(const CharType *str = NULL);
57 wxCharBuffer(size_t len);
58 wxCharBuffer(const wxCStrData& cstr);
59};
60
61/**
62 This is a specialization of wxCharTypeBuffer<T> for @c wchar_t type.
63 This class is available only when <tt>wxUSE_WCHAR_T==1</tt>
64
65 @nolibrary
66 @category{misc}
67*/
68class wxWCharBuffer : public wxCharTypeBuffer<wchar_t>
69{
70public:
71 typedef wxCharTypeBuffer<wchar_t> wxCharTypeBufferBase;
72
73 wxWCharBuffer(const wxCharTypeBufferBase& buf);
74 wxWCharBuffer(const CharType *str = NULL);
75 wxWCharBuffer(size_t len);
76 wxWCharBuffer(const wxCStrData& cstr);
77};
78
79
80
23324ae1
FM
81/**
82 @class wxMemoryBuffer
7c913512 83
23324ae1 84 A @b wxMemoryBuffer is a useful data structure for storing arbitrary sized
8024723d
FM
85 blocks of memory. wxMemoryBuffer guarantees deletion of the memory block when
86 the object is destroyed.
7c913512 87
23324ae1 88 @library{wxbase}
8024723d 89 @category{data}
23324ae1 90*/
7c913512 91class wxMemoryBuffer
23324ae1
FM
92{
93public:
8024723d
FM
94 /**
95 Copy constructor, refcounting is used for performance, but wxMemoryBuffer
96 is not a copy-on-write structure so changes made to one buffer effect all
97 copies made from it.
98
99 @see @ref overview_refcount
100 */
101 wxMemoryBuffer(const wxMemoryBuffer& src);
102
23324ae1
FM
103 /**
104 Create a new buffer.
8024723d 105
7c913512 106 @param size
8024723d 107 size of the new buffer.
23324ae1 108 */
0a98423e 109 wxMemoryBuffer(size_t size = DefBufSize);
23324ae1
FM
110
111 /**
112 Append a single byte to the buffer.
8024723d 113
7c913512 114 @param data
4cc4bfaf 115 New byte to append to the buffer.
23324ae1
FM
116 */
117 void AppendByte(char data);
118
119 /**
120 Ensure that the buffer is big enough and return a pointer to the start
7c913512 121 of the empty space in the buffer. This pointer can be used to directly
8024723d
FM
122 write data into the buffer, this new data will be appended to the
123 existing data.
124
7c913512 125 @param sizeNeeded
4cc4bfaf
FM
126 Amount of extra space required in the buffer for
127 the append operation
23324ae1 128 */
4cc4bfaf 129 void* GetAppendBuf(size_t sizeNeeded);
23324ae1
FM
130
131 /**
132 Returns the size of the buffer.
133 */
d2aa927a 134 size_t GetBufSize() const;
23324ae1
FM
135
136 /**
137 Return a pointer to the data in the buffer.
138 */
d2aa927a 139 void* GetData() const;
23324ae1
FM
140
141 /**
142 Returns the length of the valid data in the buffer.
143 */
d2aa927a 144 size_t GetDataLen() const;
23324ae1
FM
145
146 /**
147 Ensure the buffer is big enough and return a pointer to the
148 buffer which can be used to directly write into the buffer
4cc4bfaf 149 up to @a sizeNeeded bytes.
23324ae1 150 */
4cc4bfaf 151 void* GetWriteBuf(size_t sizeNeeded);
23324ae1
FM
152
153 /**
4cc4bfaf 154 Ensures the buffer has at least @a size bytes available.
23324ae1
FM
155 */
156 void SetBufSize(size_t size);
157
158 /**
8024723d
FM
159 Sets the length of the data stored in the buffer.
160 Mainly useful for truncating existing data.
161
7c913512 162 @param size
4cc4bfaf
FM
163 New length of the valid data in the buffer. This is
164 distinct from the allocated size
23324ae1
FM
165 */
166 void SetDataLen(size_t size);
167
168 /**
169 Update the length after completing a direct append, which
170 you must have used GetAppendBuf() to initialise.
8024723d 171
7c913512 172 @param sizeUsed
4cc4bfaf
FM
173 This is the amount of new data that has been
174 appended.
23324ae1
FM
175 */
176 void UngetAppendBuf(size_t sizeUsed);
177
178 /**
179 Update the buffer after completing a direct write, which
180 you must have used GetWriteBuf() to initialise.
8024723d 181
7c913512 182 @param sizeUsed
4cc4bfaf
FM
183 The amount of data written in to buffer
184 by the direct write
23324ae1
FM
185 */
186 void UngetWriteBuf(size_t sizeUsed);
187};
e54c96f1 188