Q_INT8
|
|
Q_INT16
|
|
Q_INT32
|
|
Q_UINT8
|
|
Q_UINT16
|
|
Q_UINT32
|
|
float
|
- 32-bit floating point number using the standard IEEE-754 format
|
double
|
- 64-bit floating point number using the standard IEEE-754 format
|
char *
|
- The size of the string including the terminating 0 (Q_UINT32)
- The string bytes including the terminating 0
The null string is represented as (Q_UINT32) 0.
|
TQBitArray
|
- The array size (Q_UINT32)
- The array bits, i.e. (size + 7)/8 bytes
|
TQBrush
|
- The brush style (Q_UINT8)
- The brush color (TQColor)
- If style is CustomPattern, the brush pixmap (TQPixmap)
|
TQByteArray
|
- The array size (Q_UINT32)
- The array bytes, i.e. size bytes
|
TQCString
|
- The size of the string including the terminating 0 (Q_UINT32)
- The string bytes including the terminating 0
The null string is represented as (Q_UINT32) 0.
|
TQColor
| - RGB value serialized as a Q_UINT32
|
TQColorGroup
|
- foreground (TQBrush)
- button (TQBrush)
- light (TQBrush)
- midLight (TQBrush)
- dark (TQBrush)
- mid (TQBrush)
- text (TQBrush)
- brightText (TQBrush)
- ButtonText (TQBrush)
- base (TQBrush)
- background (TQBrush)
- shadow (TQBrush)
- highlight (TQBrush)
- highlightedText (TQBrush)
|
TQCursor
|
- Shape id (Q_INT16)
- If shape is BitmapCursor: The bitmap (TQPixmap), mask (TQPixmap) and hot spot (TQPoint)
|
TQDate
|
|
TQDateTime
|
|
TQFont
|
- The family (TQCString)
- The point size (Q_INT16)
- The style hint (Q_UINT8)
- The char set (Q_UINT8)
- The weight (Q_UINT8)
- The font bits (Q_UINT8)
|
TQImage
|
- 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 TQBuffer (using TQImageIO) and stream
that.
|
TQMap
|
- The number of items (Q_UINT32)
- For all items, the key and value
|
TQPalette
|
- active (TQColorGroup)
- disabled (TQColorGroup)
- inactive (TQColorGroup)
|
TQPen
|
- The pen styles (Q_UINT8)
- The pen width (Q_UINT8)
- The pen color (TQColor)
|
TQPicture
|
- The size of the picture data (Q_UINT32)
- The raw bytes of picture data (char)
|
TQPixmap
|
|
TQPoint
|
- The x coordinate (Q_INT32)
- The y coordinate (Q_INT32)
|
TQPointArray
|
- The array size (Q_UINT32)
- The array points (TQPoint)
|
TQRect
|
- left (Q_INT32)
- top (Q_INT32)
- right (Q_INT32)
- bottom (Q_INT32)
|
TQRegion
|
- The size of the data, i.e. 8 + 16 * (number of rectangles) (Q_UINT32)
- TQRGN_RECTS (Q_INT32)
- The number of rectangles (Q_UINT32)
- The rectangles in sequential order (TQRect)
|
TQSize
|
- width (Q_INT32)
- height (Q_INT32)
|
TQString
|
- If the string is null: 0xffffffff (Q_UINT32)
otherwise: The string length (Q_UINT32) followed by the
data in UTF-16
|
TQTime
|
- Milliseconds since midnight (Q_UINT32)
|
TQValueList
|
- The number of list elements (Q_UINT32)
- All the elements in sequential order
|
TQVariant
|
- The type of the data (Q_UINT32)
- The data of the specified type
|
TQWMatrix
|
- m11 (double)
- m12 (double)
- m21 (double)
- m22 (double)
- dx (double)
- dy (double)
|