#include #include "qpixelformat.h" #include "gen_qpixelformat.h" #include "_cgo_export.h" QPixelFormat* QPixelFormat_new() { return new QPixelFormat(); } QPixelFormat* QPixelFormat_new2(int colorModel, unsigned char firstSize, unsigned char secondSize, unsigned char thirdSize, unsigned char fourthSize, unsigned char fifthSize, unsigned char alphaSize, int alphaUsage, int alphaPosition, int premultiplied, int typeInterpretation) { return new QPixelFormat(static_cast(colorModel), static_cast(firstSize), static_cast(secondSize), static_cast(thirdSize), static_cast(fourthSize), static_cast(fifthSize), static_cast(alphaSize), static_cast(alphaUsage), static_cast(alphaPosition), static_cast(premultiplied), static_cast(typeInterpretation)); } QPixelFormat* QPixelFormat_new3(QPixelFormat* param1) { return new QPixelFormat(*param1); } QPixelFormat* QPixelFormat_new4(int colorModel, unsigned char firstSize, unsigned char secondSize, unsigned char thirdSize, unsigned char fourthSize, unsigned char fifthSize, unsigned char alphaSize, int alphaUsage, int alphaPosition, int premultiplied, int typeInterpretation, int byteOrder) { return new QPixelFormat(static_cast(colorModel), static_cast(firstSize), static_cast(secondSize), static_cast(thirdSize), static_cast(fourthSize), static_cast(fifthSize), static_cast(alphaSize), static_cast(alphaUsage), static_cast(alphaPosition), static_cast(premultiplied), static_cast(typeInterpretation), static_cast(byteOrder)); } QPixelFormat* QPixelFormat_new5(int colorModel, unsigned char firstSize, unsigned char secondSize, unsigned char thirdSize, unsigned char fourthSize, unsigned char fifthSize, unsigned char alphaSize, int alphaUsage, int alphaPosition, int premultiplied, int typeInterpretation, int byteOrder, unsigned char subEnum) { return new QPixelFormat(static_cast(colorModel), static_cast(firstSize), static_cast(secondSize), static_cast(thirdSize), static_cast(fourthSize), static_cast(fifthSize), static_cast(alphaSize), static_cast(alphaUsage), static_cast(alphaPosition), static_cast(premultiplied), static_cast(typeInterpretation), static_cast(byteOrder), static_cast(subEnum)); } int QPixelFormat_ColorModel(const QPixelFormat* self) { QPixelFormat::ColorModel _ret = self->colorModel(); return static_cast(_ret); } unsigned char QPixelFormat_ChannelCount(const QPixelFormat* self) { uchar _ret = self->channelCount(); return static_cast(_ret); } unsigned char QPixelFormat_RedSize(const QPixelFormat* self) { uchar _ret = self->redSize(); return static_cast(_ret); } unsigned char QPixelFormat_GreenSize(const QPixelFormat* self) { uchar _ret = self->greenSize(); return static_cast(_ret); } unsigned char QPixelFormat_BlueSize(const QPixelFormat* self) { uchar _ret = self->blueSize(); return static_cast(_ret); } unsigned char QPixelFormat_CyanSize(const QPixelFormat* self) { uchar _ret = self->cyanSize(); return static_cast(_ret); } unsigned char QPixelFormat_MagentaSize(const QPixelFormat* self) { uchar _ret = self->magentaSize(); return static_cast(_ret); } unsigned char QPixelFormat_YellowSize(const QPixelFormat* self) { uchar _ret = self->yellowSize(); return static_cast(_ret); } unsigned char QPixelFormat_BlackSize(const QPixelFormat* self) { uchar _ret = self->blackSize(); return static_cast(_ret); } unsigned char QPixelFormat_HueSize(const QPixelFormat* self) { uchar _ret = self->hueSize(); return static_cast(_ret); } unsigned char QPixelFormat_SaturationSize(const QPixelFormat* self) { uchar _ret = self->saturationSize(); return static_cast(_ret); } unsigned char QPixelFormat_LightnessSize(const QPixelFormat* self) { uchar _ret = self->lightnessSize(); return static_cast(_ret); } unsigned char QPixelFormat_BrightnessSize(const QPixelFormat* self) { uchar _ret = self->brightnessSize(); return static_cast(_ret); } unsigned char QPixelFormat_AlphaSize(const QPixelFormat* self) { uchar _ret = self->alphaSize(); return static_cast(_ret); } unsigned char QPixelFormat_BitsPerPixel(const QPixelFormat* self) { uchar _ret = self->bitsPerPixel(); return static_cast(_ret); } int QPixelFormat_AlphaUsage(const QPixelFormat* self) { QPixelFormat::AlphaUsage _ret = self->alphaUsage(); return static_cast(_ret); } int QPixelFormat_AlphaPosition(const QPixelFormat* self) { QPixelFormat::AlphaPosition _ret = self->alphaPosition(); return static_cast(_ret); } int QPixelFormat_Premultiplied(const QPixelFormat* self) { QPixelFormat::AlphaPremultiplied _ret = self->premultiplied(); return static_cast(_ret); } int QPixelFormat_TypeInterpretation(const QPixelFormat* self) { QPixelFormat::TypeInterpretation _ret = self->typeInterpretation(); return static_cast(_ret); } int QPixelFormat_ByteOrder(const QPixelFormat* self) { QPixelFormat::ByteOrder _ret = self->byteOrder(); return static_cast(_ret); } int QPixelFormat_YuvLayout(const QPixelFormat* self) { QPixelFormat::YUVLayout _ret = self->yuvLayout(); return static_cast(_ret); } unsigned char QPixelFormat_SubEnum(const QPixelFormat* self) { uchar _ret = self->subEnum(); return static_cast(_ret); } void QPixelFormat_Delete(QPixelFormat* self) { delete self; }