miqt/qt/gen_qpixmapcache.cpp

98 lines
2.7 KiB
C++
Raw Normal View History

#include <QPixmap>
#include <QPixmapCache>
2024-08-29 07:01:51 +00:00
#define WORKAROUND_INNER_CLASS_DEFINITION_QPixmapCache__Key
#include <QString>
2024-08-29 07:01:51 +00:00
#include <QByteArray>
#include <cstring>
#include "qpixmapcache.h"
#include "gen_qpixmapcache.h"
#include "_cgo_export.h"
int QPixmapCache_CacheLimit() {
return QPixmapCache::cacheLimit();
}
void QPixmapCache_SetCacheLimit(int cacheLimit) {
QPixmapCache::setCacheLimit(static_cast<int>(cacheLimit));
}
QPixmap* QPixmapCache_Find(struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
return QPixmapCache::find(key_QString);
}
bool QPixmapCache_Find2(struct miqt_string* key, QPixmap* pixmap) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
return QPixmapCache::find(key_QString, *pixmap);
}
bool QPixmapCache_Find3(struct miqt_string* key, QPixmap* pixmap) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
return QPixmapCache::find(key_QString, pixmap);
}
2024-08-29 07:01:51 +00:00
bool QPixmapCache_Find4(QPixmapCache__Key* key, QPixmap* pixmap) {
return QPixmapCache::find(*key, pixmap);
}
bool QPixmapCache_Insert(struct miqt_string* key, QPixmap* pixmap) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
return QPixmapCache::insert(key_QString, *pixmap);
}
2024-08-29 07:01:51 +00:00
QPixmapCache__Key* QPixmapCache_InsertWithPixmap(QPixmap* pixmap) {
QPixmapCache::Key _ret = QPixmapCache::insert(*pixmap);
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QPixmapCache::Key*>(new QPixmapCache::Key(_ret));
2024-08-29 07:01:51 +00:00
}
bool QPixmapCache_Replace(QPixmapCache__Key* key, QPixmap* pixmap) {
return QPixmapCache::replace(*key, *pixmap);
}
void QPixmapCache_Remove(struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
QPixmapCache::remove(key_QString);
}
2024-08-29 07:01:51 +00:00
void QPixmapCache_RemoveWithKey(QPixmapCache__Key* key) {
QPixmapCache::remove(*key);
}
void QPixmapCache_Clear() {
QPixmapCache::clear();
}
void QPixmapCache_Delete(QPixmapCache* self) {
delete self;
}
2024-08-29 07:01:51 +00:00
QPixmapCache__Key* QPixmapCache__Key_new() {
return new QPixmapCache::Key();
}
QPixmapCache__Key* QPixmapCache__Key_new2(QPixmapCache__Key* other) {
return new QPixmapCache::Key(*other);
}
bool QPixmapCache__Key_OperatorEqual(const QPixmapCache__Key* self, QPixmapCache__Key* key) {
return self->operator==(*key);
2024-08-29 07:01:51 +00:00
}
bool QPixmapCache__Key_OperatorNotEqual(const QPixmapCache__Key* self, QPixmapCache__Key* key) {
return self->operator!=(*key);
2024-08-29 07:01:51 +00:00
}
void QPixmapCache__Key_Swap(QPixmapCache__Key* self, QPixmapCache__Key* other) {
self->swap(*other);
}
bool QPixmapCache__Key_IsValid(const QPixmapCache__Key* self) {
return self->isValid();
2024-08-29 07:01:51 +00:00
}
void QPixmapCache__Key_Delete(QPixmapCache__Key* self) {
delete self;
}