/**************************************************************************** ** ** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** This file may be used under the terms of the GNU General Public ** License version 2.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of ** this file. 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. ** ** In addition, as a special exception, Trolltech gives you certain ** additional rights. These rights are described in the Trolltech GPL ** Exception version 1.0, which can be found at ** http://www.trolltech.com/products/qt/gplexception/ and in the file ** GPL_EXCEPTION.txt in this package. ** ** In addition, as a special exception, Trolltech, as the sole copyright ** holder for Qt Designer, grants users of the Qt/Eclipse Integration ** plug-in the right for the Qt/Eclipse Integration to link to ** functionality provided by Qt Designer and its related libraries. ** ** Trolltech reserves all rights not expressly granted herein. ** ** Trolltech ASA (c) 2007 ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ****************************************************************************/ #include "qvariant.h" #include "qbitarray.h" #include "qbytearray.h" #include "qdatastream.h" #include "qdebug.h" #include "qmap.h" #include "qdatetime.h" #include "qlist.h" #include "qstring.h" #include "qstringlist.h" #include "qurl.h" #include "qlocale.h" #include "private/qvariant_p.h" #ifndef QT_NO_GEOM_VARIANT #include "qsize.h" #include "qpoint.h" #include "qrect.h" #include "qline.h" #endif #include #ifndef DBL_DIG # define DBL_DIG 10 #endif #ifndef FLT_DIG # define FLT_DIG 6 #endif static const void *constData(const QVariant::Private &d) { switch (d.type) { case QVariant::Int: return &d.data.i; case QVariant::UInt: return &d.data.u; case QVariant::Bool: return &d.data.b; case QVariant::LongLong: return &d.data.ll; case QVariant::ULongLong: return &d.data.ull; case QVariant::Double: return &d.data.d; default: return d.is_shared ? d.data.shared->ptr : reinterpret_cast(&d.data.ptr); } } static void construct(QVariant::Private *x, const void *copy) { x->is_shared = false; switch (x->type) { case QVariant::String: v_construct(x, copy); break; case QVariant::Char: v_construct(x, copy); break; case QVariant::StringList: v_construct(x, copy); break; case QVariant::Map: v_construct(x, copy); break; case QVariant::List: v_construct(x, copy); break; case QVariant::Date: v_construct(x, copy); break; case QVariant::Time: v_construct(x, copy); break; case QVariant::DateTime: v_construct(x, copy); break; case QVariant::ByteArray: v_construct(x, copy); break; case QVariant::BitArray: v_construct(x, copy); break; #ifndef QT_NO_GEOM_VARIANT case QVariant::Size: v_construct(x, copy); break; case QVariant::SizeF: v_construct(x, copy); break; case QVariant::Rect: v_construct(x, copy); break; case QVariant::LineF: v_construct(x, copy); break; case QVariant::Line: v_construct(x, copy); break; case QVariant::RectF: v_construct(x, copy); break; case QVariant::Point: v_construct(x, copy); break; case QVariant::PointF: v_construct(x, copy); break; #endif case QVariant::Url: v_construct(x, copy); break; case QVariant::Locale: v_construct(x, copy); break; #ifndef QT_NO_REGEXP case QVariant::RegExp: v_construct(x, copy); break; #endif case QVariant::Int: x->data.i = copy ? *static_cast(copy) : 0; break; case QVariant::UInt: x->data.u = copy ? *static_cast(copy) : 0u; break; case QVariant::Bool: x->data.b = copy ? *static_cast(copy) : false; break; case QVariant::Double: x->data.d = copy ? *static_cast(copy) : 0.0; break; case QVariant::LongLong: x->data.ll = copy ? *static_cast(copy) : Q_INT64_C(0); break; case QVariant::ULongLong: x->data.ull = copy ? *static_cast(copy) : Q_UINT64_C(0); break; case QVariant::Invalid: case QVariant::UserType: break; default: x->is_shared = true; x->data.shared = new QVariant::PrivateShared(QMetaType::construct(x->type, copy)); if (!x->data.shared->ptr) Q_ASSERT_X(x->type > 62, "QVariant::construct()", "Unknown datatype"); break; } x->is_null = !copy; } static void clear(QVariant::Private *d) { switch (d->type) { case QVariant::String: v_clear(d); break; case QVariant::Char: v_clear(d); break; case QVariant::StringList: v_clear(d); break; case QVariant::Map: v_clear(d); break; case QVariant::List: v_clear(d); break; case QVariant::Date: v_clear(d); break; case QVariant::Time: v_clear(d); break; case QVariant::DateTime: v_clear(d); break; case QVariant::ByteArray: v_clear(d); break; case QVariant::BitArray: v_clear(d); break; #ifndef QT_NO_GEOM_VARIANT case QVariant::Point: v_clear(d); break; case QVariant::PointF: v_clear(d); break; case QVariant::Size: v_clear(d); break; case QVariant::SizeF: v_clear(d); break; case QVariant::Rect: v_clear(d); break; case QVariant::LineF: v_clear(d); break; case QVariant::Line: v_clear(d); break; case QVariant::RectF: v_clear(d); break; #endif case QVariant::Url: v_clear(d); break; case QVariant::Locale: v_clear(d); break; #ifndef QT_NO_REGEXP case QVariant::RegExp: v_clear(d); break; #endif case QVariant::LongLong: case QVariant::ULongLong: case QVariant::Double: break; case QVariant::Invalid: case QVariant::UserType: case QVariant::Int: case QVariant::UInt: case QVariant::Bool: break; default: QMetaType::destroy(d->type, d->data.shared->ptr); delete d->data.shared; break; } d->type = QVariant::Invalid; d->is_null = true; d->is_shared = false; } static bool isNull(const QVariant::Private *d) { switch(d->type) { case QVariant::String: return v_cast(d)->isNull(); case QVariant::Char: return v_cast(d)->isNull(); case QVariant::Date: return v_cast(d)->isNull(); case QVariant::Time: return v_cast(d)->isNull(); case QVariant::DateTime: return v_cast(d)->isNull(); case QVariant::ByteArray: return v_cast(d)->isNull(); case QVariant::BitArray: return v_cast(d)->isNull(); #ifndef QT_NO_GEOM_VARIANT case QVariant::Size: return v_cast(d)->isNull(); case QVariant::SizeF: return v_cast(d)->isNull(); case QVariant::Rect: return v_cast(d)->isNull(); case QVariant::Line: return v_cast(d)->isNull(); case QVariant::LineF: return v_cast(d)->isNull(); case QVariant::RectF: return v_cast(d)->isNull(); case QVariant::Point: return v_cast(d)->isNull(); case QVariant::PointF: return v_cast(d)->isNull(); #endif case QVariant::Url: case QVariant::Locale: case QVariant::RegExp: case QVariant::StringList: case QVariant::Map: case QVariant::List: case QVariant::Invalid: case QVariant::UserType: case QVariant::Int: case QVariant::UInt: case QVariant::LongLong: case QVariant::ULongLong: case QVariant::Bool: case QVariant::Double: break; } return d->is_null; } static bool compare(const QVariant::Private *a, const QVariant::Private *b) { switch(a->type) { case QVariant::List: return *v_cast(a) == *v_cast(b); case QVariant::Map: { const QVariantMap *m1 = v_cast(a); const QVariantMap *m2 = v_cast(b); if (m1->count() != m2->count()) return false; QVariantMap::ConstIterator it = m1->constBegin(); QVariantMap::ConstIterator it2 = m2->constBegin(); while (it != m1->constEnd()) { if (*it != *it2) return false; ++it; ++it2; } return true; } case QVariant::String: return *v_cast(a) == *v_cast(b); case QVariant::Char: return *v_cast(a) == *v_cast(b); case QVariant::StringList: return *v_cast(a) == *v_cast(b); #ifndef QT_NO_GEOM_VARIANT case QVariant::Size: return *v_cast(a) == *v_cast(b); case QVariant::SizeF: return *v_cast(a) == *v_cast(b); case QVariant::Rect: return *v_cast(a) == *v_cast(b); case QVariant::Line: return *v_cast(a) == *v_cast(b); case QVariant::LineF: return *v_cast(a) == *v_cast(b); case QVariant::RectF: return *v_cast(a) == *v_cast(b); case QVariant::Point: return *v_cast(a) == *v_cast(b); case QVariant::PointF: return *v_cast(a) == *v_cast(b); #endif case QVariant::Url: return *v_cast(a) == *v_cast(b); case QVariant::Locale: return *v_cast(a) == *v_cast(b); #ifndef QT_NO_REGEXP case QVariant::RegExp: return *v_cast(a) == *v_cast(b); #endif case QVariant::Int: return a->data.i == b->data.i; case QVariant::UInt: return a->data.u == b->data.u; case QVariant::LongLong: return a->data.ll == b->data.ll; case QVariant::ULongLong: return a->data.ull == b->data.ull; case QVariant::Bool: return a->data.b == b->data.b; case QVariant::Double: return a->data.d == b->data.d; case QVariant::Date: return *v_cast(a) == *v_cast(b); case QVariant::Time: return *v_cast(a) == *v_cast(b); case QVariant::DateTime: return *v_cast(a) == *v_cast(b); case QVariant::ByteArray: return *v_cast(a) == *v_cast(b); case QVariant::BitArray: return *v_cast(a) == *v_cast(b); case QVariant::Invalid: return true; default: break; } if (!QMetaType::isRegistered(a->type)) qFatal("QVariant::compare: type %d unknown to QVariant.", a->type); /* The reason we cannot place this test in a case branch above for the types * QMetaType::VoidStar, QMetaType::QObjectStar and so forth, is that it wouldn't include * user defined pointer types. */ const char *const typeName = QMetaType::typeName(a->type); if (typeName[qstrlen(typeName) - 1] == '*') return *static_cast(a->data.shared->ptr) == *static_cast(b->data.shared->ptr); return a->data.shared->ptr == b->data.shared->ptr; } /*! \internal */ static qlonglong qMetaTypeNumber(const QVariant::Private *d) { switch (d->type) { case QMetaType::Int: return d->data.i; case QMetaType::LongLong: return d->data.ll; case QMetaType::Char: return qlonglong(*static_cast(d->data.shared->ptr)); case QMetaType::Short: return qlonglong(*static_cast(d->data.shared->ptr)); case QMetaType::Long: return qlonglong(*static_cast(d->data.shared->ptr)); case QMetaType::Float: return qRound64(*static_cast(d->data.shared->ptr)); case QVariant::Double: return qRound64(d->data.d); } Q_ASSERT(false); return 0; } static qulonglong qMetaTypeUNumber(const QVariant::Private *d) { switch (d->type) { case QVariant::UInt: return d->data.u; case QVariant::ULongLong: return d->data.ull; case QMetaType::UChar: return qulonglong(*static_cast(d->data.shared->ptr)); case QMetaType::UShort: return qulonglong(*static_cast(d->data.shared->ptr)); case QMetaType::ULong: return qulonglong(*static_cast(d->data.shared->ptr)); } Q_ASSERT(false); return 0; } static qlonglong qConvertToNumber(const QVariant::Private *d, bool *ok) { *ok = true; switch (uint(d->type)) { case QVariant::String: return v_cast(d)->toLongLong(ok); case QVariant::Char: return v_cast(d)->unicode(); case QVariant::ByteArray: return v_cast(d)->toLongLong(ok); case QVariant::Bool: return qlonglong(d->data.b); case QVariant::Double: case QVariant::Int: case QMetaType::Char: case QMetaType::Short: case QMetaType::Long: case QMetaType::Float: case QMetaType::LongLong: return qMetaTypeNumber(d); case QVariant::ULongLong: case QVariant::UInt: case QMetaType::UChar: case QMetaType::UShort: case QMetaType::ULong: return qlonglong(qMetaTypeUNumber(d)); } *ok = false; return Q_INT64_C(0); } static qulonglong qConvertToUnsignedNumber(const QVariant::Private *d, bool *ok) { *ok = true; switch (uint(d->type)) { case QVariant::String: return v_cast(d)->toULongLong(ok); case QVariant::Char: return v_cast(d)->unicode(); case QVariant::ByteArray: return v_cast(d)->toULongLong(ok); case QVariant::Bool: return qulonglong(d->data.b); case QVariant::Double: case QVariant::Int: case QMetaType::Char: case QMetaType::Short: case QMetaType::Long: case QMetaType::Float: case QMetaType::LongLong: return qulonglong(qMetaTypeNumber(d)); case QVariant::ULongLong: case QVariant::UInt: case QMetaType::UChar: case QMetaType::UShort: case QMetaType::ULong: return qMetaTypeUNumber(d); } *ok = false; return Q_UINT64_C(0); } /*! \internal Converts \a d to type \a t, which is placed in \a result. */ static bool convert(const QVariant::Private *d, QVariant::Type t, void *result, bool *ok) { Q_ASSERT(d->type != uint(t)); bool dummy; if (!ok) ok = &dummy; switch (uint(t)) { case QVariant::String: { QString *str = static_cast(result); switch (d->type) { case QVariant::Char: *str = QString(*v_cast(d)); break; case QMetaType::Char: case QMetaType::UChar: *str = QChar::fromAscii(*static_cast(d->data.shared->ptr)); break; case QMetaType::Short: case QMetaType::Long: case QVariant::Int: case QVariant::LongLong: *str = QString::number(qMetaTypeNumber(d)); break; case QVariant::UInt: case QVariant::ULongLong: case QMetaType::UShort: case QMetaType::ULong: *str = QString::number(qMetaTypeUNumber(d)); break; case QMetaType::Float: *str = QString::number(*static_cast(d->data.shared->ptr), 'g', FLT_DIG); break; case QVariant::Double: *str = QString::number(d->data.d, 'g', DBL_DIG); break; #if !defined(QT_NO_DATESTRING) case QVariant::Date: *str = v_cast(d)->toString(Qt::ISODate); break; case QVariant::Time: *str = v_cast(d)->toString(Qt::ISODate); break; case QVariant::DateTime: *str = v_cast(d)->toString(Qt::ISODate); break; #endif case QVariant::Bool: *str = QLatin1String(d->data.b ? "true" : "false"); break; case QVariant::ByteArray: *str = QString::fromAscii(v_cast(d)->constData()); break; case QVariant::StringList: if (v_cast(d)->count() == 1) *str = v_cast(d)->at(0); break; default: return false; } break; } case QVariant::Char: { QChar *c = static_cast(result); switch (d->type) { case QVariant::Int: case QVariant::LongLong: case QMetaType::Char: case QMetaType::Short: case QMetaType::Long: case QMetaType::Float: *c = QChar(ushort(qMetaTypeNumber(d))); break; case QVariant::UInt: case QVariant::ULongLong: case QMetaType::UChar: case QMetaType::UShort: case QMetaType::ULong: *c = QChar(ushort(qMetaTypeUNumber(d))); break; default: return false; } break; } #ifndef QT_NO_GEOM_VARIANT case QVariant::Size: { QSize *s = static_cast(result); switch (d->type) { case QVariant::SizeF: *s = v_cast(d)->toSize(); break; default: return false; } break; } case QVariant::SizeF: { QSizeF *s = static_cast(result); switch (d->type) { case QVariant::Size: *s = QSizeF(*(v_cast(d))); break; default: return false; } break; } case QVariant::Line: { QLine *s = static_cast(result); switch (d->type) { case QVariant::LineF: *s = v_cast(d)->toLine(); break; default: return false; } break; } case QVariant::LineF: { QLineF *s = static_cast(result); switch (d->type) { case QVariant::Line: *s = QLineF(*(v_cast(d))); break; default: return false; } break; } #endif case QVariant::StringList: if (d->type == QVariant::List) { QStringList *slst = static_cast(result); const QVariantList *list = v_cast(d); for (int i = 0; i < list->size(); ++i) slst->append(list->at(i).toString()); } else if (d->type == QVariant::String) { QStringList *slst = static_cast(result); *slst = QStringList(*v_cast(d)); } else { return false; } break; case QVariant::Date: { QDate *dt = static_cast(result); if (d->type == QVariant::DateTime) *dt = v_cast(d)->date(); #ifndef QT_NO_DATESTRING else if (d->type == QVariant::String) *dt = QDate::fromString(*v_cast(d), Qt::ISODate); #endif else return false; break; } case QVariant::Time: { QTime *t = static_cast(result); switch (d->type) { case QVariant::DateTime: *t = v_cast(d)->time(); break; #ifndef QT_NO_DATESTRING case QVariant::String: *t = QTime::fromString(*v_cast(d), Qt::ISODate); break; #endif default: return false; } break; } case QVariant::DateTime: { QDateTime *dt = static_cast(result); switch (d->type) { #ifndef QT_NO_DATESTRING case QVariant::String: *dt = QDateTime::fromString(*v_cast(d), Qt::ISODate); break; #endif case QVariant::Date: *dt = QDateTime(*v_cast(d)); break; default: return false; } break; } case QVariant::ByteArray: { QByteArray *ba = static_cast(result); switch (d->type) { case QVariant::String: *ba = v_cast(d)->toAscii(); break; case QVariant::Double: *ba = QByteArray::number(d->data.d, 'g', DBL_DIG); break; case QMetaType::Float: *ba = QByteArray::number(*static_cast(d->data.shared->ptr), 'g', FLT_DIG); break; case QMetaType::Char: case QMetaType::UChar: *ba = QByteArray(1, *static_cast(d->data.shared->ptr)); break; case QVariant::Int: case QVariant::LongLong: case QMetaType::Short: case QMetaType::Long: *ba = QByteArray::number(qMetaTypeNumber(d)); break; case QVariant::UInt: case QVariant::ULongLong: case QMetaType::UShort: case QMetaType::ULong: *ba = QByteArray::number(qMetaTypeUNumber(d)); break; default: return false; } } break; case QMetaType::Short: *static_cast(result) = short(qConvertToNumber(d, ok)); return *ok; case QMetaType::Long: *static_cast(result) = long(qConvertToNumber(d, ok)); return *ok; case QMetaType::UShort: *static_cast(result) = ushort(qConvertToUnsignedNumber(d, ok)); return *ok; case QMetaType::ULong: *static_cast(result) = ulong(qConvertToUnsignedNumber(d, ok)); return *ok; case QVariant::Int: *static_cast(result) = int(qConvertToNumber(d, ok)); return *ok; case QVariant::UInt: *static_cast(result) = uint(qConvertToUnsignedNumber(d, ok)); return *ok; case QVariant::LongLong: *static_cast(result) = qConvertToNumber(d, ok); return *ok; case QVariant::ULongLong: { *static_cast(result) = qConvertToUnsignedNumber(d, ok); return *ok; } case QMetaType::UChar: { *static_cast(result) = qConvertToUnsignedNumber(d, ok); return *ok; } case QVariant::Bool: { bool *b = static_cast(result); switch(d->type) { case QVariant::String: { QString str = v_cast(d)->toLower(); *b = !(str == QLatin1String("0") || str == QLatin1String("false") || str.isEmpty()); break; } case QVariant::Char: *b = !v_cast(d)->isNull(); break; case QVariant::Double: case QVariant::Int: case QVariant::LongLong: case QMetaType::Char: case QMetaType::Short: case QMetaType::Long: case QMetaType::Float: *b = qMetaTypeNumber(d) != Q_INT64_C(0); break; case QVariant::UInt: case QVariant::ULongLong: case QMetaType::UChar: case QMetaType::UShort: case QMetaType::ULong: *b = qMetaTypeUNumber(d) != Q_UINT64_C(0); break; default: *b = false; return false; } break; } case QVariant::Double: { double *f = static_cast(result); switch (d->type) { case QVariant::String: *f = v_cast(d)->toDouble(ok); break; case QVariant::ByteArray: *f = v_cast(d)->toDouble(ok); break; case QVariant::Bool: *f = double(d->data.b); break; case QMetaType::Float: *f = *static_cast(d->data.shared->ptr); break; case QVariant::LongLong: case QVariant::Int: case QMetaType::Char: case QMetaType::Short: case QMetaType::Long: *f = double(qMetaTypeNumber(d)); break; case QVariant::UInt: case QVariant::ULongLong: case QMetaType::UChar: case QMetaType::UShort: case QMetaType::ULong: #if defined(Q_CC_MSVC) && !defined(Q_CC_MSVC_NET) *f = (double)(qlonglong)qMetaTypeUNumber(d); #else *f = double(qMetaTypeUNumber(d)); #endif break; default: *f = 0.0; return false; } break; } case QMetaType::Float: { float *f = static_cast(result); switch (d->type) { case QVariant::String: *f = float(v_cast(d)->toDouble(ok)); break; case QVariant::ByteArray: *f = float(v_cast(d)->toDouble(ok)); break; case QVariant::Bool: *f = float(d->data.b); break; case QVariant::Double: *f = float(d->data.d); break; case QVariant::LongLong: case QVariant::Int: case QMetaType::Char: case QMetaType::Short: case QMetaType::Long: *f = float(qMetaTypeNumber(d)); break; case QVariant::UInt: case QVariant::ULongLong: case QMetaType::UChar: case QMetaType::UShort: case QMetaType::ULong: #if defined(Q_CC_MSVC) && !defined(Q_CC_MSVC_NET) *f = (float)(qlonglong)qMetaTypeUNumber(d); #else *f = float(qMetaTypeUNumber(d)); #endif break; default: *f = 0.0f; return false; } break; } case QVariant::List: if (d->type == QVariant::StringList) { QVariantList *lst = static_cast(result); const QStringList *slist = v_cast(d); for (int i = 0; i < slist->size(); ++i) lst->append(QVariant(slist->at(i))); } else if (qstrcmp(QMetaType::typeName(d->type), "QList") == 0) { *static_cast(result) = *static_cast *>(d->data.shared->ptr); } else { return false; } break; case QVariant::Map: if (qstrcmp(QMetaType::typeName(d->type), "QMap") == 0) { *static_cast(result) = *static_cast *>(d->data.shared->ptr); } else { return false; } break; #ifndef QT_NO_GEOM_VARIANT case QVariant::Rect: if (d->type == QVariant::RectF) *static_cast(result) = (v_cast(d))->toRect(); else return false; break; case QVariant::RectF: if (d->type == QVariant::Rect) *static_cast(result) = *v_cast(d); else return false; break; case QVariant::PointF: if (d->type == QVariant::Point) *static_cast(result) = *v_cast(d); else return false; break; case QVariant::Point: if (d->type == QVariant::PointF) *static_cast(result) = (v_cast(d))->toPoint(); else return false; break; case QMetaType::Char: { *static_cast(result) = qint8(qConvertToNumber(d, ok)); return *ok; } #endif default: return false; } return true; } #if !defined(QT_NO_DEBUG_STREAM) && !defined(Q_BROKEN_DEBUG_STREAM) static void streamDebug(QDebug dbg, const QVariant &v) { switch (v.type()) { case QVariant::Int: dbg.nospace() << v.toInt(); break; case QVariant::UInt: dbg.nospace() << v.toUInt(); break; case QVariant::LongLong: dbg.nospace() << v.toLongLong(); break; case QVariant::ULongLong: dbg.nospace() << v.toULongLong(); break; case QVariant::Double: dbg.nospace() << v.toDouble(); break; case QVariant::Bool: dbg.nospace() << v.toBool(); break; case QVariant::String: dbg.nospace() << v.toString(); break; case QVariant::Char: dbg.nospace() << v.toChar(); break; case QVariant::StringList: dbg.nospace() << v.toStringList(); break; case QVariant::Map: dbg.nospace() << v.toMap(); break; case QVariant::List: dbg.nospace() << v.toList(); break; case QVariant::Date: dbg.nospace() << v.toDate(); break; case QVariant::Time: dbg.nospace() << v.toTime(); break; case QVariant::DateTime: dbg.nospace() << v.toDateTime(); break; case QVariant::ByteArray: dbg.nospace() << v.toByteArray(); break; case QVariant::Url: dbg.nospace() << v.toUrl(); break; #ifndef QT_NO_GEOM_VARIANT case QVariant::Point: dbg.nospace() << v.toPoint(); break; case QVariant::PointF: dbg.nospace() << v.toPointF(); break; case QVariant::Rect: dbg.nospace() << v.toRect(); break; case QVariant::Size: dbg.nospace() << v.toSize(); break; case QVariant::SizeF: dbg.nospace() << v.toSizeF(); break; case QVariant::Line: dbg.nospace() << v.toLine(); break; case QVariant::LineF: dbg.nospace() << v.toLineF(); break; case QVariant::RectF: dbg.nospace() << v.toRectF(); break; #endif case QVariant::BitArray: //dbg.nospace() << v.toBitArray(); break; default: break; } } #endif const QVariant::Handler qt_kernel_variant_handler = { construct, clear, isNull, #ifndef QT_NO_DATASTREAM 0, 0, #endif compare, convert, 0, #if !defined(QT_NO_DEBUG_STREAM) && !defined(Q_BROKEN_DEBUG_STREAM) streamDebug #else 0 #endif }; Q_CORE_EXPORT const QVariant::Handler *qcoreVariantHandler() { return &qt_kernel_variant_handler; } const QVariant::Handler *QVariant::handler = &qt_kernel_variant_handler; /*! \class QVariant \brief The QVariant class acts like a union for the most common Qt data types. \ingroup objectmodel \ingroup misc \ingroup shared \mainclass Because C++ forbids unions from including types that have non-default constructors or destructors, most interesting Qt classes cannot be used in unions. Without QVariant, this would be a problem for QObject::property() and for database work, etc. A QVariant object holds a single value of a single type() at a time. (Some type()s are multi-valued, for example a string list.) You can find out what type, T, the variant holds, convert it to a different type using convert(), get its value using one of the toT() functions (e.g., toSize()) and check whether the type can be converted to a particular type using canConvert(). The methods named toT() (e.g., toInt(), toString()) are const. If you ask for the stored type, they return a copy of the stored object. If you ask for a type that can be generated from the stored type, toT() copies and converts and leaves the object itself unchanged. If you ask for a type that cannot be generated from the stored type, the result depends on the type; see the function documentation for details. Here is some example code to demonstrate the use of QVariant: \code QDataStream out(...); QVariant v(123); // The variant now contains an int int x = v.toInt(); // x = 123 out << v; // Writes a type tag and an int to out v = QVariant("hello"); // The variant now contains a QByteArray v = QVariant(tr("hello")); // The variant now contains a QString int y = v.toInt(); // y = 0 since v cannot be converted to an int QString s = v.toString(); // s = tr("hello") (see QObject::tr()) out << v; // Writes a type tag and a QString to out ... QDataStream in(...); // (opening the previously written stream) in >> v; // Reads an Int variant int z = v.toInt(); // z = 123 qDebug("Type is %s", // prints "Type is int" v.typeName()); v = v.toInt() + 100; // The variant now hold the value 223 v = QVariant(QStringList()); \endcode You can even store QList and QMap values in a variant, so you can easily construct arbitrarily complex data structures of arbitrary types. This is very powerful and versatile, but may prove less memory and speed efficient than storing specific types in standard data structures. QVariant also supports the notion of null values, where you have a defined type with no value set. \code QVariant x, y(QString()), z(QString("")); x.convert(QVariant::Int); // x.isNull() == true // y.isNull() == true, z.isNull() == false // y.isEmpty() == true, z.isEmpty() == true \endcode QVariant can be extended to support other types than those mentioned in the \l Type enum. See the \l QMetaType documentation for details. \section1 A Note on GUI Types Because QVariant is part of the QtCore library, it cannot provide conversion functions to data types defined in QtGui, such as QColor, QImage, and QPixmap. In other words, there is no \c toColor() function. Instead, you can use the QVariant::value() or the qVariantValue() template function. For example: \code QVariant variant; ... QColor color = variant.value(); \endcode The inverse conversion (e.g., from QColor to QVariant) is automatic for all data types supported by QVariant, including GUI-related types: \code QColor color = palette().background().color(); QVariant variant = color; \endcode \sa QMetaType */ /*! \enum QVariant::Type This enum type defines the types of variable that a QVariant can contain. \value Invalid no type \value BitArray a QBitArray \value Bitmap a QBitmap \value Bool a bool \value Brush a QBrush \value ByteArray a QByteArray \value Char a QChar \value Color a QColor \value Cursor a QCursor \value Date a QDate \value DateTime a QDateTime \value Double a double \value Font a QFont \value Icon a QIcon \value Image a QImage \value Int an int \value KeySequence a QKeySequence \value Line a QLine \value LineF a QLineF \value List a QVariantList \value Locale a QLocale \value LongLong a \l qlonglong \value Map a QVariantMap \value Matrix a QMatrix \value Transform a QTransform \value Palette a QPalette \value Pen a QPen \value Pixmap a QPixmap \value Point a QPoint \value PointArray a QPointArray \value PointF a QPointF \value Polygon a QPolygon \value Rect a QRect \value RectF a QRectF \value RegExp a QRegExp \value Region a QRegion \value Size a QSize \value SizeF a QSizeF \value SizePolicy a QSizePolicy \value String a QString \value StringList a QStringList \value TextFormat a QTextFormat \value TextLength a QTextLength \value Time a QTime \value UInt a \l uint \value ULongLong a \l qulonglong \value Url a QUrl \value UserType Base value for user-defined types. \omitvalue CString \omitvalue ColorGroup \omitvalue IconSet \omitvalue LastGuiType \omitvalue LastCoreType \omitvalue LastType */ /*! \fn QVariant::QVariant() Constructs an invalid variant. */ /*! \fn QVariant::QVariant(int typeOrUserType, const void *copy) Constructs variant of type \a typeOrUserType, and initializes with \a copy if \a copy is not 0. Note that you have to pass the address of the variable you want stored. Usually, you never have to use this constructor, use qVariantFromValue() instead to construct variants from the pointer types represented by \c QMetaType::VoidStar, \c QMetaType::QObjectStar and \c QMetaType::QWidgetStar. \sa qVariantFromValue(), Type */ /*! \fn QVariant::QVariant(Type type) Constructs a null variant of type \a type. */ /*! \fn QVariant::create(int type, const void *copy) \internal Constructs a variant private of type \a type, and initializes with \a copy if \a copy is not 0. */ void QVariant::create(int type, const void *copy) { d.type = type; handler->construct(&d, copy); } /*! \fn QVariant::~QVariant() Destroys the QVariant and the contained object. Note that subclasses that reimplement clear() should reimplement the destructor to call clear(). This destructor calls clear(), but because it is the destructor, QVariant::clear() is called rather than a subclass's clear(). */ QVariant::~QVariant() { if (d.type > Char && (!d.is_shared || !d.data.shared->ref.deref())) handler->clear(&d); } /*! \fn QVariant::QVariant(const QVariant &p) Constructs a copy of the variant, \a p, passed as the argument to this constructor. */ QVariant::QVariant(const QVariant &p) : d(p.d) { if (d.is_shared) { d.data.shared->ref.ref(); } else if (p.d.type > Char) { handler->construct(&d, p.constData()); d.is_null = p.d.is_null; } } #ifndef QT_NO_DATASTREAM /*! Reads the variant from the data stream, \a s. */ QVariant::QVariant(QDataStream &s) { d.is_null = true; s >> *this; } #endif //QT_NO_DATASTREAM /*! \fn QVariant::QVariant(const QString &val) Constructs a new variant with a string value, \a val. */ /*! \fn QVariant::QVariant(const QLatin1String &val) Constructs a new variant with a string value, \a val. */ /*! \fn QVariant::QVariant(const char *val) Constructs a new variant with a string value of \a val. The variant creates a deep copy of \a val, using the encoding set by QTextCodec::setCodecForCStrings(). You can disable this operator by defining \c QT_NO_CAST_FROM_ASCII when you compile your applications. \sa QTextCodec::setCodecForCStrings() */ #ifndef QT_NO_CAST_FROM_ASCII QVariant::QVariant(const char *val) { QString s = QString::fromAscii(val); create(String, &s); } #endif /*! \fn QVariant::QVariant(const QStringList &val) Constructs a new variant with a string list value, \a val. */ /*! \fn QVariant::QVariant(const QMap &val) Constructs a new variant with a map of QVariants, \a val. */ /*! \fn QVariant::QVariant(const QDate &val) Constructs a new variant with a date value, \a val. */ /*! \fn QVariant::QVariant(const QTime &val) Constructs a new variant with a time value, \a val. */ /*! \fn QVariant::QVariant(const QDateTime &val) Constructs a new variant with a date/time value, \a val. */ /*! \fn QVariant::QVariant(const QByteArray &val) Constructs a new variant with a bytearray value, \a val. */ /*! \fn QVariant::QVariant(const QBitArray &val) Constructs a new variant with a bitarray value, \a val. */ /*! \fn QVariant::QVariant(const QPoint &val) Constructs a new variant with a point value of \a val. */ /*! \fn QVariant::QVariant(const QPointF &val) Constructs a new variant with a point value of \a val. */ /*! \fn QVariant::QVariant(const QRectF &val) Constructs a new variant with a rect value of \a val. */ /*! \fn QVariant::QVariant(const QLineF &val) Constructs a new variant with a line value of \a val. */ /*! \fn QVariant::QVariant(const QLine &val) Constructs a new variant with a line value of \a val. */ /*! \fn QVariant::QVariant(const QRect &val) Constructs a new variant with a rect value of \a val. */ /*! \fn QVariant::QVariant(const QSize &val) Constructs a new variant with a size value of \a val. */ /*! \fn QVariant::QVariant(const QSizeF &val) Constructs a new variant with a size value of \a val. */ /*! \fn QVariant::QVariant(const QUrl &val) Constructs a new variant with a url value of \a val. */ /*! \fn QVariant::QVariant(int val) Constructs a new variant with an integer value, \a val. */ /*! \fn QVariant::QVariant(uint val) Constructs a new variant with an unsigned integer value, \a val. */ /*! \fn QVariant::QVariant(qlonglong val) Constructs a new variant with a long long integer value, \a val. */ /*! \fn QVariant::QVariant(qulonglong val) Constructs a new variant with an unsigned long long integer value, \a val. */ /*! \fn QVariant::QVariant(bool val) Constructs a new variant with a boolean value, \a val. The integer argument is a dummy, necessary for compatibility with some compilers. */ /*! \fn QVariant::QVariant(double val) Constructs a new variant with a floating point value, \a val. */ /*! \fn QVariant::QVariant(const QList &val) Constructs a new variant with a list value, \a val. */ /*! \fn QVariant::QVariant(const QChar &c) Constructs a new variant with a char value, \a c. */ /*! \fn QVariant::QVariant(const QLocale &l) Constructs a new variant with a locale value, \a l. */ /*! \fn QVariant::QVariant(const QRegExp ®Exp) Constructs a new variant with the regexp value \a regExp. */ /*! \since 4.2 \fn QVariant::QVariant(Qt::GlobalColor color) Constructs a new variant of type QVariant::Color and initializes it with \a color. This is a convenience constructor that allows \c{QVariant(Qt::blue);} to create a valid QVariant storing a QColor. Note: This constructor will assert if the application does not link to the Qt GUI library. */ QVariant::QVariant(Type type) { create(type, 0); } QVariant::QVariant(int typeOrUserType, const void *copy) { create(typeOrUserType, copy); d.is_null = false; } QVariant::QVariant(int val) { d.is_null = false; d.type = Int; d.data.i = val; } QVariant::QVariant(uint val) { d.is_null = false; d.type = UInt; d.data.u = val; } QVariant::QVariant(qlonglong val) { d.is_null = false; d.type = LongLong; d.data.ll = val; } QVariant::QVariant(qulonglong val) { d.is_null = false; d.type = ULongLong; d.data.ull = val; } QVariant::QVariant(bool val) { d.is_null = false; d.type = Bool; d.data.b = val; } QVariant::QVariant(double val) { d.is_null = false; d.type = Double; d.data.d = val; } QVariant::QVariant(const QByteArray &val) { create(ByteArray, &val); } QVariant::QVariant(const QBitArray &val) { create(BitArray, &val); } QVariant::QVariant(const QString &val) { create(String, &val); } QVariant::QVariant(const QChar &val) { create (Char, &val); } QVariant::QVariant(const QLatin1String &val) { QString str(val); create(String, &str); } QVariant::QVariant(const QStringList &val) { create(StringList, &val); } QVariant::QVariant(const QDate &val) { create(Date, &val); } QVariant::QVariant(const QTime &val) { create(Time, &val); } QVariant::QVariant(const QDateTime &val) { create(DateTime, &val); } QVariant::QVariant(const QList &list) { create(List, &list); } QVariant::QVariant(const QMap &map) { create(Map, &map); } #ifndef QT_NO_GEOM_VARIANT QVariant::QVariant(const QPoint &pt) { create(Point, &pt); } QVariant::QVariant(const QPointF &pt) { create (PointF, &pt); } QVariant::QVariant(const QRectF &r) { create (RectF, &r); } QVariant::QVariant(const QLineF &l) { create (LineF, &l); } QVariant::QVariant(const QLine &l) { create (Line, &l); } QVariant::QVariant(const QRect &r) { create(Rect, &r); } QVariant::QVariant(const QSize &s) { create(Size, &s); } QVariant::QVariant(const QSizeF &s) { create(SizeF, &s); } #endif QVariant::QVariant(const QUrl &u) { create(Url, &u); } QVariant::QVariant(const QLocale &l) { create(Locale, &l); } #ifndef QT_NO_REGEXP QVariant::QVariant(const QRegExp ®Exp) { create(RegExp, ®Exp); } #endif QVariant::QVariant(Qt::GlobalColor color) { create(62, &color); } /*! Returns the storage type of the value stored in the variant. Usually it's best to test with canConvert() whether the variant can deliver the data type you are interested in. */ QVariant::Type QVariant::type() const { return d.type >= QMetaType::User ? UserType : static_cast(d.type); } /*! Returns the storage type of the value stored in the variant. For non-user types, this is the same as type(). \sa type() */ int QVariant::userType() const { return d.type; } /*! Assigns the value of the variant \a variant to this variant. */ QVariant& QVariant::operator=(const QVariant &variant) { if (this == &variant) return *this; clear(); if (variant.d.is_shared) { variant.d.data.shared->ref.ref(); d = variant.d; } else if (variant.d.type > Char) { d.type = variant.d.type; handler->construct(&d, variant.constData()); d.is_null = variant.d.is_null; } else { d = variant.d; } return *this; } /*! \fn void QVariant::detach() \internal */ void QVariant::detach() { if (!d.is_shared || d.data.shared->ref == 1) return; Private dd; dd.type = d.type; handler->construct(&dd, constData()); dd.data.shared = qAtomicSetPtr(&d.data.shared, dd.data.shared); if (!dd.data.shared->ref.deref()) handler->clear(&dd); } /*! \fn bool QVariant::isDetached() const \internal */ // Qt 5 ###: change typeName()(and froends= to return a QString. Suggestion from Harald. /*! Returns the name of the type stored in the variant. The returned strings describe the C++ datatype used to store the data: for example, "QFont", "QString", or "QVariantList". An Invalid variant returns 0. */ const char *QVariant::typeName() const { return typeToName(Type(d.type)); } /*! Convert this variant to type Invalid and free up any resources used. */ void QVariant::clear() { if (!d.is_shared || !d.data.shared->ref.deref()) handler->clear(&d); d.type = Invalid; d.is_null = true; d.is_shared = false; } /*! Converts the enum representation of the storage type, \a typ, to its string representation. Returns a null pointer if the type is QVariant::Invalid or doesn't exist. */ const char *QVariant::typeToName(Type typ) { if (typ == Invalid) return 0; if (typ == UserType) return "UserType"; return QMetaType::typeName(typ); } /*! Converts the string representation of the storage type given in \a name, to its enum representation. If the string representation cannot be converted to any enum representation, the variant is set to \c Invalid. */ QVariant::Type QVariant::nameToType(const char *name) { if (!name || !*name) return Invalid; if (strcmp(name, "Q3CString") == 0) return ByteArray; if (strcmp(name, "Q_LLONG") == 0) return LongLong; if (strcmp(name, "Q_ULLONG") == 0) return ULongLong; if (strcmp(name, "QIconSet") == 0) return Icon; if (strcmp(name, "UserType") == 0) return UserType; int metaType = QMetaType::type(name); return metaType <= int(LastGuiType) ? QVariant::Type(metaType) : UserType; } #ifndef QT_NO_DATASTREAM enum { MapFromThreeCount = 35 }; static const uint map_from_three[MapFromThreeCount] = { QVariant::Invalid, QVariant::Map, QVariant::List, QVariant::String, QVariant::StringList, QVariant::Font, QVariant::Pixmap, QVariant::Brush, QVariant::Rect, QVariant::Size, QVariant::Color, QVariant::Palette, 63, // ColorGroup QVariant::Icon, QVariant::Point, QVariant::Image, QVariant::Int, QVariant::UInt, QVariant::Bool, QVariant::Double, QVariant::ByteArray, QVariant::Polygon, QVariant::Region, QVariant::Bitmap, QVariant::Cursor, QVariant::SizePolicy, QVariant::Date, QVariant::Time, QVariant::DateTime, QVariant::ByteArray, QVariant::BitArray, QVariant::KeySequence, QVariant::Pen, QVariant::LongLong, QVariant::ULongLong }; /*! Internal function for loading a variant from stream \a s. Use the stream operators instead. \internal */ void QVariant::load(QDataStream &s) { clear(); quint32 u; s >> u; if (s.version() < QDataStream::Qt_4_0) { if (u >= MapFromThreeCount) return; u = map_from_three[u]; } qint8 is_null = false; if (s.version() >= QDataStream::Qt_4_2) s >> is_null; if (u == QVariant::UserType) { QByteArray name; s >> name; u = QMetaType::type(name); if (!u) qFatal("QVariant::load(QDataStream &s): type %s unknown to QVariant.", name.data()); } create(static_cast(u), 0); d.is_null = is_null; if (d.type == QVariant::Invalid) { // Since we wrote something, we should read something QString x; s >> x; d.is_null = true; return; } // const cast is save since we operate on a newly constructed variant if (!QMetaType::load(s, d.type, const_cast(::constData(d)))) { Q_ASSERT_X(false, "QVariant::load", "Invalid type to load"); qWarning("QVariant::load: unable to load type %d.", d.type); } } /*! Internal function for saving a variant to the stream \a s. Use the stream operators instead. \internal */ void QVariant::save(QDataStream &s) const { quint32 tp = type(); if (s.version() < QDataStream::Qt_4_0) { int i; for (i = 0; i < MapFromThreeCount; ++i) { if (map_from_three[i] == tp) { tp = i; break; } } if (i == MapFromThreeCount) { s << QVariant(); return; } } s << tp; if (s.version() >= QDataStream::Qt_4_2) s << qint8(d.is_null); if (tp == QVariant::UserType) { s << QMetaType::typeName(userType()); } if (d.type == QVariant::Invalid) { s << QString(); return; } if (!QMetaType::save(s, d.type, ::constData(d))) { Q_ASSERT_X(false, "QVariant::save", "Invalid type to save"); qWarning("QVariant::save: unable to save type %d.", d.type); } } /*! Reads a variant \a p from the stream \a s. \sa \link datastreamformat.html Format of the QDataStream operators \endlink */ QDataStream& operator>>(QDataStream &s, QVariant &p) { p.load(s); return s; } /*! Writes a variant \a p to the stream \a s. \sa \link datastreamformat.html Format of the QDataStream operators \endlink */ QDataStream& operator<<(QDataStream &s, const QVariant &p) { p.save(s); return s; } /*! Reads a variant type \a p in enum representation from the stream \a s. */ QDataStream& operator>>(QDataStream &s, QVariant::Type &p) { quint32 u; s >> u; p = (QVariant::Type)u; return s; } /*! Writes a variant type \a p to the stream \a s. */ QDataStream& operator<<(QDataStream &s, const QVariant::Type p) { s << static_cast(p); return s; } #endif //QT_NO_DATASTREAM /*! \fn bool QVariant::isValid() const Returns true if the storage type of this variant is not QVariant::Invalid; otherwise returns false. */ template inline T qVariantToHelper(const QVariant::Private &d, QVariant::Type t, const QVariant::Handler *handler, T * = 0) { if (d.type == t) return *v_cast(&d); T ret; handler->convert(&d, t, &ret, 0); return ret; } /*! \fn QStringList QVariant::toStringList() const Returns the variant as a QStringList if the variant has type() StringList, \l String, or \l List of a type that can be converted to QString; otherwise returns an empty list. \sa canConvert(), convert() */ QStringList QVariant::toStringList() const { return qVariantToHelper(d, StringList, handler); } /*! Returns the variant as a QString if the variant has type() \l String, \l Bool, \l ByteArray, \l Char, \l Date, \l DateTime, \l Double, \l Int, \l LongLong, \l StringList, \l Time, \l UInt, or \l ULongLong; otherwise returns an empty string. \sa canConvert(), convert() */ QString QVariant::toString() const { return qVariantToHelper(d, String, handler); } /*! Returns the variant as a QMap if the variant has type() \l Map; otherwise returns an empty map. \sa canConvert(), convert() */ QVariantMap QVariant::toMap() const { return qVariantToHelper(d, Map, handler); } /*! \fn QDate QVariant::toDate() const Returns the variant as a QDate if the variant has type() \l Date, \l DateTime, or \l String; otherwise returns an invalid date. If the type() is \l String, an invalid date will be returned if the string cannot be parsed as a Qt::ISODate format date. \sa canConvert(), convert() */ QDate QVariant::toDate() const { return qVariantToHelper(d, Date, handler); } /*! \fn QTime QVariant::toTime() const Returns the variant as a QTime if the variant has type() \l Time, \l DateTime, or \l String; otherwise returns an invalid time. If the type() is \l String, an invalid time will be returned if the string cannot be parsed as a Qt::ISODate format time. \sa canConvert(), convert() */ QTime QVariant::toTime() const { return qVariantToHelper(d, Time, handler); } /*! \fn QDateTime QVariant::toDateTime() const Returns the variant as a QDateTime if the variant has type() \l DateTime, \l Date, or \l String; otherwise returns an invalid date/time. If the type() is \l String, an invalid date/time will be returned if the string cannot be parsed as a Qt::ISODate format date/time. \sa canConvert(), convert() */ QDateTime QVariant::toDateTime() const { return qVariantToHelper(d, DateTime, handler); } /*! \fn QByteArray QVariant::toByteArray() const Returns the variant as a QByteArray if the variant has type() \l ByteArray or \l String (converted using QString::fromAscii()); otherwise returns an empty byte array. \sa canConvert(), convert() */ QByteArray QVariant::toByteArray() const { return qVariantToHelper(d, ByteArray, handler); } #ifndef QT_NO_GEOM_VARIANT /*! \fn QPoint QVariant::toPoint() const Returns the variant as a QPoint if the variant has type() \l Point or \l PointF; otherwise returns a null QPoint. \sa canConvert(), convert() */ QPoint QVariant::toPoint() const { return qVariantToHelper(d, Point, handler); } /*! \fn QRect QVariant::toRect() const Returns the variant as a QRect if the variant has type() \l Rect; otherwise returns an invalid QRect. \sa canConvert(), convert() */ QRect QVariant::toRect() const { return qVariantToHelper(d, Rect, handler); } /*! \fn QSize QVariant::toSize() const Returns the variant as a QSize if the variant has type() \l Size; otherwise returns an invalid QSize. \sa canConvert(), convert() */ QSize QVariant::toSize() const { return qVariantToHelper(d, Size, handler); } /*! \fn QSizeF QVariant::toSizeF() const Returns the variant as a QSizeF if the variant has type() \l SizeF; otherwise returns an invalid QSizeF. \sa canConvert(), convert() */ QSizeF QVariant::toSizeF() const { return qVariantToHelper(d, SizeF, handler); } /*! \fn QRectF QVariant::toRectF() const Returns the variant as a QRectF if the variant has type() \l Rect or \l RectF; otherwise returns an invalid QRectF. \sa canConvert(), convert() */ QRectF QVariant::toRectF() const { return qVariantToHelper(d, RectF, handler); } /*! \fn QLineF QVariant::toLineF() const Returns the variant as a QLineF if the variant has type() \l LineF; otherwise returns an invalid QLineF. \sa canConvert(), convert() */ QLineF QVariant::toLineF() const { return qVariantToHelper(d, LineF, handler); } /*! \fn QLine QVariant::toLine() const Returns the variant as a QLine if the variant has type() \l Line; otherwise returns an invalid QLine. \sa canConvert(), convert() */ QLine QVariant::toLine() const { return qVariantToHelper(d, Line, handler); } /*! \fn QPointF QVariant::toPointF() const Returns the variant as a QPointF if the variant has type() \l Point or \l PointF; otherwise returns a null QPointF. \sa canConvert(), convert() */ QPointF QVariant::toPointF() const { return qVariantToHelper(d, PointF, handler); } #endif // QT_NO_GEOM_VARIANT /*! \fn QUrl QVariant::toUrl() const Returns the variant as a QUrl if the variant has type() \l Url; otherwise returns an invalid QUrl. \sa canConvert(), convert() */ QUrl QVariant::toUrl() const { return qVariantToHelper(d, Url, handler); } /*! \fn QLocale QVariant::toLocale() const Returns the variant as a QLocale if the variant has type() \l Locale; otherwise returns an invalid QLocale. \sa canConvert(), convert() */ QLocale QVariant::toLocale() const { return qVariantToHelper(d, Locale, handler); } /*! \fn QRegExp QVariant::toRegExp() const \since 4.1 Returns the variant as a QRegExp if the variant has type() \l RegExp; otherwise returns an empty QRegExp. \sa canConvert(), convert() */ #ifndef QT_NO_REGEXP QRegExp QVariant::toRegExp() const { return qVariantToHelper(d, RegExp, handler); } #endif /*! \fn QChar QVariant::toChar() const Returns the variant as a QChar if the variant has type() \l Char, \l Int, or \l UInt; otherwise returns an invalid QChar. \sa canConvert(), convert() */ QChar QVariant::toChar() const { return qVariantToHelper(d, Char, handler); } /*! Returns the variant as a QBitArray if the variant has type() \l BitArray; otherwise returns an empty bit array. \sa canConvert(), convert() */ QBitArray QVariant::toBitArray() const { return qVariantToHelper(d, BitArray, handler); } template inline T qNumVariantToHelper(const QVariant::Private &d, QVariant::Type t, const QVariant::Handler *handler, bool *ok, const T& val) { if (ok) *ok = true; if (d.type == t) return val; T ret; if (!handler->convert(&d, t, &ret, ok) && ok) *ok = false; return ret; } /*! Returns the variant as an int if the variant has type() \l Int, \l Bool, \l ByteArray, \l Char, \l Double, \l LongLong, \l String, \l UInt, or \l ULongLong; otherwise returns 0. If \a ok is non-null: \c{*}\a{ok} is set to true if the value could be converted to an int; otherwise \c{*}\a{ok} is set to false. \sa canConvert(), convert() */ int QVariant::toInt(bool *ok) const { return qNumVariantToHelper(d, Int, handler, ok, d.data.i); } /*! Returns the variant as an unsigned int if the variant has type() \l UInt, \l Bool, \l ByteArray, \l Char, \l Double, \l Int, \l LongLong, \l String, or \l ULongLong; otherwise returns 0. If \a ok is non-null: \c{*}\a{ok} is set to true if the value could be converted to an unsigned int; otherwise \c{*}\a{ok} is set to false. \sa canConvert(), convert() */ uint QVariant::toUInt(bool *ok) const { return qNumVariantToHelper(d, UInt, handler, ok, d.data.u); } /*! Returns the variant as a long long int if the variant has type() \l LongLong, \l Bool, \l ByteArray, \l Char, \l Double, \l Int, \l String, \l UInt, or \l ULongLong; otherwise returns 0. If \a ok is non-null: \c{*}\c{ok} is set to true if the value could be converted to an int; otherwise \c{*}\c{ok} is set to false. \sa canConvert(), convert() */ qlonglong QVariant::toLongLong(bool *ok) const { return qNumVariantToHelper(d, LongLong, handler, ok, d.data.ll); } /*! Returns the variant as as an unsigned long long int if the variant has type() \l ULongLong, \l Bool, \l ByteArray, \l Char, \l Double, \l Int, \l LongLong, \l String, or \l UInt; otherwise returns 0. If \a ok is non-null: \c{*}\a{ok} is set to true if the value could be converted to an int; otherwise \c{*}\a{ok} is set to false. \sa canConvert(), convert() */ qulonglong QVariant::toULongLong(bool *ok) const { return qNumVariantToHelper(d, ULongLong, handler, ok, d.data.ull); } /*! Returns the variant as a bool if the variant has type() Bool. Returns true if the variant has type() \l Bool, \l Char, \l Double, \l Int, \l LongLong, \l UInt, or \l ULongLong and the value is non-zero, or if the variant has type \l String and its lower-case content is not empty, "0" or "false"; otherwise returns false. \sa canConvert(), convert() */ bool QVariant::toBool() const { if (d.type == Bool) return d.data.b; bool res = false; handler->convert(&d, Bool, &res, 0); return res; } /*! Returns the variant as a double if the variant has type() \l Double, \l Bool, \l ByteArray, \l Int, \l LongLong, \l String, \l UInt, or \l ULongLong; otherwise returns 0.0. If \a ok is non-null: \c{*}\a{ok} is set to true if the value could be converted to a double; otherwise \c{*}\a{ok} is set to false. \sa canConvert(), convert() */ double QVariant::toDouble(bool *ok) const { return qNumVariantToHelper(d, Double, handler, ok, d.data.d); } /*! Returns the variant as a QVariantList if the variant has type() \l List or \l StringList; otherwise returns an empty list. \sa canConvert(), convert() */ QVariantList QVariant::toList() const { return qVariantToHelper(d, List, handler); } /*! \fn QVariant::canCast(Type t) const Use canConvert() instead. */ /*! \fn QVariant::cast(Type t) Use convert() instead. */ static const quint32 qCanConvertMatrix[QVariant::LastCoreType + 1] = { /*Invalid*/ 0, /*Bool*/ 1 << QVariant::Double | 1 << QVariant::Int | 1 << QVariant::UInt | 1 << QVariant::LongLong | 1 << QVariant::ULongLong | 1 << QVariant::String | 1 << QVariant::Char, /*Int*/ 1 << QVariant::UInt | 1 << QVariant::String | 1 << QVariant::Double | 1 << QVariant::Bool | 1 << QVariant::LongLong | 1 << QVariant::ULongLong | 1 << QVariant::Char | 1 << QVariant::ByteArray, /*UInt*/ 1 << QVariant::Int | 1 << QVariant::String | 1 << QVariant::Double | 1 << QVariant::Bool | 1 << QVariant::LongLong | 1 << QVariant::ULongLong | 1 << QVariant::Char | 1 << QVariant::ByteArray, /*LLong*/ 1 << QVariant::Int | 1 << QVariant::String | 1 << QVariant::Double | 1 << QVariant::Bool | 1 << QVariant::UInt | 1 << QVariant::ULongLong | 1 << QVariant::Char | 1 << QVariant::ByteArray, /*ULlong*/ 1 << QVariant::Int | 1 << QVariant::String | 1 << QVariant::Double | 1 << QVariant::Bool | 1 << QVariant::UInt | 1 << QVariant::LongLong | 1 << QVariant::Char | 1 << QVariant::ByteArray, /*double*/ 1 << QVariant::Int | 1 << QVariant::String | 1 << QVariant::ULongLong | 1 << QVariant::Bool | 1 << QVariant::UInt | 1 << QVariant::LongLong | 1 << QVariant::ByteArray, /*QChar*/ 1 << QVariant::Int | 1 << QVariant::UInt | 1 << QVariant::LongLong | 1 << QVariant::ULongLong, /*QMap*/ 0, /*QList*/ 1 << QVariant::StringList, /*QString*/ 1 << QVariant::StringList | 1 << QVariant::ByteArray | 1 << QVariant::Int | 1 << QVariant::UInt | 1 << QVariant::Bool | 1 << QVariant::Double | 1 << QVariant::Date | 1 << QVariant::Time | 1 << QVariant::DateTime | 1 << QVariant::LongLong | 1 << QVariant::ULongLong | 1 << QVariant::Char, /*QStringList*/ 1 << QVariant::List | 1 << QVariant::String, /*QByteArray*/ 1 << QVariant::String | 1 << QVariant::Int | 1 << QVariant::UInt | 1 << QVariant::Double | 1 << QVariant::LongLong | 1 << QVariant::ULongLong, /*QBitArray*/ 0, /*QDate*/ 1 << QVariant::String | 1 << QVariant::DateTime, /*QTime*/ 1 << QVariant::String | 1 << QVariant::DateTime, /*QDateTime*/ 1 << QVariant::String | 1 << QVariant::Date, /*QUrl*/ 0, /*QLocale*/ 0, /*QRect*/ 1 << QVariant::RectF, /*QRectF*/ 1 << QVariant::Rect, /*QSize*/ 1 << QVariant::SizeF, /*QSizeF*/ 1 << QVariant::Size, /*QLine*/ 1 << QVariant::LineF, /*QLineF*/ 1 << QVariant::Line, /*QPoint*/ 1 << QVariant::PointF, /*QPointF*/ 1 << QVariant::Point, /*QRegExp*/ 0 }; /*! Returns true if the variant's type can be cast to the requested type, \a t. Such casting is done automatically when calling the toInt(), toBool(), ... methods. The following casts are done automatically: \table \header \o Type \o Automatically Cast To \row \o \l Bool \o \l Char, \l Double, \l Int, \l LongLong, \l String, \l UInt, \l ULongLong \row \o \l ByteArray \o \l Double, \l Int, \l LongLong, \l String, \l UInt, \l ULongLong \row \o \l Char \o \l Bool, \l Int, \l UInt, \l LongLong, \l ULongLong \row \o \l Color \o \l String \row \o \l Date \o \l DateTime, \l String \row \o \l DateTime \o \l Date, \l String, \l Time \row \o \l Double \o \l Bool, \l Int, \l LongLong, \l String, \l UInt, \l ULongLong \row \o \l Font \o \l String \row \o \l Int \o \l Bool, \l Char, \l Double, \l LongLong, \l String, \l UInt, \l ULongLong \row \o \l KeySequence \o \l Int, \l String \row \o \l List \o \l StringList (if the list's items can be converted to strings) \row \o \l LongLong \o \l Bool, \l ByteArray, \l Char, \l Double, \l Int, \l String, \l UInt, \l ULongLong \row \o \l Point \o PointF \row \o \l Rect \o RectF \row \o \l String \o \l Bool, \l ByteArray, \l Char, \l Color, \l Date, \l DateTime, \l Double, \l Font, \l Int, \l KeySequence, \l LongLong, \l StringList, \l Time, \l UInt, \l ULongLong \row \o \l StringList \o \l List, \l String (if the list contains exactly one item) \row \o \l Time \o \l DateTime, \l String \row \o \l UInt \o \l Bool, \l Char, \l Double, \l Int, \l LongLong, \l String, \l ULongLong \row \o \l ULongLong \o \l Bool, \l Char, \l Double, \l Int, \l LongLong, \l String, \l UInt \endtable \sa convert() */ bool QVariant::canConvert(Type t) const { if (d.type == uint(t)) return true; if (d.type > QVariant::LastCoreType || t > QVariant::LastCoreType) { switch (uint(t)) { case QVariant::Int: return d.type == QVariant::KeySequence; case QVariant::Image: return d.type == QVariant::Pixmap || d.type == QVariant::Bitmap; case QVariant::Pixmap: return d.type == QVariant::Image || d.type == QVariant::Bitmap || d.type == QVariant::Brush; case QVariant::Bitmap: return d.type == QVariant::Pixmap || d.type == QVariant::Image; case QVariant::ByteArray: return d.type == QVariant::Color; case QVariant::String: return d.type == QVariant::KeySequence || d.type == QVariant::Font || d.type == QVariant::Color; case QVariant::KeySequence: return d.type == QVariant::String || d.type == QVariant::Int; case QVariant::Font: return d.type == QVariant::String; case QVariant::Color: return d.type == QVariant::String || d.type == QVariant::ByteArray || d.type == QVariant::Brush; case QVariant::Brush: return d.type == QVariant::Color || d.type == QVariant::Pixmap; case QMetaType::Char: case QMetaType::UChar: case QMetaType::Long: case QMetaType::ULong: case QMetaType::Short: case QMetaType::UShort: case QMetaType::Float: return qCanConvertMatrix[QVariant::Int] & (1 << d.type) || d.type == QVariant::Int; default: return false; } } if(t == String && d.type == StringList) return v_cast(&d)->count() == 1; else return qCanConvertMatrix[t] & (1 << d.type); } /*! Casts the variant to the requested type. If the cast cannot be done, the variant is set to the default value of the requested type (e.g. an empty string if the requested type \a t is QVariant::String, an empty point array if the requested type \a t is QVariant::Polygon, etc). Returns true if the current type of the variant was successfully cast; otherwise returns false. \sa canConvert() */ bool QVariant::convert(Type t) { if (d.type == uint(t)) return true; QVariant oldValue = *this; clear(); if (!oldValue.canConvert(t)) return false; create(t, 0); if (oldValue.isNull()) return false; bool isOk = true; if (!handler->convert(&oldValue.d, t, data(), &isOk)) isOk = false; d.is_null = !isOk; return isOk; } /*! \fn bool operator==(const QVariant &v1, const QVariant &v2) \relates QVariant Returns true if \a v1 and \a v2 are equal; otherwise returns false. \warning This function doesn't support custom types registered with qRegisterMetaType(). */ /*! \fn bool operator!=(const QVariant &v1, const QVariant &v2) \relates QVariant Returns false if \a v1 and \a v2 are equal; otherwise returns true. \warning This function doesn't support custom types registered with qRegisterMetaType(). */ /*! \fn bool QVariant::operator==(const QVariant &v) const Compares this QVariant with \a v and returns true if they are equal; otherwise returns false. \warning This function doesn't support custom types registered with qRegisterMetaType(). */ /*! \fn bool QVariant::operator!=(const QVariant &v) const Compares this QVariant with \a v and returns true if they are not equal; otherwise returns false. \warning This function doesn't support custom types registered with qRegisterMetaType(). */ static bool qIsNumericType(uint tp) { return (tp >= QVariant::Bool && tp <= QVariant::Double) || (tp >= QMetaType::Long && tp <= QMetaType::Float); } static bool qIsFloatingPoint(uint tp) { return tp == QVariant::Double || tp == QMetaType::Float; } /*! \internal */ bool QVariant::cmp(const QVariant &v) const { QVariant v2 = v; if (d.type != v2.d.type) { if (qIsNumericType(d.type) && qIsNumericType(v.d.type)) { if (qIsFloatingPoint(d.type) || qIsFloatingPoint(v.d.type)) return qFuzzyCompare(toDouble(), v.toDouble()); else return toLongLong() == v.toLongLong(); } if (!v2.canConvert(Type(d.type)) || !v2.convert(Type(d.type))) return false; } return handler->compare(&d, &v2.d); } /*! \internal */ const void *QVariant::constData() const { return ::constData(d); } /*! \fn const void* QVariant::data() const \internal */ /*! \internal */ void* QVariant::data() { detach(); return const_cast(::constData(d)); } #ifdef QT3_SUPPORT /*! \internal */ void *QVariant::castOrDetach(Type t) { if (d.type != uint(t)) { if (!convert(t)) create(t, 0); } else { detach(); } return data(); } #endif /*! Returns true if this is a NULL variant, false otherwise. */ bool QVariant::isNull() const { return handler->isNull(&d); } #ifndef QT_NO_DEBUG_STREAM QDebug operator<<(QDebug dbg, const QVariant &v) { #ifndef Q_BROKEN_DEBUG_STREAM dbg.nospace() << "QVariant(" << v.typeName() << ", "; QVariant::handler->debugStream(dbg, v); dbg.nospace() << ')'; return dbg.space(); #else qWarning("This compiler doesn't support streaming QVariant to QDebug"); return dbg; Q_UNUSED(v); #endif } QDebug operator<<(QDebug dbg, const QVariant::Type p) { #ifndef Q_BROKEN_DEBUG_STREAM dbg.nospace() << "QVariant::" << QVariant::typeToName(p); return dbg.space(); #else qWarning("This compiler doesn't support streaming QVariant::Type to QDebug"); return dbg; Q_UNUSED(p); #endif } #endif /*! \fn int &QVariant::asInt() Use toInt() instead. */ /*! \fn uint &QVariant::asUInt() Use toUInt() instead. */ /*! \fn qlonglong &QVariant::asLongLong() Use toLongLong() instead. */ /*! \fn qulonglong &QVariant::asULongLong() Use toULongLong() instead. */ /*! \fn bool &QVariant::asBool() Use toBool() instead. */ /*! \fn double &QVariant::asDouble() Use toDouble() instead. */ /*! \fn QByteArray &QVariant::asByteArray() Use toByteArray() instead. */ /*! \fn QBitArray &QVariant::asBitArray() Use toBitArray() instead. */ /*! \fn QString &QVariant::asString() Use toString() instead. */ /*! \fn QStringList &QVariant::asStringList() Use toStringList() instead. */ /*! \fn QDate &QVariant::asDate() Use toDate() instead. */ /*! \fn QTime &QVariant::asTime() Use toTime() instead. */ /*! \fn QDateTime &QVariant::asDateTime() Use toDateTime() instead. */ /*! \fn QList &QVariant::asList() Use toList() instead. */ /*! \fn QMap &QVariant::asMap() Use toMap() instead. */ /*! \fn QVariant::QVariant(bool b, int dummy) Use the QVariant(bool) constructor instead. */ /*! \fn const QByteArray QVariant::toCString() const Use toByteArray() instead. */ /*! \fn QByteArray &QVariant::asCString() Use toByteArray() instead. */ /*! \fn QPoint &QVariant::asPoint() Use toPoint() instead. */ /*! \fn QRect &QVariant::asRect() Use toRect() instead. */ /*! \fn QSize &QVariant::asSize() Use toSize() instead. */ /*! \fn void QVariant::setValue(const T &value) Stores a copy of \a value. If \c{T} is a type that QVariant doesn't support, QMetaType is used to store the value. A compile error will occur if QMetaType doesn't handle the type. Example: \code QVariant v; v.setValue(5); int i = v.toInt(); // i is now 5 QString s = v.toString() // s is now "5" MyCustomStruct c; v.setValue(c); ... MyCustomStruct c2 = v.value(); \endcode \warning This function is not available with MSVC 6. Use qVariantSetValue() instead if you need to support that version of the compiler. \sa value(), fromValue(), canConvert() */ /*! \fn T QVariant::value() const Returns the stored value converted to the template type \c{T}. Call canConvert() to find out whether a type can be converted. If the value cannot be converted, \l{default-constructed value} will be returned. If the type \c{T} is supported by QVariant, this function behaves exactly as toString(), toInt() etc. Example: \code QVariant v; MyCustomStruct c; if (v.canConvert()) c = v.value(v); v = 7; int i = v.value(); // same as v.toInt() QString s = v.value(); // same as v.toString(), s is now "7" MyCustomStruct c2 = v.value(); // conversion failed, c2 is empty \endcode \warning This function is not available with MSVC 6. Use qVariantValue() or qvariant_cast() instead if you need to support that version of the compiler. \sa setValue(), fromValue(), canConvert() */ /*! \fn bool QVariant::canConvert() const Returns true if the variant can be converted to the template type \c{T}, otherwise false. Example: \code QVariant v = 42; v.canConvert(); // returns true v.canConvert(); // returns true MyCustomStruct s; v.setValue(s); v.canConvert(); // returns false v.canConvert(); // returns true \endcode \warning This function is not available with MSVC 6. Use qVariantCanConvert() instead if you need to support that version of the compiler. \sa convert() */ /*! \fn static QVariant QVariant::fromValue(const T &value) Returns a QVariant containing a copy of \a value. Behaves exactly like setValue() otherwise. Example: \code MyCustomStruct s; return QVariant::fromValue(s); \endcode \warning This function is not available with MSVC 6. Use qVariantFromValue() instead if you need to support that version of the compiler. \sa setValue(), value() */ /*! \fn QVariant qVariantFromValue(const T &value) \relates QVariant Returns a variant containing a copy of the given \a value with template type \c{T}. This function is equivalent to QVariant::fromValue(\a value). It is provided as a work-around for MSVC 6, which doesn't support member template functions. For example, a QObject pointer can be stored in a variant with the following code: \code QObject *object = getObjectFromSomewhere(); QVariant data = qVariantFromValue(object); \endcode \sa QVariant::fromValue() */ /*! \fn void qVariantSetValue(QVariant &variant, const T &value) \relates QVariant Sets the contents of the given \a variant to a copy of the \a value with the specified template type \c{T}. This function is equivalent to QVariant::setValue(\a value). It is provided as a work-around for MSVC 6, which doesn't support member template functions. \sa QVariant::setValue() */ /*! \fn T qvariant_cast(const QVariant &value) \relates QVariant Returns the given \a value converted to the template type \c{T}. This function is equivalent to qVariantValue(). \sa qVariantValue(), QVariant::value() */ /*! \fn T qVariantValue(const QVariant &value) \relates QVariant Returns the given \a value converted to the template type \c{T}. This function is equivalent to \l{QVariant::value()}{QVariant::value}(\a value). It is provided as a work-around for MSVC 6, which doesn't support member template functions. \sa QVariant::value(), qvariant_cast() */ /*! \fn bool qVariantCanConvert(const QVariant &value) \relates QVariant Returns true if the given \a value can be converted to the template type specified; otherwise returns false. This function is equivalent to QVariant::canConvert(\a value). It is provided as a work-around for MSVC 6, which doesn't support member template functions. \sa QVariant::canConvert() */ /*! \typedef QVariantList \relates QVariant Synonym for QList. */ /*! \typedef QVariantMap \relates QVariant Synonym for QMap. */ /*! \typedef QVariant::DataPtr \internal */ /*! \fn DataPtr &QVariant::data_ptr() \internal */