mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
88 lines
2.2 KiB
C++
88 lines
2.2 KiB
C++
#include <QBitmap>
|
|
#include <QImage>
|
|
#include <QMatrix>
|
|
#include <QPixmap>
|
|
#include <QSize>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QTransform>
|
|
#include "qbitmap.h"
|
|
#include "gen_qbitmap.h"
|
|
#include "_cgo_export.h"
|
|
|
|
QBitmap* QBitmap_new() {
|
|
return new QBitmap();
|
|
}
|
|
|
|
QBitmap* QBitmap_new2(QPixmap* param1) {
|
|
return new QBitmap(*param1);
|
|
}
|
|
|
|
QBitmap* QBitmap_new3(int w, int h) {
|
|
return new QBitmap(static_cast<int>(w), static_cast<int>(h));
|
|
}
|
|
|
|
QBitmap* QBitmap_new4(QSize* param1) {
|
|
return new QBitmap(*param1);
|
|
}
|
|
|
|
QBitmap* QBitmap_new5(struct miqt_string* fileName) {
|
|
QString fileName_QString = QString::fromUtf8(&fileName->data, fileName->len);
|
|
return new QBitmap(fileName_QString);
|
|
}
|
|
|
|
QBitmap* QBitmap_new6(QBitmap* other) {
|
|
return new QBitmap(*other);
|
|
}
|
|
|
|
QBitmap* QBitmap_new7(struct miqt_string* fileName, const char* format) {
|
|
QString fileName_QString = QString::fromUtf8(&fileName->data, fileName->len);
|
|
return new QBitmap(fileName_QString, format);
|
|
}
|
|
|
|
void QBitmap_OperatorAssign(QBitmap* self, QBitmap* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QBitmap_OperatorAssignWithQPixmap(QBitmap* self, QPixmap* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QBitmap_Swap(QBitmap* self, QBitmap* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
void QBitmap_Clear(QBitmap* self) {
|
|
self->clear();
|
|
}
|
|
|
|
QBitmap* QBitmap_FromImage(QImage* image) {
|
|
return new QBitmap(QBitmap::fromImage(*image));
|
|
}
|
|
|
|
QBitmap* QBitmap_FromData(QSize* size, const unsigned char* bits) {
|
|
return new QBitmap(QBitmap::fromData(*size, static_cast<const uchar*>(bits)));
|
|
}
|
|
|
|
QBitmap* QBitmap_Transformed(const QBitmap* self, QMatrix* param1) {
|
|
return new QBitmap(self->transformed(*param1));
|
|
}
|
|
|
|
QBitmap* QBitmap_TransformedWithMatrix(const QBitmap* self, QTransform* matrix) {
|
|
return new QBitmap(self->transformed(*matrix));
|
|
}
|
|
|
|
QBitmap* QBitmap_FromImage2(QImage* image, int flags) {
|
|
return new QBitmap(QBitmap::fromImage(*image, static_cast<Qt::ImageConversionFlags>(flags)));
|
|
}
|
|
|
|
QBitmap* QBitmap_FromData3(QSize* size, const unsigned char* bits, int monoFormat) {
|
|
return new QBitmap(QBitmap::fromData(*size, static_cast<const uchar*>(bits), static_cast<QImage::Format>(monoFormat)));
|
|
}
|
|
|
|
void QBitmap_Delete(QBitmap* self) {
|
|
delete self;
|
|
}
|
|
|