mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_GEN_QCOLORTRANSFORM_H
|
|
#define MIQT_QT_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
|
|
|
|
QColorTransform* QColorTransform_new();
|
|
QColorTransform* QColorTransform_new2(QColorTransform* colorTransform);
|
|
void QColorTransform_OperatorAssign(QColorTransform* self, QColorTransform* other);
|
|
void QColorTransform_Swap(QColorTransform* self, QColorTransform* other);
|
|
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
|