2024-10-20 05:21:03 +00:00
|
|
|
#include <QAbstractItemModel>
|
2024-11-04 07:59:22 +00:00
|
|
|
#include <QMap>
|
2024-10-20 05:21:03 +00:00
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QModelIndex>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QString>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
|
|
|
#include <QTransposeProxyModel>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <qtransposeproxymodel.h>
|
|
|
|
#include "gen_qtransposeproxymodel.h"
|
|
|
|
#include "_cgo_export.h"
|
|
|
|
|
|
|
|
QTransposeProxyModel* QTransposeProxyModel_new() {
|
|
|
|
return new QTransposeProxyModel();
|
|
|
|
}
|
|
|
|
|
|
|
|
QTransposeProxyModel* QTransposeProxyModel_new2(QObject* parent) {
|
|
|
|
return new QTransposeProxyModel(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
QMetaObject* QTransposeProxyModel_MetaObject(const QTransposeProxyModel* self) {
|
|
|
|
return (QMetaObject*) self->metaObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
void* QTransposeProxyModel_Metacast(QTransposeProxyModel* self, const char* param1) {
|
|
|
|
return self->qt_metacast(param1);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QTransposeProxyModel_Tr(const char* s) {
|
|
|
|
QString _ret = QTransposeProxyModel::tr(s);
|
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
struct miqt_string _ms;
|
|
|
|
_ms.len = _b.length();
|
|
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
|
|
return _ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QTransposeProxyModel_SetSourceModel(QTransposeProxyModel* self, QAbstractItemModel* newSourceModel) {
|
|
|
|
self->setSourceModel(newSourceModel);
|
|
|
|
}
|
|
|
|
|
|
|
|
int QTransposeProxyModel_RowCount(const QTransposeProxyModel* self) {
|
|
|
|
return self->rowCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
int QTransposeProxyModel_ColumnCount(const QTransposeProxyModel* self) {
|
|
|
|
return self->columnCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant* QTransposeProxyModel_HeaderData(const QTransposeProxyModel* self, int section, int orientation) {
|
|
|
|
return new QVariant(self->headerData(static_cast<int>(section), static_cast<Qt::Orientation>(orientation)));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_SetHeaderData(QTransposeProxyModel* self, int section, int orientation, QVariant* value) {
|
|
|
|
return self->setHeaderData(static_cast<int>(section), static_cast<Qt::Orientation>(orientation), *value);
|
|
|
|
}
|
|
|
|
|
2024-11-17 06:21:37 +00:00
|
|
|
bool QTransposeProxyModel_SetItemData(QTransposeProxyModel* self, QModelIndex* index, struct miqt_map /* of int to QVariant* */ roles) {
|
2024-11-04 07:59:22 +00:00
|
|
|
QMap<int, QVariant> roles_QMap;
|
|
|
|
int* roles_karr = static_cast<int*>(roles.keys);
|
|
|
|
QVariant** roles_varr = static_cast<QVariant**>(roles.values);
|
|
|
|
for(size_t i = 0; i < roles.len; ++i) {
|
|
|
|
roles_QMap[static_cast<int>(roles_karr[i])] = *(roles_varr[i]);
|
|
|
|
}
|
|
|
|
return self->setItemData(*index, roles_QMap);
|
|
|
|
}
|
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
QSize* QTransposeProxyModel_Span(const QTransposeProxyModel* self, QModelIndex* index) {
|
|
|
|
return new QSize(self->span(*index));
|
|
|
|
}
|
|
|
|
|
2024-11-17 06:21:37 +00:00
|
|
|
struct miqt_map /* of int to QVariant* */ QTransposeProxyModel_ItemData(const QTransposeProxyModel* self, QModelIndex* index) {
|
2024-11-04 07:59:22 +00:00
|
|
|
QMap<int, QVariant> _ret = self->itemData(*index);
|
|
|
|
// Convert QMap<> from C++ memory to manually-managed C memory
|
|
|
|
int* _karr = static_cast<int*>(malloc(sizeof(int) * _ret.size()));
|
|
|
|
QVariant** _varr = static_cast<QVariant**>(malloc(sizeof(QVariant*) * _ret.size()));
|
|
|
|
int _ctr = 0;
|
|
|
|
for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) {
|
|
|
|
_karr[_ctr] = _itr->first;
|
|
|
|
_varr[_ctr] = new QVariant(_itr->second);
|
|
|
|
_ctr++;
|
|
|
|
}
|
|
|
|
struct miqt_map _out;
|
|
|
|
_out.len = _ret.size();
|
|
|
|
_out.keys = static_cast<void*>(_karr);
|
|
|
|
_out.values = static_cast<void*>(_varr);
|
|
|
|
return _out;
|
|
|
|
}
|
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
QModelIndex* QTransposeProxyModel_MapFromSource(const QTransposeProxyModel* self, QModelIndex* sourceIndex) {
|
|
|
|
return new QModelIndex(self->mapFromSource(*sourceIndex));
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex* QTransposeProxyModel_MapToSource(const QTransposeProxyModel* self, QModelIndex* proxyIndex) {
|
|
|
|
return new QModelIndex(self->mapToSource(*proxyIndex));
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex* QTransposeProxyModel_Parent(const QTransposeProxyModel* self, QModelIndex* index) {
|
|
|
|
return new QModelIndex(self->parent(*index));
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex* QTransposeProxyModel_Index(const QTransposeProxyModel* self, int row, int column) {
|
|
|
|
return new QModelIndex(self->index(static_cast<int>(row), static_cast<int>(column)));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_InsertRows(QTransposeProxyModel* self, int row, int count) {
|
|
|
|
return self->insertRows(static_cast<int>(row), static_cast<int>(count));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_RemoveRows(QTransposeProxyModel* self, int row, int count) {
|
|
|
|
return self->removeRows(static_cast<int>(row), static_cast<int>(count));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_MoveRows(QTransposeProxyModel* self, QModelIndex* sourceParent, int sourceRow, int count, QModelIndex* destinationParent, int destinationChild) {
|
|
|
|
return self->moveRows(*sourceParent, static_cast<int>(sourceRow), static_cast<int>(count), *destinationParent, static_cast<int>(destinationChild));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_InsertColumns(QTransposeProxyModel* self, int column, int count) {
|
|
|
|
return self->insertColumns(static_cast<int>(column), static_cast<int>(count));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_RemoveColumns(QTransposeProxyModel* self, int column, int count) {
|
|
|
|
return self->removeColumns(static_cast<int>(column), static_cast<int>(count));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_MoveColumns(QTransposeProxyModel* self, QModelIndex* sourceParent, int sourceColumn, int count, QModelIndex* destinationParent, int destinationChild) {
|
|
|
|
return self->moveColumns(*sourceParent, static_cast<int>(sourceColumn), static_cast<int>(count), *destinationParent, static_cast<int>(destinationChild));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QTransposeProxyModel_Sort(QTransposeProxyModel* self, int column) {
|
|
|
|
self->sort(static_cast<int>(column));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QTransposeProxyModel_Tr2(const char* s, const char* c) {
|
|
|
|
QString _ret = QTransposeProxyModel::tr(s, c);
|
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
struct miqt_string _ms;
|
|
|
|
_ms.len = _b.length();
|
|
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
|
|
return _ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QTransposeProxyModel_Tr3(const char* s, const char* c, int n) {
|
|
|
|
QString _ret = QTransposeProxyModel::tr(s, c, static_cast<int>(n));
|
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
struct miqt_string _ms;
|
|
|
|
_ms.len = _b.length();
|
|
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
|
|
return _ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
int QTransposeProxyModel_RowCount1(const QTransposeProxyModel* self, QModelIndex* parent) {
|
|
|
|
return self->rowCount(*parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
int QTransposeProxyModel_ColumnCount1(const QTransposeProxyModel* self, QModelIndex* parent) {
|
|
|
|
return self->columnCount(*parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant* QTransposeProxyModel_HeaderData3(const QTransposeProxyModel* self, int section, int orientation, int role) {
|
|
|
|
return new QVariant(self->headerData(static_cast<int>(section), static_cast<Qt::Orientation>(orientation), static_cast<int>(role)));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_SetHeaderData4(QTransposeProxyModel* self, int section, int orientation, QVariant* value, int role) {
|
|
|
|
return self->setHeaderData(static_cast<int>(section), static_cast<Qt::Orientation>(orientation), *value, static_cast<int>(role));
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex* QTransposeProxyModel_Index3(const QTransposeProxyModel* self, int row, int column, QModelIndex* parent) {
|
|
|
|
return new QModelIndex(self->index(static_cast<int>(row), static_cast<int>(column), *parent));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_InsertRows3(QTransposeProxyModel* self, int row, int count, QModelIndex* parent) {
|
|
|
|
return self->insertRows(static_cast<int>(row), static_cast<int>(count), *parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_RemoveRows3(QTransposeProxyModel* self, int row, int count, QModelIndex* parent) {
|
|
|
|
return self->removeRows(static_cast<int>(row), static_cast<int>(count), *parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_InsertColumns3(QTransposeProxyModel* self, int column, int count, QModelIndex* parent) {
|
|
|
|
return self->insertColumns(static_cast<int>(column), static_cast<int>(count), *parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QTransposeProxyModel_RemoveColumns3(QTransposeProxyModel* self, int column, int count, QModelIndex* parent) {
|
|
|
|
return self->removeColumns(static_cast<int>(column), static_cast<int>(count), *parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QTransposeProxyModel_Sort2(QTransposeProxyModel* self, int column, int order) {
|
|
|
|
self->sort(static_cast<int>(column), static_cast<Qt::SortOrder>(order));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QTransposeProxyModel_Delete(QTransposeProxyModel* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|