diff options
Diffstat (limited to 'doc/datastreamformat.doc')
-rw-r--r-- | doc/datastreamformat.doc | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/doc/datastreamformat.doc b/doc/datastreamformat.doc index fee351739..8de520ce6 100644 --- a/doc/datastreamformat.doc +++ b/doc/datastreamformat.doc @@ -49,27 +49,27 @@ 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 Q_INT8 +\row \i TQ_INT8 \i \list \i signed byte \endlist -\row \i Q_INT16 +\row \i TQ_INT16 \i \list \i signed 16 bit integer \endlist -\row \i Q_INT32 +\row \i TQ_INT32 \i \list \i signed 32 bit integer \endlist -\row \i Q_UINT8 +\row \i TQ_UINT8 \i \list \i unsigned byte \endlist -\row \i Q_UINT16 +\row \i TQ_UINT16 \i \list \i unsigned 16 bit integer \endlist -\row \i Q_UINT32 +\row \i TQ_UINT32 \i \list \i unsigned 32 bit integer \endlist @@ -83,34 +83,34 @@ and to read back into the same Qt integer type when reading. \endlist \row \i char * \i \list - \i The size of the string including the terminating 0 (Q_UINT32) + \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 {(Q_UINT32) 0}. + The null string is represented as \c {(TQ_UINT32) 0}. \row \i QBitArray \i \list - \i The array size (Q_UINT32) + \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 (Q_UINT8) + \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 (Q_UINT32) + \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 (Q_UINT32) + \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 {(Q_UINT32) 0}. + The null string is represented as \c {(TQ_UINT32) 0}. \row \i \l QColor - \i \list \i RGB value serialized as a Q_UINT32 \endlist + \i \list \i RGB value serialized as a TQ_UINT32 \endlist \row \i QColorGroup \i \list \i foreground (QBrush) @@ -130,12 +130,12 @@ and to read back into the same Qt integer type when reading. \endlist \row \i QCursor \i \list - \i Shape id (Q_INT16) + \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 (Q_UINT32) + \i Julian day (TQ_UINT32) \endlist \row \i QDateTime \i \list @@ -145,11 +145,11 @@ and to read back into the same Qt integer type when reading. \row \i QFont \i \list \i The family (QCString) - \i The point size (Q_INT16) - \i The style hint (Q_UINT8) - \i The char set (Q_UINT8) - \i The weight (Q_UINT8) - \i The font bits (Q_UINT8) + \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 @@ -161,7 +161,7 @@ and to read back into the same Qt integer type when reading. \endlist \row \i QMap \i \list - \i The number of items (Q_UINT32) + \i The number of items (TQ_UINT32) \i For all items, the key and value \endlist \row \i QPalette @@ -172,13 +172,13 @@ and to read back into the same Qt integer type when reading. \endlist \row \i QPen \i \list - \i The pen styles (Q_UINT8) - \i The pen width (Q_UINT8) + \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 (Q_UINT32) + \i The size of the picture data (TQ_UINT32) \i The raw bytes of picture data (char) \endlist \row \i QPixmap @@ -187,51 +187,51 @@ and to read back into the same Qt integer type when reading. \endlist \row \i QPoint \i \list - \i The x coordinate (Q_INT32) - \i The y coordinate (Q_INT32) + \i The x coordinate (TQ_INT32) + \i The y coordinate (TQ_INT32) \endlist \row \i QPointArray \i \list - \i The array size (Q_UINT32) + \i The array size (TQ_UINT32) \i The array points (QPoint) \endlist \row \i QRect \i \list - \i left (Q_INT32) - \i top (Q_INT32) - \i right (Q_INT32) - \i bottom (Q_INT32) + \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) (Q_UINT32) - \i QRGN_RECTS (Q_INT32) - \i The number of rectangles (Q_UINT32) + \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 (Q_INT32) - \i height (Q_INT32) + \i width (TQ_INT32) + \i height (TQ_INT32) \endlist \row \i QString \i \list - \i If the string is null: 0xffffffff (Q_UINT32)<br> - otherwise: The string length (Q_UINT32) followed by the + \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 (Q_UINT32) + \i Milliseconds since midnight (TQ_UINT32) \endlist \row \i QValueList \i \list - \i The number of list elements (Q_UINT32) + \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 (Q_UINT32) + \i The type of the data (TQ_UINT32) \i The data of the specified type \endlist \row \i QWMatrix |