#include #include #include #include #include #include "gen_qcolorspace.h" #include "_cgo_export.h" void QColorSpace_new(QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(); *outptr_QColorSpace = ret; } void QColorSpace_new2(int namedColorSpace, QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(static_cast(namedColorSpace)); *outptr_QColorSpace = ret; } void QColorSpace_new3(int primaries, int transferFunction, QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(static_cast(primaries), static_cast(transferFunction)); *outptr_QColorSpace = ret; } void QColorSpace_new4(int primaries, float gamma, QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(static_cast(primaries), static_cast(gamma)); *outptr_QColorSpace = ret; } void QColorSpace_new5(QPointF* whitePoint, QPointF* redPoint, QPointF* greenPoint, QPointF* bluePoint, int transferFunction, QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(*whitePoint, *redPoint, *greenPoint, *bluePoint, static_cast(transferFunction)); *outptr_QColorSpace = ret; } void QColorSpace_new6(QColorSpace* colorSpace, QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(*colorSpace); *outptr_QColorSpace = ret; } void QColorSpace_new7(int primaries, int transferFunction, float gamma, QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(static_cast(primaries), static_cast(transferFunction), static_cast(gamma)); *outptr_QColorSpace = ret; } void QColorSpace_new8(QPointF* whitePoint, QPointF* redPoint, QPointF* greenPoint, QPointF* bluePoint, int transferFunction, float gamma, QColorSpace** outptr_QColorSpace) { QColorSpace* ret = new QColorSpace(*whitePoint, *redPoint, *greenPoint, *bluePoint, static_cast(transferFunction), static_cast(gamma)); *outptr_QColorSpace = ret; } void QColorSpace_OperatorAssign(QColorSpace* self, QColorSpace* colorSpace) { self->operator=(*colorSpace); } void QColorSpace_Swap(QColorSpace* self, QColorSpace* colorSpace) { self->swap(*colorSpace); } int QColorSpace_Primaries(const QColorSpace* self) { QColorSpace::Primaries _ret = self->primaries(); return static_cast(_ret); } int QColorSpace_TransferFunction(const QColorSpace* self) { QColorSpace::TransferFunction _ret = self->transferFunction(); return static_cast(_ret); } float QColorSpace_Gamma(const QColorSpace* self) { return self->gamma(); } void QColorSpace_SetTransferFunction(QColorSpace* self, int transferFunction) { self->setTransferFunction(static_cast(transferFunction)); } QColorSpace* QColorSpace_WithTransferFunction(const QColorSpace* self, int transferFunction) { return new QColorSpace(self->withTransferFunction(static_cast(transferFunction))); } void QColorSpace_SetPrimaries(QColorSpace* self, int primariesId) { self->setPrimaries(static_cast(primariesId)); } void QColorSpace_SetPrimaries2(QColorSpace* self, QPointF* whitePoint, QPointF* redPoint, QPointF* greenPoint, QPointF* bluePoint) { self->setPrimaries(*whitePoint, *redPoint, *greenPoint, *bluePoint); } bool QColorSpace_IsValid(const QColorSpace* self) { return self->isValid(); } QColorSpace* QColorSpace_FromIccProfile(struct miqt_string iccProfile) { QByteArray iccProfile_QByteArray(iccProfile.data, iccProfile.len); return new QColorSpace(QColorSpace::fromIccProfile(iccProfile_QByteArray)); } struct miqt_string QColorSpace_IccProfile(const QColorSpace* self) { QByteArray _qb = self->iccProfile(); struct miqt_string _ms; _ms.len = _qb.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _qb.data(), _ms.len); return _ms; } QColorTransform* QColorSpace_TransformationToColorSpace(const QColorSpace* self, QColorSpace* colorspace) { return new QColorTransform(self->transformationToColorSpace(*colorspace)); } void QColorSpace_SetTransferFunction2(QColorSpace* self, int transferFunction, float gamma) { self->setTransferFunction(static_cast(transferFunction), static_cast(gamma)); } QColorSpace* QColorSpace_WithTransferFunction2(const QColorSpace* self, int transferFunction, float gamma) { return new QColorSpace(self->withTransferFunction(static_cast(transferFunction), static_cast(gamma))); } void QColorSpace_Delete(QColorSpace* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }