#include #include #include #include #include #include #include #include #include #include #include #include #include "qconcatenatetablesproxymodel.h" #include "gen_qconcatenatetablesproxymodel.h" #include "_cgo_export.h" QConcatenateTablesProxyModel* QConcatenateTablesProxyModel_new() { return new QConcatenateTablesProxyModel(); } QConcatenateTablesProxyModel* QConcatenateTablesProxyModel_new2(QObject* parent) { return new QConcatenateTablesProxyModel(parent); } QMetaObject* QConcatenateTablesProxyModel_MetaObject(const QConcatenateTablesProxyModel* self) { return (QMetaObject*) self->metaObject(); } struct miqt_string* QConcatenateTablesProxyModel_Tr(const char* s) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QConcatenateTablesProxyModel_TrUtf8(const char* s) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_array* QConcatenateTablesProxyModel_SourceModels(const QConcatenateTablesProxyModel* self) { QList _ret = self->sourceModels(); // Convert QList<> from C++ memory to manually-managed C memory QAbstractItemModel** _arr = static_cast(malloc(sizeof(QAbstractItemModel*) * _ret.length())); for (size_t i = 0, e = _ret.length(); i < e; ++i) { _arr[i] = _ret[i]; } struct miqt_array* _out = static_cast(malloc(sizeof(struct miqt_array))); _out->len = _ret.length(); _out->data = static_cast(_arr); return _out; } void QConcatenateTablesProxyModel_AddSourceModel(QConcatenateTablesProxyModel* self, QAbstractItemModel* sourceModel) { self->addSourceModel(sourceModel); } void QConcatenateTablesProxyModel_RemoveSourceModel(QConcatenateTablesProxyModel* self, QAbstractItemModel* sourceModel) { self->removeSourceModel(sourceModel); } QModelIndex* QConcatenateTablesProxyModel_MapFromSource(const 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(const 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(const 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); } int QConcatenateTablesProxyModel_Flags(const QConcatenateTablesProxyModel* self, QModelIndex* index) { Qt::ItemFlags _ret = self->flags(*index); return static_cast(_ret); } QModelIndex* QConcatenateTablesProxyModel_Index(const 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(const 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(const QConcatenateTablesProxyModel* self) { return self->rowCount(); } QVariant* QConcatenateTablesProxyModel_HeaderData(const QConcatenateTablesProxyModel* self, int section, uintptr_t orientation) { QVariant _ret = self->headerData(static_cast(section), static_cast(orientation)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QVariant(_ret)); } int QConcatenateTablesProxyModel_ColumnCount(const QConcatenateTablesProxyModel* self) { return self->columnCount(); } struct miqt_array* QConcatenateTablesProxyModel_MimeTypes(const QConcatenateTablesProxyModel* self) { QStringList _ret = self->mimeTypes(); // Convert QStringList from C++ memory to manually-managed C memory struct miqt_string** _arr = static_cast(malloc(sizeof(struct miqt_string*) * _ret.length())); for (size_t i = 0, e = _ret.length(); i < e; ++i) { QString _lv_ret = _ret[i]; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _lv_b = _lv_ret.toUtf8(); _arr[i] = miqt_strdup(_lv_b.data(), _lv_b.length()); } struct miqt_array* _out = static_cast(malloc(sizeof(struct miqt_array))); _out->len = _ret.length(); _out->data = static_cast(_arr); return _out; } QMimeData* QConcatenateTablesProxyModel_MimeData(const QConcatenateTablesProxyModel* self, struct miqt_array* /* of QModelIndex* */ indexes) { QList indexes_QList; indexes_QList.reserve(indexes->len); QModelIndex** indexes_arr = static_cast(indexes->data); for(size_t i = 0; i < indexes->len; ++i) { indexes_QList.push_back(*(indexes_arr[i])); } return self->mimeData(indexes_QList); } bool QConcatenateTablesProxyModel_CanDropMimeData(const QConcatenateTablesProxyModel* self, QMimeData* data, uintptr_t action, int row, int column, QModelIndex* parent) { return self->canDropMimeData(data, static_cast(action), static_cast(row), static_cast(column), *parent); } bool QConcatenateTablesProxyModel_DropMimeData(QConcatenateTablesProxyModel* self, QMimeData* data, uintptr_t action, int row, int column, QModelIndex* parent) { return self->dropMimeData(data, static_cast(action), static_cast(row), static_cast(column), *parent); } QSize* QConcatenateTablesProxyModel_Span(const QConcatenateTablesProxyModel* self, QModelIndex* index) { QSize _ret = self->span(*index); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(_ret)); } struct miqt_string* QConcatenateTablesProxyModel_Tr2(const char* s, const char* c) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QConcatenateTablesProxyModel_Tr3(const char* s, const char* c, int n) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QConcatenateTablesProxyModel_TrUtf82(const char* s, const char* c) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QConcatenateTablesProxyModel_TrUtf83(const char* s, const char* c, int n) { 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(); return miqt_strdup(_b.data(), _b.length()); } QVariant* QConcatenateTablesProxyModel_Data2(const 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(const 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(const QConcatenateTablesProxyModel* self, QModelIndex* parent) { return self->rowCount(*parent); } QVariant* QConcatenateTablesProxyModel_HeaderData3(const QConcatenateTablesProxyModel* self, int section, uintptr_t orientation, int role) { QVariant _ret = self->headerData(static_cast(section), static_cast(orientation), static_cast(role)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QVariant(_ret)); } int QConcatenateTablesProxyModel_ColumnCount1(const QConcatenateTablesProxyModel* self, QModelIndex* parent) { return self->columnCount(*parent); } void QConcatenateTablesProxyModel_Delete(QConcatenateTablesProxyModel* self) { delete self; }