#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "qpixmap.h" #include "gen_qpixmap.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QPixmap* QPixmap_new() { return new QPixmap(); } QPixmap* QPixmap_new2(int w, int h) { return new QPixmap(static_cast(w), static_cast(h)); } QPixmap* QPixmap_new3(QSize* param1) { return new QPixmap(*param1); } QPixmap* QPixmap_new4(const char* fileName, size_t fileName_Strlen) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return new QPixmap(fileName_QString); } QPixmap* QPixmap_new5(QPixmap* param1) { return new QPixmap(*param1); } QPixmap* QPixmap_new6(const char* fileName, size_t fileName_Strlen, const char* format) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return new QPixmap(fileName_QString, format); } QPixmap* QPixmap_new7(const char* fileName, size_t fileName_Strlen, const char* format, int flags) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return new QPixmap(fileName_QString, format, static_cast(flags)); } void QPixmap_OperatorAssign(QPixmap* self, QPixmap* param1) { self->operator=(*param1); } void QPixmap_Swap(QPixmap* self, QPixmap* other) { self->swap(*other); } bool QPixmap_IsNull(QPixmap* self) { return const_cast(self)->isNull(); } int QPixmap_DevType(QPixmap* self) { return const_cast(self)->devType(); } int QPixmap_Width(QPixmap* self) { return const_cast(self)->width(); } int QPixmap_Height(QPixmap* self) { return const_cast(self)->height(); } QSize* QPixmap_Size(QPixmap* self) { QSize ret = const_cast(self)->size(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QRect* QPixmap_Rect(QPixmap* self) { QRect ret = const_cast(self)->rect(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } int QPixmap_Depth(QPixmap* self) { return const_cast(self)->depth(); } int QPixmap_DefaultDepth() { return QPixmap::defaultDepth(); } void QPixmap_Fill(QPixmap* self) { self->fill(); } void QPixmap_Fill2(QPixmap* self, QPaintDevice* device, QPoint* ofs) { self->fill(device, *ofs); } void QPixmap_Fill3(QPixmap* self, QPaintDevice* device, int xofs, int yofs) { self->fill(device, static_cast(xofs), static_cast(yofs)); } QBitmap* QPixmap_Mask(QPixmap* self) { QBitmap ret = const_cast(self)->mask(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QBitmap(ret)); } void QPixmap_SetMask(QPixmap* self, QBitmap* mask) { self->setMask(*mask); } double QPixmap_DevicePixelRatio(QPixmap* self) { return const_cast(self)->devicePixelRatio(); } void QPixmap_SetDevicePixelRatio(QPixmap* self, double scaleFactor) { self->setDevicePixelRatio(static_cast(scaleFactor)); } bool QPixmap_HasAlpha(QPixmap* self) { return const_cast(self)->hasAlpha(); } bool QPixmap_HasAlphaChannel(QPixmap* self) { return const_cast(self)->hasAlphaChannel(); } QBitmap* QPixmap_CreateHeuristicMask(QPixmap* self) { QBitmap ret = const_cast(self)->createHeuristicMask(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QBitmap(ret)); } QBitmap* QPixmap_CreateMaskFromColor(QPixmap* self, QColor* maskColor) { QBitmap ret = const_cast(self)->createMaskFromColor(*maskColor); // Copy-construct value returned type into heap-allocated copy return static_cast(new QBitmap(ret)); } QPixmap* QPixmap_GrabWindow(uintptr_t param1) { QPixmap ret = QPixmap::grabWindow(static_cast(param1)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWidget(QObject* widget, QRect* rect) { QPixmap ret = QPixmap::grabWidget(widget, *rect); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWidgetWithWidget(QObject* widget) { QPixmap ret = QPixmap::grabWidget(widget); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Scaled(QPixmap* self, int w, int h) { QPixmap ret = const_cast(self)->scaled(static_cast(w), static_cast(h)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_ScaledWithQSize(QPixmap* self, QSize* s) { QPixmap ret = const_cast(self)->scaled(*s); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_ScaledToWidth(QPixmap* self, int w) { QPixmap ret = const_cast(self)->scaledToWidth(static_cast(w)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_ScaledToHeight(QPixmap* self, int h) { QPixmap ret = const_cast(self)->scaledToHeight(static_cast(h)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Transformed(QPixmap* self, QMatrix* param1) { QPixmap ret = const_cast(self)->transformed(*param1); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QMatrix* QPixmap_TrueMatrix(QMatrix* m, int w, int h) { QMatrix ret = QPixmap::trueMatrix(*m, static_cast(w), static_cast(h)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QMatrix(ret)); } QPixmap* QPixmap_TransformedWithQTransform(QPixmap* self, QTransform* param1) { QPixmap ret = const_cast(self)->transformed(*param1); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QTransform* QPixmap_TrueMatrix2(QTransform* m, int w, int h) { QTransform ret = QPixmap::trueMatrix(*m, static_cast(w), static_cast(h)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTransform(ret)); } QImage* QPixmap_ToImage(QPixmap* self) { QImage ret = const_cast(self)->toImage(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QImage(ret)); } QPixmap* QPixmap_FromImage(QImage* image) { QPixmap ret = QPixmap::fromImage(*image); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_FromImageReader(QImageReader* imageReader) { QPixmap ret = QPixmap::fromImageReader(imageReader); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } bool QPixmap_Load(QPixmap* self, const char* fileName, size_t fileName_Strlen) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return self->load(fileName_QString); } bool QPixmap_LoadFromData(QPixmap* self, const unsigned char* buf, unsigned int lenVal) { return self->loadFromData(static_cast(buf), static_cast(lenVal)); } bool QPixmap_LoadFromDataWithData(QPixmap* self, QByteArray* data) { return self->loadFromData(*data); } bool QPixmap_Save(QPixmap* self, const char* fileName, size_t fileName_Strlen) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return const_cast(self)->save(fileName_QString); } bool QPixmap_SaveWithDevice(QPixmap* self, QIODevice* device) { return const_cast(self)->save(device); } bool QPixmap_ConvertFromImage(QPixmap* self, QImage* img) { return self->convertFromImage(*img); } QPixmap* QPixmap_Copy(QPixmap* self, int x, int y, int width, int height) { QPixmap ret = const_cast(self)->copy(static_cast(x), static_cast(y), static_cast(width), static_cast(height)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Copy2(QPixmap* self) { QPixmap ret = const_cast(self)->copy(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } void QPixmap_Scroll(QPixmap* self, int dx, int dy, int x, int y, int width, int height) { self->scroll(static_cast(dx), static_cast(dy), static_cast(x), static_cast(y), static_cast(width), static_cast(height)); } void QPixmap_Scroll2(QPixmap* self, int dx, int dy, QRect* rect) { self->scroll(static_cast(dx), static_cast(dy), *rect); } long long QPixmap_CacheKey(QPixmap* self) { return const_cast(self)->cacheKey(); } bool QPixmap_IsDetached(QPixmap* self) { return const_cast(self)->isDetached(); } void QPixmap_Detach(QPixmap* self) { self->detach(); } bool QPixmap_IsQBitmap(QPixmap* self) { return const_cast(self)->isQBitmap(); } QPaintEngine* QPixmap_PaintEngine(QPixmap* self) { return const_cast(self)->paintEngine(); } bool QPixmap_OperatorNot(QPixmap* self) { return const_cast(self)->operator!(); } void QPixmap_Fill1(QPixmap* self, QColor* fillColor) { self->fill(*fillColor); } QBitmap* QPixmap_CreateHeuristicMask1(QPixmap* self, bool clipTight) { QBitmap ret = self->createHeuristicMask(clipTight); // Copy-construct value returned type into heap-allocated copy return static_cast(new QBitmap(ret)); } QBitmap* QPixmap_CreateMaskFromColor2(QPixmap* self, QColor* maskColor, uintptr_t mode) { QBitmap ret = self->createMaskFromColor(*maskColor, static_cast(mode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QBitmap(ret)); } QPixmap* QPixmap_GrabWindow2(uintptr_t param1, int x) { QPixmap ret = QPixmap::grabWindow(static_cast(param1), static_cast(x)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWindow3(uintptr_t param1, int x, int y) { QPixmap ret = QPixmap::grabWindow(static_cast(param1), static_cast(x), static_cast(y)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWindow4(uintptr_t param1, int x, int y, int w) { QPixmap ret = QPixmap::grabWindow(static_cast(param1), static_cast(x), static_cast(y), static_cast(w)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWindow5(uintptr_t param1, int x, int y, int w, int h) { QPixmap ret = QPixmap::grabWindow(static_cast(param1), static_cast(x), static_cast(y), static_cast(w), static_cast(h)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWidget2(QObject* widget, int x) { QPixmap ret = QPixmap::grabWidget(widget, static_cast(x)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWidget3(QObject* widget, int x, int y) { QPixmap ret = QPixmap::grabWidget(widget, static_cast(x), static_cast(y)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWidget4(QObject* widget, int x, int y, int w) { QPixmap ret = QPixmap::grabWidget(widget, static_cast(x), static_cast(y), static_cast(w)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_GrabWidget5(QObject* widget, int x, int y, int w, int h) { QPixmap ret = QPixmap::grabWidget(widget, static_cast(x), static_cast(y), static_cast(w), static_cast(h)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Scaled3(QPixmap* self, int w, int h, uintptr_t aspectMode) { QPixmap ret = self->scaled(static_cast(w), static_cast(h), static_cast(aspectMode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Scaled4(QPixmap* self, int w, int h, uintptr_t aspectMode, uintptr_t mode) { QPixmap ret = self->scaled(static_cast(w), static_cast(h), static_cast(aspectMode), static_cast(mode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Scaled2(QPixmap* self, QSize* s, uintptr_t aspectMode) { QPixmap ret = self->scaled(*s, static_cast(aspectMode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Scaled32(QPixmap* self, QSize* s, uintptr_t aspectMode, uintptr_t mode) { QPixmap ret = self->scaled(*s, static_cast(aspectMode), static_cast(mode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_ScaledToWidth2(QPixmap* self, int w, uintptr_t mode) { QPixmap ret = self->scaledToWidth(static_cast(w), static_cast(mode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_ScaledToHeight2(QPixmap* self, int h, uintptr_t mode) { QPixmap ret = self->scaledToHeight(static_cast(h), static_cast(mode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Transformed2(QPixmap* self, QMatrix* param1, uintptr_t mode) { QPixmap ret = self->transformed(*param1, static_cast(mode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_Transformed22(QPixmap* self, QTransform* param1, uintptr_t mode) { QPixmap ret = self->transformed(*param1, static_cast(mode)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_FromImage2(QImage* image, int flags) { QPixmap ret = QPixmap::fromImage(*image, static_cast(flags)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QPixmap_FromImageReader2(QImageReader* imageReader, int flags) { QPixmap ret = QPixmap::fromImageReader(imageReader, static_cast(flags)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } bool QPixmap_Load2(QPixmap* self, const char* fileName, size_t fileName_Strlen, const char* format) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return self->load(fileName_QString, format); } bool QPixmap_Load3(QPixmap* self, const char* fileName, size_t fileName_Strlen, const char* format, int flags) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return self->load(fileName_QString, format, static_cast(flags)); } bool QPixmap_LoadFromData3(QPixmap* self, const unsigned char* buf, unsigned int lenVal, const char* format) { return self->loadFromData(static_cast(buf), static_cast(lenVal), format); } bool QPixmap_LoadFromData4(QPixmap* self, const unsigned char* buf, unsigned int lenVal, const char* format, int flags) { return self->loadFromData(static_cast(buf), static_cast(lenVal), format, static_cast(flags)); } bool QPixmap_LoadFromData2(QPixmap* self, QByteArray* data, const char* format) { return self->loadFromData(*data, format); } bool QPixmap_LoadFromData32(QPixmap* self, QByteArray* data, const char* format, int flags) { return self->loadFromData(*data, format, static_cast(flags)); } bool QPixmap_Save2(QPixmap* self, const char* fileName, size_t fileName_Strlen, const char* format) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return self->save(fileName_QString, format); } bool QPixmap_Save3(QPixmap* self, const char* fileName, size_t fileName_Strlen, const char* format, int quality) { QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen); return self->save(fileName_QString, format, static_cast(quality)); } bool QPixmap_Save22(QPixmap* self, QIODevice* device, const char* format) { return self->save(device, format); } bool QPixmap_Save32(QPixmap* self, QIODevice* device, const char* format, int quality) { return self->save(device, format, static_cast(quality)); } bool QPixmap_ConvertFromImage2(QPixmap* self, QImage* img, int flags) { return self->convertFromImage(*img, static_cast(flags)); } QPixmap* QPixmap_Copy1(QPixmap* self, QRect* rect) { QPixmap ret = self->copy(*rect); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } void QPixmap_Scroll7(QPixmap* self, int dx, int dy, int x, int y, int width, int height, QRegion* exposed) { self->scroll(static_cast(dx), static_cast(dy), static_cast(x), static_cast(y), static_cast(width), static_cast(height), exposed); } void QPixmap_Scroll4(QPixmap* self, int dx, int dy, QRect* rect, QRegion* exposed) { self->scroll(static_cast(dx), static_cast(dy), *rect, exposed); } void QPixmap_Delete(QPixmap* self) { delete self; }