Add QVariant__Color support

Add QVariant__Color support
This commit is contained in:
st0pli 2024-12-30 00:56:54 +08:00
parent ee156b8e7a
commit 179c4c9c30
3 changed files with 16 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#include <QUuid> #include <QUuid>
#include <QVariant> #include <QVariant>
#include <QVariantConstPointer> #include <QVariantConstPointer>
#include <QColor>
#include <qvariant.h> #include <qvariant.h>
#include "gen_qvariant.h" #include "gen_qvariant.h"
@ -233,6 +234,10 @@ QVariant* QVariant_new42(QMetaType* typeVal, const void* copyVal) {
return new QVariant(*typeVal, copyVal); return new QVariant(*typeVal, copyVal);
} }
QVariant* QVariant_new4099(QColor* color) {
return new QVariant(*color);
}
void QVariant_OperatorAssign(QVariant* self, QVariant* other) { void QVariant_OperatorAssign(QVariant* self, QVariant* other) {
self->operator=(*other); self->operator=(*other);
} }

View File

@ -504,6 +504,14 @@ func NewQVariant42(typeVal QMetaType, copyVal unsafe.Pointer) *QVariant {
return ret return ret
} }
// NewQVariant4099 constructs a new QVariant object.
func NewQVariant4099(color *QColor) *QVariant {
ret := newQVariant(C.QVariant_new4099(color.cPointer()))
ret.isSubclass = true
return ret
}
func (this *QVariant) OperatorAssign(other *QVariant) { func (this *QVariant) OperatorAssign(other *QVariant) {
C.QVariant_OperatorAssign(this.h, other.cPointer()) C.QVariant_OperatorAssign(this.h, other.cPointer())
} }

View File

@ -44,6 +44,7 @@ class QUrl;
class QUuid; class QUuid;
class QVariant; class QVariant;
class QVariantConstPointer; class QVariantConstPointer;
class QColor;
#else #else
typedef struct QBitArray QBitArray; typedef struct QBitArray QBitArray;
typedef struct QChar QChar; typedef struct QChar QChar;
@ -74,6 +75,7 @@ typedef struct QUrl QUrl;
typedef struct QUuid QUuid; typedef struct QUuid QUuid;
typedef struct QVariant QVariant; typedef struct QVariant QVariant;
typedef struct QVariantConstPointer QVariantConstPointer; typedef struct QVariantConstPointer QVariantConstPointer;
typedef struct QColor QColor;
#endif #endif
QVariant* QVariant_new(); QVariant* QVariant_new();
@ -118,6 +120,7 @@ QVariant* QVariant_new39(QModelIndex* modelIndex);
QVariant* QVariant_new40(QPersistentModelIndex* modelIndex); QVariant* QVariant_new40(QPersistentModelIndex* modelIndex);
QVariant* QVariant_new41(int typeVal); QVariant* QVariant_new41(int typeVal);
QVariant* QVariant_new42(QMetaType* typeVal, const void* copyVal); QVariant* QVariant_new42(QMetaType* typeVal, const void* copyVal);
QVariant* QVariant_new4099(QColor* color);
void QVariant_OperatorAssign(QVariant* self, QVariant* other); void QVariant_OperatorAssign(QVariant* self, QVariant* other);
void QVariant_Swap(QVariant* self, QVariant* other); void QVariant_Swap(QVariant* self, QVariant* other);
int QVariant_UserType(const QVariant* self); int QVariant_UserType(const QVariant* self);