diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-26 02:40:17 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-26 02:44:10 (GMT) |
commit | 8e5df27bbb61951a8ccce8b2a7c5af461966329c (patch) | |
tree | a134026bd9339e0e9b17341b1b222a7e3696fd02 /doc/src/files-and-resources | |
parent | 760235ef89fb72ce2559b8f0dbd267fe04fab2da (diff) | |
download | Qt-8e5df27bbb61951a8ccce8b2a7c5af461966329c.zip Qt-8e5df27bbb61951a8ccce8b2a7c5af461966329c.tar.gz Qt-8e5df27bbb61951a8ccce8b2a7c5af461966329c.tar.bz2 |
Add QEasingCurve to datastream format docs
Diffstat (limited to 'doc/src/files-and-resources')
-rw-r--r-- | doc/src/files-and-resources/datastreamformat.qdoc | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/doc/src/files-and-resources/datastreamformat.qdoc b/doc/src/files-and-resources/datastreamformat.qdoc index 1c2d887..bab2c2c 100644 --- a/doc/src/files-and-resources/datastreamformat.qdoc +++ b/doc/src/files-and-resources/datastreamformat.qdoc @@ -47,7 +47,7 @@ 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. The format described below is - \l{QDataStream::setVersion()}{version 8}. + \l{QDataStream::setVersion()}{version 12}. It is always best to cast integers to a Qt integer type, such as qint16 or quint32, when reading and writing. This ensures that @@ -57,9 +57,9 @@ \table \row \o bool - \o \list - \o boolean - \endlist + \o \list + \o boolean + \endlist \row \o qint8 \o \list \o signed byte @@ -145,6 +145,17 @@ \o Time (QTime) \o 0 for Qt::LocalTime, 1 for Qt::UTC (quint8) \endlist + \row \o QEasingCurve + \o \list + \o type (quint8) + \o func (quint64) + \o hasConfig (bool) + \o If hasConfig is true then these fields follow: + \o list + \o period (double) + \o amplitude (double) + \o overshoot (double) + \endlist \row \o QFont \o \list \o The family (QString) |