miqt/qt/gen_qpixmapcache.cpp

102 lines
2.8 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"
2024-08-29 07:01:51 +00:00
#include "gen_qpixmapcache.h"
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
int QPixmapCache_CacheLimit() {
return QPixmapCache::cacheLimit();
}
void QPixmapCache_SetCacheLimit(int cacheLimit) {
QPixmapCache::setCacheLimit(static_cast<int>(cacheLimit));
}
QPixmap* QPixmapCache_Find(const char* key, size_t key_Strlen) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
return QPixmapCache::find(key_QString);
}
bool QPixmapCache_Find2(const char* key, size_t key_Strlen, QPixmap* pixmap) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
return QPixmapCache::find(key_QString, *pixmap);
}
bool QPixmapCache_Find3(const char* key, size_t key_Strlen, QPixmap* pixmap) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
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(const char* key, size_t key_Strlen, QPixmap* pixmap) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
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);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QPixmapCache::Key*>(new QPixmapCache::Key(ret));
}
bool QPixmapCache_Replace(QPixmapCache__Key* key, QPixmap* pixmap) {
return QPixmapCache::replace(*key, *pixmap);
}
void QPixmapCache_Remove(const char* key, size_t key_Strlen) {
QString key_QString = QString::fromUtf8(key, key_Strlen);
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;
}