miqt/qt/gen_qrgba64.h

54 lines
1.7 KiB
C++

#ifndef GEN_QRGBA64_H
#define GEN_QRGBA64_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#include "binding.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
class QRgba64;
#else
typedef struct QRgba64 QRgba64;
#endif
QRgba64* QRgba64_new();
QRgba64* QRgba64_new2(QRgba64* param1);
QRgba64* QRgba64_FromRgba64(unsigned long long c);
QRgba64* QRgba64_FromRgba642(uint16_t red, uint16_t green, uint16_t blue, uint16_t alpha);
QRgba64* QRgba64_FromRgba(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha);
QRgba64* QRgba64_FromArgb32(unsigned int rgb);
bool QRgba64_IsOpaque(const QRgba64* self);
bool QRgba64_IsTransparent(const QRgba64* self);
uint16_t QRgba64_Red(const QRgba64* self);
uint16_t QRgba64_Green(const QRgba64* self);
uint16_t QRgba64_Blue(const QRgba64* self);
uint16_t QRgba64_Alpha(const QRgba64* self);
void QRgba64_SetRed(QRgba64* self, uint16_t _red);
void QRgba64_SetGreen(QRgba64* self, uint16_t _green);
void QRgba64_SetBlue(QRgba64* self, uint16_t _blue);
void QRgba64_SetAlpha(QRgba64* self, uint16_t _alpha);
unsigned char QRgba64_Red8(const QRgba64* self);
unsigned char QRgba64_Green8(const QRgba64* self);
unsigned char QRgba64_Blue8(const QRgba64* self);
unsigned char QRgba64_Alpha8(const QRgba64* self);
unsigned int QRgba64_ToArgb32(const QRgba64* self);
uint16_t QRgba64_ToRgb16(const QRgba64* self);
QRgba64* QRgba64_Premultiplied(const QRgba64* self);
QRgba64* QRgba64_Unpremultiplied(const QRgba64* self);
void QRgba64_OperatorAssign(QRgba64* self, unsigned long long _rgba);
void QRgba64_Delete(QRgba64* self);
#ifdef __cplusplus
} /* extern C */
#endif
#endif