#include "gen_qconcatenatetablesproxymodel.h" #include "qconcatenatetablesproxymodel.h" #include #include #include #include #include #include #include #include #include #include extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QConcatenateTablesProxyModel* QConcatenateTablesProxyModel_new() { return new QConcatenateTablesProxyModel(); } QConcatenateTablesProxyModel* QConcatenateTablesProxyModel_new2(QObject* parent) { return new QConcatenateTablesProxyModel(parent); } QMetaObject* QConcatenateTablesProxyModel_MetaObject(QConcatenateTablesProxyModel* self) { return (QMetaObject*) self->metaObject(); } void QConcatenateTablesProxyModel_Tr(char* s, char** _out, int* _out_Strlen) { QString ret = QConcatenateTablesProxyModel::tr(s); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QConcatenateTablesProxyModel_TrUtf8(char* s, char** _out, int* _out_Strlen) { QString ret = QConcatenateTablesProxyModel::trUtf8(s); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QConcatenateTablesProxyModel_SourceModels(QConcatenateTablesProxyModel* self, QAbstractItemModel*** _out, size_t* _out_len) { QList ret = self->sourceModels(); // Convert QList<> from C++ memory to manually-managed C memory QAbstractItemModel** __out = static_cast(malloc(sizeof(QAbstractItemModel*) * ret.length())); for (size_t i = 0, e = ret.length(); i < e; ++i) { __out[i] = ret[i]; } *_out = __out; *_out_len = ret.length(); } void QConcatenateTablesProxyModel_AddSourceModel(QConcatenateTablesProxyModel* self, QAbstractItemModel* sourceModel) { self->addSourceModel(sourceModel); } void QConcatenateTablesProxyModel_RemoveSourceModel(QConcatenateTablesProxyModel* self, QAbstractItemModel* sourceModel) { self->removeSourceModel(sourceModel); } QModelIndex* QConcatenateTablesProxyModel_MapFromSource(QConcatenateTablesProxyModel* self, QModelIndex* sourceIndex) { QModelIndex ret = self->mapFromSource(*sourceIndex); // Copy-construct value returned type into heap-allocated copy return static_cast(new QModelIndex(ret)); } QModelIndex* QConcatenateTablesProxyModel_MapToSource(QConcatenateTablesProxyModel* self, QModelIndex* proxyIndex) { QModelIndex ret = self->mapToSource(*proxyIndex); // Copy-construct value returned type into heap-allocated copy return static_cast(new QModelIndex(ret)); } QVariant* QConcatenateTablesProxyModel_Data(QConcatenateTablesProxyModel* self, QModelIndex* index) { QVariant ret = self->data(*index); // Copy-construct value returned type into heap-allocated copy return static_cast(new QVariant(ret)); } bool QConcatenateTablesProxyModel_SetData(QConcatenateTablesProxyModel* self, QModelIndex* index, QVariant* value) { return self->setData(*index, *value); } QModelIndex* QConcatenateTablesProxyModel_Index(QConcatenateTablesProxyModel* self, int row, int column) { QModelIndex ret = self->index(static_cast(row), static_cast(column)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QModelIndex(ret)); } QModelIndex* QConcatenateTablesProxyModel_Parent(QConcatenateTablesProxyModel* self, QModelIndex* index) { QModelIndex ret = self->parent(*index); // Copy-construct value returned type into heap-allocated copy return static_cast(new QModelIndex(ret)); } int QConcatenateTablesProxyModel_RowCount(QConcatenateTablesProxyModel* self) { return self->rowCount(); } int QConcatenateTablesProxyModel_ColumnCount(QConcatenateTablesProxyModel* self) { return self->columnCount(); } void QConcatenateTablesProxyModel_MimeTypes(QConcatenateTablesProxyModel* self, char*** _out, int** _out_Lengths, size_t* _out_len) { QList ret = self->mimeTypes(); // Convert QStringList from C++ memory to manually-managed C memory char** __out = static_cast(malloc(sizeof(char*) * ret.length())); int* __out_Lengths = static_cast(malloc(sizeof(int) * ret.length())); for (size_t i = 0, e = ret.length(); i < e; ++i) { // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret[i].toUtf8(); __out[i] = static_cast(malloc(b.length())); memcpy(__out[i], b.data(), b.length()); __out_Lengths[i] = b.length(); } *_out = __out; *_out_Lengths = __out_Lengths; *_out_len = ret.length(); } QMimeData* QConcatenateTablesProxyModel_MimeData(QConcatenateTablesProxyModel* self, QModelIndex** indexes, size_t indexes_len) { QList indexes_QList; indexes_QList.reserve(indexes_len); for(size_t i = 0; i < indexes_len; ++i) { indexes_QList.push_back(*(indexes[i])); } return self->mimeData(indexes_QList); } QSize* QConcatenateTablesProxyModel_Span(QConcatenateTablesProxyModel* self, QModelIndex* index) { QSize ret = self->span(*index); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } void QConcatenateTablesProxyModel_Tr2(char* s, char* c, char** _out, int* _out_Strlen) { QString ret = QConcatenateTablesProxyModel::tr(s, c); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QConcatenateTablesProxyModel_Tr3(char* s, char* c, int n, char** _out, int* _out_Strlen) { QString ret = QConcatenateTablesProxyModel::tr(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QConcatenateTablesProxyModel_TrUtf82(char* s, char* c, char** _out, int* _out_Strlen) { QString ret = QConcatenateTablesProxyModel::trUtf8(s, c); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QConcatenateTablesProxyModel_TrUtf83(char* s, char* c, int n, char** _out, int* _out_Strlen) { QString ret = QConcatenateTablesProxyModel::trUtf8(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } QVariant* QConcatenateTablesProxyModel_Data2(QConcatenateTablesProxyModel* self, QModelIndex* index, int role) { QVariant ret = self->data(*index, static_cast(role)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QVariant(ret)); } bool QConcatenateTablesProxyModel_SetData3(QConcatenateTablesProxyModel* self, QModelIndex* index, QVariant* value, int role) { return self->setData(*index, *value, static_cast(role)); } QModelIndex* QConcatenateTablesProxyModel_Index3(QConcatenateTablesProxyModel* self, int row, int column, QModelIndex* parent) { QModelIndex ret = self->index(static_cast(row), static_cast(column), *parent); // Copy-construct value returned type into heap-allocated copy return static_cast(new QModelIndex(ret)); } int QConcatenateTablesProxyModel_RowCount1(QConcatenateTablesProxyModel* self, QModelIndex* parent) { return self->rowCount(*parent); } int QConcatenateTablesProxyModel_ColumnCount1(QConcatenateTablesProxyModel* self, QModelIndex* parent) { return self->columnCount(*parent); } void QConcatenateTablesProxyModel_Delete(QConcatenateTablesProxyModel* self) { delete self; }