miqt/qt6/gen_qcolortransform.h

42 lines
1.2 KiB
C++

#pragma once
#ifndef MIQT_QT6_GEN_QCOLORTRANSFORM_H
#define MIQT_QT6_GEN_QCOLORTRANSFORM_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#include "../libmiqt/libmiqt.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
class QColor;
class QColorTransform;
class QRgba64;
#else
typedef struct QColor QColor;
typedef struct QColorTransform QColorTransform;
typedef struct QRgba64 QRgba64;
#endif
void QColorTransform_new(QColorTransform** outptr_QColorTransform);
void QColorTransform_new2(QColorTransform* colorTransform, QColorTransform** outptr_QColorTransform);
void QColorTransform_OperatorAssign(QColorTransform* self, QColorTransform* other);
void QColorTransform_Swap(QColorTransform* self, QColorTransform* other);
bool QColorTransform_IsIdentity(const QColorTransform* self);
unsigned int QColorTransform_Map(const QColorTransform* self, unsigned int argb);
QRgba64* QColorTransform_MapWithRgba64(const QColorTransform* self, QRgba64* rgba64);
QColor* QColorTransform_MapWithColor(const QColorTransform* self, QColor* color);
void QColorTransform_Delete(QColorTransform* self, bool isSubclass);
#ifdef __cplusplus
} /* extern C */
#endif
#endif