summaryrefslogtreecommitdiffstats
path: root/doc/datastreamformat.doc
blob: 8de520ce61e480695258b096d099d3b3954bc7de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/****************************************************************************
**
** Documentation of the Format of the QDataStream operators
**
** Copyright (C) 1992-2008 Trolltech ASA.  All rights reserved.
**
** This file is part of the Qt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the files LICENSE.GPL2
** and LICENSE.GPL3 included in the packaging of this file.
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
** and the KDE Free Qt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** This file may be used under the terms of the Q Public License as
** defined by Trolltech ASA and appearing in the file LICENSE.QPL
** included in the packaging of this file.  Licensees holding valid Qt
** Commercial licenses may use this file in accordance with the Qt
** Commercial License Agreement provided with the Software.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/

/*!
\page datastreamformat.html

\title Format of the QDataStream Operators

The \l QDataStream allows you to serialize some of the Qt data types.
The table below lists the data types that QDataStream can serialize
and how they are represented.

It is best to always cast integers to a Qt integer type when writing,
and to read back into the same Qt integer type when reading.

\table
\row \i TQ_INT8
     \i \list
	\i signed byte
	\endlist
\row \i TQ_INT16
     \i \list
	\i signed 16 bit integer
	\endlist
\row \i TQ_INT32
     \i \list
	\i signed 32 bit integer
	\endlist
\row \i TQ_UINT8
     \i \list
	\i unsigned byte
	\endlist
\row \i TQ_UINT16
     \i \list
	\i unsigned 16 bit integer
	\endlist
\row \i TQ_UINT32
     \i \list
	\i unsigned 32 bit integer
	\endlist
\row \i float
     \i \list
	\i 32-bit floating point number using the standard IEEE-754 format
	\endlist
\row \i double
     \i \list
	\i 64-bit floating point number using the standard IEEE-754 format
	\endlist
\row \i char *
     \i \list
	\i The size of the string including the terminating 0 (TQ_UINT32)
	\i The string bytes including the terminating 0
	\endlist
	The null string is represented as \c {(TQ_UINT32) 0}.
\row \i QBitArray
     \i \list
	\i The array size (TQ_UINT32)
	\i The array bits, i.e. (size + 7)/8 bytes
	\endlist
\row \i QBrush
     \i \list
	\i The brush style (TQ_UINT8)
	\i The brush color (QColor)
	\i If style is CustomPattern, the brush pixmap (QPixmap)
	\endlist
\row \i QByteArray
     \i \list
	\i The array size (TQ_UINT32)
	\i The array bytes, i.e. size bytes
	\endlist
\row \i QCString
     \i \list
	\i The size of the string including the terminating 0 (TQ_UINT32)
	\i The string bytes including the terminating 0
	\endlist
	The null string is represented as \c {(TQ_UINT32) 0}.
\row \i \l QColor
     \i \list \i RGB value serialized as a TQ_UINT32 \endlist
\row \i QColorGroup
     \i \list
	\i foreground (QBrush)
	\i button (QBrush)
	\i light (QBrush)
	\i midLight (QBrush)
	\i dark (QBrush)
	\i mid (QBrush)
	\i text (QBrush)
	\i brightText (QBrush)
	\i ButtonText (QBrush)
	\i base (QBrush)
	\i background (QBrush)
	\i shadow (QBrush)
	\i highlight (QBrush)
	\i highlightedText (QBrush)
	\endlist
\row \i QCursor
     \i \list
	\i Shape id (TQ_INT16)
	\i If shape is BitmapCursor: The bitmap (QPixmap), mask (QPixmap) and hot spot (QPoint)
	\endlist
\row \i QDate
     \i \list
	\i Julian day (TQ_UINT32)
	\endlist
\row \i QDateTime
     \i \list
	\i Date (QDate)
	\i Time (QTime)
	\endlist
\row \i QFont
     \i \list
	\i The family (QCString)
	\i The point size (TQ_INT16)
	\i The style hint (TQ_UINT8)
	\i The char set (TQ_UINT8)
	\i The weight (TQ_UINT8)
	\i The font bits (TQ_UINT8)
	\endlist
\row \i QImage
     \i \list
	\i If the image is null a "null image" marker is saved;
	otherwise the image is saved in PNG or BMP format (depending
	on the stream version). If you want control of the format,
	stream the image into a QBuffer (using QImageIO) and stream
	that.
	\endlist
\row \i QMap
     \i \list
	\i The number of items (TQ_UINT32)
	\i For all items, the key and value
	\endlist
\row \i QPalette
     \i \list
	\i active (QColorGroup)
	\i disabled (QColorGroup)
	\i inactive (QColorGroup)
	\endlist
\row \i QPen
     \i \list
	\i The pen styles (TQ_UINT8)
	\i The pen width (TQ_UINT8)
	\i The pen color (QColor)
	\endlist
\row \i QPicture
     \i \list
	\i The size of the picture data (TQ_UINT32)
	\i The raw bytes of picture data (char)
	\endlist
\row \i QPixmap
     \i \list
	\i Save it as a PNG image.
	\endlist
\row \i QPoint
     \i \list
	\i The x coordinate (TQ_INT32)
	\i The y coordinate (TQ_INT32)
	\endlist
\row \i QPointArray
     \i \list
	\i The array size (TQ_UINT32)
	\i The array points (QPoint)
	\endlist
\row \i QRect
     \i \list
	\i left (TQ_INT32)
	\i top (TQ_INT32)
	\i right (TQ_INT32)
	\i bottom (TQ_INT32)
	\endlist
\row \i QRegion
     \i \list
	\i The size of the data, i.e. 8 + 16 * (number of rectangles) (TQ_UINT32)
	\i QRGN_RECTS (TQ_INT32)
	\i The number of rectangles (TQ_UINT32)
	\i The rectangles in sequential order (QRect)
	\endlist
\row \i QSize
     \i \list
	\i width (TQ_INT32)
	\i height (TQ_INT32)
	\endlist
\row \i QString
     \i \list
	\i If the string is null: 0xffffffff (TQ_UINT32)<br>
	   otherwise: The string length (TQ_UINT32) followed by the
	   data in UTF-16
	\endlist
\row \i QTime
     \i \list
	\i Milliseconds since midnight (TQ_UINT32)
	\endlist
\row \i QValueList
     \i \list
	\i The number of list elements (TQ_UINT32)
	\i All the elements in sequential order
	\endlist
\row \i QVariant
     \i \list
	\i The type of the data (TQ_UINT32)
	\i The data of the specified type
	\endlist
\row \i QWMatrix
     \i \list
	\i m11 (double)
	\i m12 (double)
	\i m21 (double)
	\i m22 (double)
	\i dx (double)
	\i dy (double)
	\endlist
\endtable

*/