miqt/qt6/gen_qcolortransform.cpp

53 lines
1.3 KiB
C++
Raw Normal View History

2024-10-20 05:21:03 +00:00
#include <QColor>
#include <QColorTransform>
#include <QRgba64>
#include <qcolortransform.h>
#include "gen_qcolortransform.h"
#ifndef _Bool
#define _Bool bool
#endif
2024-10-20 05:21:03 +00:00
#include "_cgo_export.h"
2024-12-07 04:15:57 +00:00
QColorTransform* QColorTransform_new() {
return new QColorTransform();
2024-10-20 05:21:03 +00:00
}
2024-12-07 04:15:57 +00:00
QColorTransform* QColorTransform_new2(QColorTransform* colorTransform) {
return new QColorTransform(*colorTransform);
2024-10-20 05:21:03 +00:00
}
void QColorTransform_OperatorAssign(QColorTransform* self, QColorTransform* other) {
self->operator=(*other);
}
void QColorTransform_Swap(QColorTransform* self, QColorTransform* other) {
self->swap(*other);
}
bool QColorTransform_IsIdentity(const QColorTransform* self) {
return self->isIdentity();
}
unsigned int QColorTransform_Map(const QColorTransform* self, unsigned int argb) {
QRgb _ret = self->map(static_cast<QRgb>(argb));
return static_cast<unsigned int>(_ret);
}
QRgba64* QColorTransform_MapWithRgba64(const QColorTransform* self, QRgba64* rgba64) {
return new QRgba64(self->map(*rgba64));
}
QColor* QColorTransform_MapWithColor(const QColorTransform* self, QColor* color) {
return new QColor(self->map(*color));
}
2024-11-19 06:29:06 +00:00
void QColorTransform_Delete(QColorTransform* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<QColorTransform*>( self );
} else {
delete self;
}
2024-10-20 05:21:03 +00:00
}