miqt/qt6/gen_qpixmap.h

150 lines
6.9 KiB
C
Raw Normal View History

#pragma once
#ifndef MIQT_QT6_GEN_QPIXMAP_H
#define MIQT_QT6_GEN_QPIXMAP_H
2024-10-20 05:21:03 +00:00
#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 QBitmap;
class QColor;
class QIODevice;
class QImage;
class QImageReader;
2024-11-19 06:29:06 +00:00
class QPaintDevice;
2024-10-20 05:21:03 +00:00
class QPaintEngine;
2024-11-19 06:29:06 +00:00
class QPainter;
2024-10-20 05:21:03 +00:00
class QPixmap;
2024-11-19 06:29:06 +00:00
class QPoint;
2024-10-20 05:21:03 +00:00
class QRect;
class QRegion;
class QSize;
class QSizeF;
class QTransform;
#else
typedef struct QBitmap QBitmap;
typedef struct QColor QColor;
typedef struct QIODevice QIODevice;
typedef struct QImage QImage;
typedef struct QImageReader QImageReader;
2024-11-19 06:29:06 +00:00
typedef struct QPaintDevice QPaintDevice;
2024-10-20 05:21:03 +00:00
typedef struct QPaintEngine QPaintEngine;
2024-11-19 06:29:06 +00:00
typedef struct QPainter QPainter;
2024-10-20 05:21:03 +00:00
typedef struct QPixmap QPixmap;
2024-11-19 06:29:06 +00:00
typedef struct QPoint QPoint;
2024-10-20 05:21:03 +00:00
typedef struct QRect QRect;
typedef struct QRegion QRegion;
typedef struct QSize QSize;
typedef struct QSizeF QSizeF;
typedef struct QTransform QTransform;
#endif
2024-12-07 04:15:57 +00:00
QPixmap* QPixmap_new();
QPixmap* QPixmap_new2(int w, int h);
QPixmap* QPixmap_new3(QSize* param1);
QPixmap* QPixmap_new4(struct miqt_string fileName);
QPixmap* QPixmap_new5(QPixmap* param1);
QPixmap* QPixmap_new6(struct miqt_string fileName, const char* format);
QPixmap* QPixmap_new7(struct miqt_string fileName, const char* format, int flags);
void QPixmap_virtbase(QPixmap* src, QPaintDevice** outptr_QPaintDevice);
2024-10-20 05:21:03 +00:00
void QPixmap_OperatorAssign(QPixmap* self, QPixmap* param1);
void QPixmap_Swap(QPixmap* self, QPixmap* other);
bool QPixmap_IsNull(const QPixmap* self);
int QPixmap_DevType(const QPixmap* self);
int QPixmap_Width(const QPixmap* self);
int QPixmap_Height(const QPixmap* self);
QSize* QPixmap_Size(const QPixmap* self);
QRect* QPixmap_Rect(const QPixmap* self);
int QPixmap_Depth(const QPixmap* self);
int QPixmap_DefaultDepth();
void QPixmap_Fill(QPixmap* self);
QBitmap* QPixmap_Mask(const QPixmap* self);
void QPixmap_SetMask(QPixmap* self, QBitmap* mask);
double QPixmap_DevicePixelRatio(const QPixmap* self);
void QPixmap_SetDevicePixelRatio(QPixmap* self, double scaleFactor);
QSizeF* QPixmap_DeviceIndependentSize(const QPixmap* self);
bool QPixmap_HasAlpha(const QPixmap* self);
bool QPixmap_HasAlphaChannel(const QPixmap* self);
QBitmap* QPixmap_CreateHeuristicMask(const QPixmap* self);
QBitmap* QPixmap_CreateMaskFromColor(const QPixmap* self, QColor* maskColor);
QPixmap* QPixmap_Scaled(const QPixmap* self, int w, int h);
QPixmap* QPixmap_ScaledWithQSize(const QPixmap* self, QSize* s);
QPixmap* QPixmap_ScaledToWidth(const QPixmap* self, int w);
QPixmap* QPixmap_ScaledToHeight(const QPixmap* self, int h);
QPixmap* QPixmap_Transformed(const QPixmap* self, QTransform* param1);
QTransform* QPixmap_TrueMatrix(QTransform* m, int w, int h);
QImage* QPixmap_ToImage(const QPixmap* self);
QPixmap* QPixmap_FromImage(QImage* image);
QPixmap* QPixmap_FromImageReader(QImageReader* imageReader);
bool QPixmap_Load(QPixmap* self, struct miqt_string fileName);
bool QPixmap_LoadFromData(QPixmap* self, const unsigned char* buf, unsigned int lenVal);
bool QPixmap_LoadFromDataWithData(QPixmap* self, struct miqt_string data);
bool QPixmap_Save(const QPixmap* self, struct miqt_string fileName);
bool QPixmap_SaveWithDevice(const QPixmap* self, QIODevice* device);
bool QPixmap_ConvertFromImage(QPixmap* self, QImage* img);
QPixmap* QPixmap_Copy(const QPixmap* self, int x, int y, int width, int height);
QPixmap* QPixmap_Copy2(const QPixmap* self);
void QPixmap_Scroll(QPixmap* self, int dx, int dy, int x, int y, int width, int height);
void QPixmap_Scroll2(QPixmap* self, int dx, int dy, QRect* rect);
long long QPixmap_CacheKey(const QPixmap* self);
bool QPixmap_IsDetached(const QPixmap* self);
void QPixmap_Detach(QPixmap* self);
bool QPixmap_IsQBitmap(const QPixmap* self);
QPaintEngine* QPixmap_PaintEngine(const QPixmap* self);
bool QPixmap_OperatorNot(const QPixmap* self);
2024-11-19 06:29:06 +00:00
int QPixmap_Metric(const QPixmap* self, int param1);
2024-10-20 05:21:03 +00:00
void QPixmap_Fill1(QPixmap* self, QColor* fillColor);
QBitmap* QPixmap_CreateHeuristicMask1(const QPixmap* self, bool clipTight);
QBitmap* QPixmap_CreateMaskFromColor2(const QPixmap* self, QColor* maskColor, int mode);
QPixmap* QPixmap_Scaled3(const QPixmap* self, int w, int h, int aspectMode);
QPixmap* QPixmap_Scaled4(const QPixmap* self, int w, int h, int aspectMode, int mode);
QPixmap* QPixmap_Scaled2(const QPixmap* self, QSize* s, int aspectMode);
QPixmap* QPixmap_Scaled32(const QPixmap* self, QSize* s, int aspectMode, int mode);
QPixmap* QPixmap_ScaledToWidth2(const QPixmap* self, int w, int mode);
QPixmap* QPixmap_ScaledToHeight2(const QPixmap* self, int h, int mode);
QPixmap* QPixmap_Transformed2(const QPixmap* self, QTransform* param1, int mode);
QPixmap* QPixmap_FromImage2(QImage* image, int flags);
QPixmap* QPixmap_FromImageReader2(QImageReader* imageReader, int flags);
bool QPixmap_Load2(QPixmap* self, struct miqt_string fileName, const char* format);
bool QPixmap_Load3(QPixmap* self, struct miqt_string fileName, const char* format, int flags);
bool QPixmap_LoadFromData3(QPixmap* self, const unsigned char* buf, unsigned int lenVal, const char* format);
bool QPixmap_LoadFromData4(QPixmap* self, const unsigned char* buf, unsigned int lenVal, const char* format, int flags);
bool QPixmap_LoadFromData2(QPixmap* self, struct miqt_string data, const char* format);
bool QPixmap_LoadFromData32(QPixmap* self, struct miqt_string data, const char* format, int flags);
bool QPixmap_Save2(const QPixmap* self, struct miqt_string fileName, const char* format);
bool QPixmap_Save3(const QPixmap* self, struct miqt_string fileName, const char* format, int quality);
bool QPixmap_Save22(const QPixmap* self, QIODevice* device, const char* format);
bool QPixmap_Save32(const QPixmap* self, QIODevice* device, const char* format, int quality);
bool QPixmap_ConvertFromImage2(QPixmap* self, QImage* img, int flags);
QPixmap* QPixmap_Copy1(const QPixmap* self, QRect* rect);
void QPixmap_Scroll7(QPixmap* self, int dx, int dy, int x, int y, int width, int height, QRegion* exposed);
void QPixmap_Scroll4(QPixmap* self, int dx, int dy, QRect* rect, QRegion* exposed);
2024-11-19 06:29:06 +00:00
void QPixmap_override_virtual_DevType(void* self, intptr_t slot);
int QPixmap_virtualbase_DevType(const void* self);
void QPixmap_override_virtual_PaintEngine(void* self, intptr_t slot);
QPaintEngine* QPixmap_virtualbase_PaintEngine(const void* self);
void QPixmap_override_virtual_Metric(void* self, intptr_t slot);
int QPixmap_virtualbase_Metric(const void* self, int param1);
void QPixmap_override_virtual_InitPainter(void* self, intptr_t slot);
void QPixmap_virtualbase_InitPainter(const void* self, QPainter* painter);
void QPixmap_override_virtual_Redirected(void* self, intptr_t slot);
QPaintDevice* QPixmap_virtualbase_Redirected(const void* self, QPoint* offset);
void QPixmap_override_virtual_SharedPainter(void* self, intptr_t slot);
QPainter* QPixmap_virtualbase_SharedPainter(const void* self);
void QPixmap_Delete(QPixmap* self, bool isSubclass);
2024-10-20 05:21:03 +00:00
#ifdef __cplusplus
} /* extern C */
#endif
#endif