mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
#include <QColor>
|
|
#include <QColorTransform>
|
|
#include <QRgba64>
|
|
#include "qcolortransform.h"
|
|
|
|
#include "gen_qcolortransform.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
QColorTransform* QColorTransform_new() {
|
|
return new QColorTransform();
|
|
}
|
|
|
|
QColorTransform* QColorTransform_new2(QColorTransform* colorTransform) {
|
|
return new QColorTransform(*colorTransform);
|
|
}
|
|
|
|
void QColorTransform_OperatorAssign(QColorTransform* self, QColorTransform* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QColorTransform_Swap(QColorTransform* self, QColorTransform* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
unsigned int QColorTransform_Map(const QColorTransform* self, unsigned int argb) {
|
|
return self->map(static_cast<QRgb>(argb));
|
|
}
|
|
|
|
QRgba64* QColorTransform_MapWithRgba64(const QColorTransform* self, QRgba64* rgba64) {
|
|
QRgba64 ret = self->map(*rgba64);
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QRgba64*>(new QRgba64(ret));
|
|
}
|
|
|
|
QColor* QColorTransform_MapWithColor(const QColorTransform* self, QColor* color) {
|
|
QColor ret = self->map(*color);
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QColor*>(new QColor(ret));
|
|
}
|
|
|
|
void QColorTransform_Delete(QColorTransform* self) {
|
|
delete self;
|
|
}
|
|
|