| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- // qvariant.sip generated by MetaSIP
- //
- // This file is part of the QtCore Python extension module.
- //
- // Copyright (c) 2026 Riverbank Computing Limited <info@riverbankcomputing.com>
- //
- // This file is part of PyQt6.
- //
- // This file may be used under the terms of the GNU General Public License
- // version 3.0 as published by the Free Software Foundation and appearing in
- // the file LICENSE included in the packaging of this file. Please review the
- // following information to ensure the GNU General Public License version 3.0
- // requirements will be met: http://www.gnu.org/copyleft/gpl.html.
- //
- // If you do not wish to use this file under the terms of the GPL version 3.0
- // then you may purchase a commercial license. For more information contact
- // info@riverbankcomputing.com.
- //
- // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- class QVariant /AllowNone,TypeHint="Any",TypeHintValue="None"/
- {
- %TypeHeaderCode
- #include <qvariant.h>
- %End
- %ConvertToTypeCode
- if (sipIsErr == NULL)
- // We can convert everything to a QVariant.
- return 1;
- // If it is already a QVariant then just return it.
- if (Py_TYPE(sipPy) == sipTypeAsPyTypeObject(sipType_QVariant))
- {
- *sipCppPtr = reinterpret_cast<QVariant *>(sipConvertToType(sipPy,
- sipType_QVariant, sipTransferObj, SIP_NO_CONVERTORS, 0, sipIsErr));
- return 0;
- }
- // Convert it to a QVariant.
- QVariant var = qpycore_PyObject_AsQVariant(sipPy, sipIsErr);
- if (*sipIsErr)
- return 0;
- *sipCppPtr = new QVariant(var);
- return sipGetState(sipTransferObj);
- %End
- %ConvertFromTypeCode
- return qpycore_PyObject_FromQVariant(*sipCpp);
- %End
- public:
- QVariant();
- QVariant(SIP_PYOBJECT obj);
- %MethodCode
- int is_err = 0;
- QVariant var = qpycore_PyObject_AsQVariant(a0, &is_err);
-
- if (is_err)
- sipCpp = 0;
- else
- sipCpp = new QVariant(var);
- %End
- ~QVariant();
- SIP_PYOBJECT value() const;
- %MethodCode
- sipRes = qpycore_PyObject_FromQVariant(*sipCpp);
- %End
- int userType() const;
- const char *typeName() const;
- bool canConvert(QMetaType targetType) const;
- bool convert(QMetaType type);
- bool isValid() const;
- bool isNull() const;
- void clear();
- void load(QDataStream &ds) /ReleaseGIL/;
- void save(QDataStream &ds) const /ReleaseGIL/;
- void swap(QVariant &other /Constrained/);
- QMetaType metaType() const;
- bool canView(QMetaType targetType) const;
- int typeId() const;
- };
- QDataStream &operator>>(QDataStream &s, QVariant &p /Constrained/) /ReleaseGIL/;
- QDataStream &operator<<(QDataStream &s, const QVariant &p /Constrained/) /ReleaseGIL/;
- bool operator==(const QVariant &a, const QVariant &b);
- bool operator!=(const QVariant &a, const QVariant &b);
- typedef QHash<QString, QVariant> QVariantHash /TypeHint="Dict[QString, QVariant]"/;
- typedef QList<QVariant> QVariantList /TypeHint="List[QVariant]"/;
- typedef QMap<QString, QVariant> QVariantMap /TypeHint="Dict[QString, QVariant]"/;
- typedef std::pair<QVariant, QVariant> QVariantPair /TypeHint="Tuple[QVariant, QVariant]"/;
|