From 6dec101d43dcbd4195c47d54bd388db1a8d7230e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 17 Jun 2012 17:28:28 -0500 Subject: Automated update from Qt3 --- doc/html/datastreamformat.html | 84 +++++++++++++++++++++--------------------- 1 file changed, 42 insertions(+), 42 deletions(-) (limited to 'doc/html/datastreamformat.html') diff --git a/doc/html/datastreamformat.html b/doc/html/datastreamformat.html index 577fcc54c..a0ed8cf20 100644 --- a/doc/html/datastreamformat.html +++ b/doc/html/datastreamformat.html @@ -39,27 +39,27 @@ and how they are represented.

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

-
Q_INT8 +
TQ_INT8
  • signed byte
-
Q_INT16 +
TQ_INT16
  • signed 16 bit integer
-
Q_INT32 +
TQ_INT32
  • signed 32 bit integer
-
Q_UINT8 +
TQ_UINT8
  • unsigned byte
-
Q_UINT16 +
TQ_UINT16
  • unsigned 16 bit integer
-
Q_UINT32 +
TQ_UINT32
  • unsigned 32 bit integer
@@ -73,34 +73,34 @@ and to read back into the same TQt integer type when reading.
char *
    -
  • The size of the string including the terminating 0 (Q_UINT32) +
  • The size of the string including the terminating 0 (TQ_UINT32)
  • The string bytes including the terminating 0
-The null string is represented as (Q_UINT32) 0. +The null string is represented as (TQ_UINT32) 0.
TQBitArray
    -
  • The array size (Q_UINT32) +
  • The array size (TQ_UINT32)
  • The array bits, i.e. (size + 7)/8 bytes
TQBrush
    -
  • The brush style (Q_UINT8) +
  • The brush style (TQ_UINT8)
  • The brush color (TQColor)
  • If style is CustomPattern, the brush pixmap (TQPixmap)
TQByteArray
    -
  • The array size (Q_UINT32) +
  • The array size (TQ_UINT32)
  • The array bytes, i.e. size bytes
TQCString
    -
  • The size of the string including the terminating 0 (Q_UINT32) +
  • The size of the string including the terminating 0 (TQ_UINT32)
  • The string bytes including the terminating 0
-The null string is represented as (Q_UINT32) 0. +The null string is represented as (TQ_UINT32) 0.
TQColor -
  • RGB value serialized as a Q_UINT32
+
  • RGB value serialized as a TQ_UINT32
TQColorGroup
  • foreground (TQBrush) @@ -120,12 +120,12 @@ The null string is represented as (Q_UINT32) 0.
TQCursor
    -
  • Shape id (Q_INT16) +
  • Shape id (TQ_INT16)
  • If shape is BitmapCursor: The bitmap (TQPixmap), mask (TQPixmap) and hot spot (TQPoint)
TQDate
    -
  • Julian day (Q_UINT32) +
  • Julian day (TQ_UINT32)
TQDateTime
    @@ -135,11 +135,11 @@ The null string is represented as (Q_UINT32) 0.
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) +
  • The point size (TQ_INT16) +
  • The style hint (TQ_UINT8) +
  • The char set (TQ_UINT8) +
  • The weight (TQ_UINT8) +
  • The font bits (TQ_UINT8)
TQImage
    @@ -151,7 +151,7 @@ that.
TQMap
    -
  • The number of items (Q_UINT32) +
  • The number of items (TQ_UINT32)
  • For all items, the key and value
TQPalette @@ -162,13 +162,13 @@ that.
TQPen
    -
  • The pen styles (Q_UINT8) -
  • The pen width (Q_UINT8) +
  • The pen styles (TQ_UINT8) +
  • The pen width (TQ_UINT8)
  • The pen color (TQColor)
TQPicture
    -
  • The size of the picture data (Q_UINT32) +
  • The size of the picture data (TQ_UINT32)
  • The raw bytes of picture data (char)
TQPixmap @@ -177,51 +177,51 @@ that.
TQPoint
    -
  • The x coordinate (Q_INT32) -
  • The y coordinate (Q_INT32) +
  • The x coordinate (TQ_INT32) +
  • The y coordinate (TQ_INT32)
TQPointArray
    -
  • The array size (Q_UINT32) +
  • The array size (TQ_UINT32)
  • The array points (TQPoint)
TQRect
    -
  • left (Q_INT32) -
  • top (Q_INT32) -
  • right (Q_INT32) -
  • bottom (Q_INT32) +
  • left (TQ_INT32) +
  • top (TQ_INT32) +
  • right (TQ_INT32) +
  • bottom (TQ_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 size of the data, i.e. 8 + 16 * (number of rectangles) (TQ_UINT32) +
  • TQRGN_RECTS (TQ_INT32) +
  • The number of rectangles (TQ_UINT32)
  • The rectangles in sequential order (TQRect)
TQSize
    -
  • width (Q_INT32) -
  • height (Q_INT32) +
  • width (TQ_INT32) +
  • height (TQ_INT32)
TQString
    -
  • If the string is null: 0xffffffff (Q_UINT32)
    -otherwise: The string length (Q_UINT32) followed by the +
  • If the string is null: 0xffffffff (TQ_UINT32)
    +otherwise: The string length (TQ_UINT32) followed by the data in UTF-16
TQTime
    -
  • Milliseconds since midnight (Q_UINT32) +
  • Milliseconds since midnight (TQ_UINT32)
TQValueList
    -
  • The number of list elements (Q_UINT32) +
  • The number of list elements (TQ_UINT32)
  • All the elements in sequential order
TQVariant
    -
  • The type of the data (Q_UINT32) +
  • The type of the data (TQ_UINT32)
  • The data of the specified type
TQWMatrix -- cgit v1.2.1