miqt/qt6/gen_qfilesystemmodel.cpp

1937 lines
71 KiB
C++

#include <QAbstractFileIconProvider>
#include <QAbstractItemModel>
#include <QByteArray>
#include <QDateTime>
#include <QDir>
#include <QEvent>
#include <QFileInfo>
#include <QFileSystemModel>
#include <QIcon>
#include <QList>
#include <QMap>
#include <QMetaObject>
#include <QMimeData>
#include <QModelIndex>
#include <QModelRoleDataSpan>
#include <QObject>
#include <QSize>
#include <QString>
#include <QByteArray>
#include <cstring>
#include <QTimerEvent>
#include <QVariant>
#include <qfilesystemmodel.h>
#include "gen_qfilesystemmodel.h"
#ifndef _Bool
#define _Bool bool
#endif
#include "_cgo_export.h"
class MiqtVirtualQFileSystemModel : public virtual QFileSystemModel {
public:
MiqtVirtualQFileSystemModel(): QFileSystemModel() {};
MiqtVirtualQFileSystemModel(QObject* parent): QFileSystemModel(parent) {};
virtual ~MiqtVirtualQFileSystemModel() = default;
// cgo.Handle value for overwritten implementation
intptr_t handle__Index = 0;
// Subclass to allow providing a Go implementation
virtual QModelIndex index(int row, int column, const QModelIndex& parent) const override {
if (handle__Index == 0) {
return QFileSystemModel::index(row, column, parent);
}
int sigval1 = row;
int sigval2 = column;
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval3 = const_cast<QModelIndex*>(&parent_ret);
QModelIndex* callback_return_value = miqt_exec_callback_QFileSystemModel_Index(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Index, sigval1, sigval2, sigval3);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QModelIndex* virtualbase_Index(int row, int column, QModelIndex* parent) const {
return new QModelIndex(QFileSystemModel::index(static_cast<int>(row), static_cast<int>(column), *parent));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Parent = 0;
// Subclass to allow providing a Go implementation
virtual QModelIndex parent(const QModelIndex& child) const override {
if (handle__Parent == 0) {
return QFileSystemModel::parent(child);
}
const QModelIndex& child_ret = child;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&child_ret);
QModelIndex* callback_return_value = miqt_exec_callback_QFileSystemModel_Parent(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Parent, sigval1);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QModelIndex* virtualbase_Parent(QModelIndex* child) const {
return new QModelIndex(QFileSystemModel::parent(*child));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Sibling = 0;
// Subclass to allow providing a Go implementation
virtual QModelIndex sibling(int row, int column, const QModelIndex& idx) const override {
if (handle__Sibling == 0) {
return QFileSystemModel::sibling(row, column, idx);
}
int sigval1 = row;
int sigval2 = column;
const QModelIndex& idx_ret = idx;
// Cast returned reference into pointer
QModelIndex* sigval3 = const_cast<QModelIndex*>(&idx_ret);
QModelIndex* callback_return_value = miqt_exec_callback_QFileSystemModel_Sibling(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Sibling, sigval1, sigval2, sigval3);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QModelIndex* virtualbase_Sibling(int row, int column, QModelIndex* idx) const {
return new QModelIndex(QFileSystemModel::sibling(static_cast<int>(row), static_cast<int>(column), *idx));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__HasChildren = 0;
// Subclass to allow providing a Go implementation
virtual bool hasChildren(const QModelIndex& parent) const override {
if (handle__HasChildren == 0) {
return QFileSystemModel::hasChildren(parent);
}
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_HasChildren(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__HasChildren, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_HasChildren(QModelIndex* parent) const {
return QFileSystemModel::hasChildren(*parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__CanFetchMore = 0;
// Subclass to allow providing a Go implementation
virtual bool canFetchMore(const QModelIndex& parent) const override {
if (handle__CanFetchMore == 0) {
return QFileSystemModel::canFetchMore(parent);
}
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_CanFetchMore(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__CanFetchMore, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_CanFetchMore(QModelIndex* parent) const {
return QFileSystemModel::canFetchMore(*parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__FetchMore = 0;
// Subclass to allow providing a Go implementation
virtual void fetchMore(const QModelIndex& parent) override {
if (handle__FetchMore == 0) {
QFileSystemModel::fetchMore(parent);
return;
}
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&parent_ret);
miqt_exec_callback_QFileSystemModel_FetchMore(this, handle__FetchMore, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_FetchMore(QModelIndex* parent) {
QFileSystemModel::fetchMore(*parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__RowCount = 0;
// Subclass to allow providing a Go implementation
virtual int rowCount(const QModelIndex& parent) const override {
if (handle__RowCount == 0) {
return QFileSystemModel::rowCount(parent);
}
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&parent_ret);
int callback_return_value = miqt_exec_callback_QFileSystemModel_RowCount(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__RowCount, sigval1);
return static_cast<int>(callback_return_value);
}
// Wrapper to allow calling protected method
int virtualbase_RowCount(QModelIndex* parent) const {
return QFileSystemModel::rowCount(*parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__ColumnCount = 0;
// Subclass to allow providing a Go implementation
virtual int columnCount(const QModelIndex& parent) const override {
if (handle__ColumnCount == 0) {
return QFileSystemModel::columnCount(parent);
}
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&parent_ret);
int callback_return_value = miqt_exec_callback_QFileSystemModel_ColumnCount(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__ColumnCount, sigval1);
return static_cast<int>(callback_return_value);
}
// Wrapper to allow calling protected method
int virtualbase_ColumnCount(QModelIndex* parent) const {
return QFileSystemModel::columnCount(*parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Data = 0;
// Subclass to allow providing a Go implementation
virtual QVariant data(const QModelIndex& index, int role) const override {
if (handle__Data == 0) {
return QFileSystemModel::data(index, role);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
int sigval2 = role;
QVariant* callback_return_value = miqt_exec_callback_QFileSystemModel_Data(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Data, sigval1, sigval2);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QVariant* virtualbase_Data(QModelIndex* index, int role) const {
return new QVariant(QFileSystemModel::data(*index, static_cast<int>(role)));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__SetData = 0;
// Subclass to allow providing a Go implementation
virtual bool setData(const QModelIndex& index, const QVariant& value, int role) override {
if (handle__SetData == 0) {
return QFileSystemModel::setData(index, value, role);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
const QVariant& value_ret = value;
// Cast returned reference into pointer
QVariant* sigval2 = const_cast<QVariant*>(&value_ret);
int sigval3 = role;
bool callback_return_value = miqt_exec_callback_QFileSystemModel_SetData(this, handle__SetData, sigval1, sigval2, sigval3);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_SetData(QModelIndex* index, QVariant* value, int role) {
return QFileSystemModel::setData(*index, *value, static_cast<int>(role));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__HeaderData = 0;
// Subclass to allow providing a Go implementation
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const override {
if (handle__HeaderData == 0) {
return QFileSystemModel::headerData(section, orientation, role);
}
int sigval1 = section;
Qt::Orientation orientation_ret = orientation;
int sigval2 = static_cast<int>(orientation_ret);
int sigval3 = role;
QVariant* callback_return_value = miqt_exec_callback_QFileSystemModel_HeaderData(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__HeaderData, sigval1, sigval2, sigval3);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QVariant* virtualbase_HeaderData(int section, int orientation, int role) const {
return new QVariant(QFileSystemModel::headerData(static_cast<int>(section), static_cast<Qt::Orientation>(orientation), static_cast<int>(role)));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Flags = 0;
// Subclass to allow providing a Go implementation
virtual Qt::ItemFlags flags(const QModelIndex& index) const override {
if (handle__Flags == 0) {
return QFileSystemModel::flags(index);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
int callback_return_value = miqt_exec_callback_QFileSystemModel_Flags(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Flags, sigval1);
return static_cast<Qt::ItemFlags>(callback_return_value);
}
// Wrapper to allow calling protected method
int virtualbase_Flags(QModelIndex* index) const {
Qt::ItemFlags _ret = QFileSystemModel::flags(*index);
return static_cast<int>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Sort = 0;
// Subclass to allow providing a Go implementation
virtual void sort(int column, Qt::SortOrder order) override {
if (handle__Sort == 0) {
QFileSystemModel::sort(column, order);
return;
}
int sigval1 = column;
Qt::SortOrder order_ret = order;
int sigval2 = static_cast<int>(order_ret);
miqt_exec_callback_QFileSystemModel_Sort(this, handle__Sort, sigval1, sigval2);
}
// Wrapper to allow calling protected method
void virtualbase_Sort(int column, int order) {
QFileSystemModel::sort(static_cast<int>(column), static_cast<Qt::SortOrder>(order));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__MimeTypes = 0;
// Subclass to allow providing a Go implementation
virtual QStringList mimeTypes() const override {
if (handle__MimeTypes == 0) {
return QFileSystemModel::mimeTypes();
}
struct miqt_array /* of struct miqt_string */ callback_return_value = miqt_exec_callback_QFileSystemModel_MimeTypes(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__MimeTypes);
QStringList callback_return_value_QList;
callback_return_value_QList.reserve(callback_return_value.len);
struct miqt_string* callback_return_value_arr = static_cast<struct miqt_string*>(callback_return_value.data);
for(size_t i = 0; i < callback_return_value.len; ++i) {
QString callback_return_value_arr_i_QString = QString::fromUtf8(callback_return_value_arr[i].data, callback_return_value_arr[i].len);
callback_return_value_QList.push_back(callback_return_value_arr_i_QString);
}
return callback_return_value_QList;
}
// Wrapper to allow calling protected method
struct miqt_array /* of struct miqt_string */ virtualbase_MimeTypes() const {
QStringList _ret = QFileSystemModel::mimeTypes();
// Convert QList<> from C++ memory to manually-managed C memory
struct miqt_string* _arr = static_cast<struct miqt_string*>(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();
struct miqt_string _lv_ms;
_lv_ms.len = _lv_b.length();
_lv_ms.data = static_cast<char*>(malloc(_lv_ms.len));
memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len);
_arr[i] = _lv_ms;
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
// cgo.Handle value for overwritten implementation
intptr_t handle__MimeData = 0;
// Subclass to allow providing a Go implementation
virtual QMimeData* mimeData(const QModelIndexList& indexes) const override {
if (handle__MimeData == 0) {
return QFileSystemModel::mimeData(indexes);
}
const QModelIndexList& indexes_ret = indexes;
// Convert QList<> from C++ memory to manually-managed C memory
QModelIndex** indexes_arr = static_cast<QModelIndex**>(malloc(sizeof(QModelIndex*) * indexes_ret.length()));
for (size_t i = 0, e = indexes_ret.length(); i < e; ++i) {
indexes_arr[i] = new QModelIndex(indexes_ret[i]);
}
struct miqt_array indexes_out;
indexes_out.len = indexes_ret.length();
indexes_out.data = static_cast<void*>(indexes_arr);
struct miqt_array /* of QModelIndex* */ sigval1 = indexes_out;
QMimeData* callback_return_value = miqt_exec_callback_QFileSystemModel_MimeData(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__MimeData, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
QMimeData* virtualbase_MimeData(struct miqt_array /* of QModelIndex* */ indexes) const {
QModelIndexList indexes_QList;
indexes_QList.reserve(indexes.len);
QModelIndex** indexes_arr = static_cast<QModelIndex**>(indexes.data);
for(size_t i = 0; i < indexes.len; ++i) {
indexes_QList.push_back(*(indexes_arr[i]));
}
return QFileSystemModel::mimeData(indexes_QList);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__DropMimeData = 0;
// Subclass to allow providing a Go implementation
virtual bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) override {
if (handle__DropMimeData == 0) {
return QFileSystemModel::dropMimeData(data, action, row, column, parent);
}
QMimeData* sigval1 = (QMimeData*) data;
Qt::DropAction action_ret = action;
int sigval2 = static_cast<int>(action_ret);
int sigval3 = row;
int sigval4 = column;
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval5 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_DropMimeData(this, handle__DropMimeData, sigval1, sigval2, sigval3, sigval4, sigval5);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_DropMimeData(QMimeData* data, int action, int row, int column, QModelIndex* parent) {
return QFileSystemModel::dropMimeData(data, static_cast<Qt::DropAction>(action), static_cast<int>(row), static_cast<int>(column), *parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__SupportedDropActions = 0;
// Subclass to allow providing a Go implementation
virtual Qt::DropActions supportedDropActions() const override {
if (handle__SupportedDropActions == 0) {
return QFileSystemModel::supportedDropActions();
}
int callback_return_value = miqt_exec_callback_QFileSystemModel_SupportedDropActions(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__SupportedDropActions);
return static_cast<Qt::DropActions>(callback_return_value);
}
// Wrapper to allow calling protected method
int virtualbase_SupportedDropActions() const {
Qt::DropActions _ret = QFileSystemModel::supportedDropActions();
return static_cast<int>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__RoleNames = 0;
// Subclass to allow providing a Go implementation
virtual QHash<int, QByteArray> roleNames() const override {
if (handle__RoleNames == 0) {
return QFileSystemModel::roleNames();
}
struct miqt_map /* of int to struct miqt_string */ callback_return_value = miqt_exec_callback_QFileSystemModel_RoleNames(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__RoleNames);
QHash<int, QByteArray> callback_return_value_QMap;
callback_return_value_QMap.reserve(callback_return_value.len);
int* callback_return_value_karr = static_cast<int*>(callback_return_value.keys);
struct miqt_string* callback_return_value_varr = static_cast<struct miqt_string*>(callback_return_value.values);
for(size_t i = 0; i < callback_return_value.len; ++i) {
QByteArray callback_return_value_varr_i_QByteArray(callback_return_value_varr[i].data, callback_return_value_varr[i].len);
callback_return_value_QMap[static_cast<int>(callback_return_value_karr[i])] = callback_return_value_varr_i_QByteArray;
}
return callback_return_value_QMap;
}
// Wrapper to allow calling protected method
struct miqt_map /* of int to struct miqt_string */ virtualbase_RoleNames() const {
QHash<int, QByteArray> _ret = QFileSystemModel::roleNames();
// Convert QMap<> from C++ memory to manually-managed C memory
int* _karr = static_cast<int*>(malloc(sizeof(int) * _ret.size()));
struct miqt_string* _varr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.size()));
int _ctr = 0;
for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) {
_karr[_ctr] = _itr->first;
QByteArray _hashval_qb = _itr->second;
struct miqt_string _hashval_ms;
_hashval_ms.len = _hashval_qb.length();
_hashval_ms.data = static_cast<char*>(malloc(_hashval_ms.len));
memcpy(_hashval_ms.data, _hashval_qb.data(), _hashval_ms.len);
_varr[_ctr] = _hashval_ms;
_ctr++;
}
struct miqt_map _out;
_out.len = _ret.size();
_out.keys = static_cast<void*>(_karr);
_out.values = static_cast<void*>(_varr);
return _out;
}
// cgo.Handle value for overwritten implementation
intptr_t handle__TimerEvent = 0;
// Subclass to allow providing a Go implementation
virtual void timerEvent(QTimerEvent* event) override {
if (handle__TimerEvent == 0) {
QFileSystemModel::timerEvent(event);
return;
}
QTimerEvent* sigval1 = event;
miqt_exec_callback_QFileSystemModel_TimerEvent(this, handle__TimerEvent, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_TimerEvent(QTimerEvent* event) {
QFileSystemModel::timerEvent(event);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Event = 0;
// Subclass to allow providing a Go implementation
virtual bool event(QEvent* event) override {
if (handle__Event == 0) {
return QFileSystemModel::event(event);
}
QEvent* sigval1 = event;
bool callback_return_value = miqt_exec_callback_QFileSystemModel_Event(this, handle__Event, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_Event(QEvent* event) {
return QFileSystemModel::event(event);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__SetHeaderData = 0;
// Subclass to allow providing a Go implementation
virtual bool setHeaderData(int section, Qt::Orientation orientation, const QVariant& value, int role) override {
if (handle__SetHeaderData == 0) {
return QFileSystemModel::setHeaderData(section, orientation, value, role);
}
int sigval1 = section;
Qt::Orientation orientation_ret = orientation;
int sigval2 = static_cast<int>(orientation_ret);
const QVariant& value_ret = value;
// Cast returned reference into pointer
QVariant* sigval3 = const_cast<QVariant*>(&value_ret);
int sigval4 = role;
bool callback_return_value = miqt_exec_callback_QFileSystemModel_SetHeaderData(this, handle__SetHeaderData, sigval1, sigval2, sigval3, sigval4);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_SetHeaderData(int section, int orientation, QVariant* value, int role) {
return QFileSystemModel::setHeaderData(static_cast<int>(section), static_cast<Qt::Orientation>(orientation), *value, static_cast<int>(role));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__ItemData = 0;
// Subclass to allow providing a Go implementation
virtual QMap<int, QVariant> itemData(const QModelIndex& index) const override {
if (handle__ItemData == 0) {
return QFileSystemModel::itemData(index);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
struct miqt_map /* of int to QVariant* */ callback_return_value = miqt_exec_callback_QFileSystemModel_ItemData(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__ItemData, sigval1);
QMap<int, QVariant> callback_return_value_QMap;
int* callback_return_value_karr = static_cast<int*>(callback_return_value.keys);
QVariant** callback_return_value_varr = static_cast<QVariant**>(callback_return_value.values);
for(size_t i = 0; i < callback_return_value.len; ++i) {
callback_return_value_QMap[static_cast<int>(callback_return_value_karr[i])] = *(callback_return_value_varr[i]);
}
return callback_return_value_QMap;
}
// Wrapper to allow calling protected method
struct miqt_map /* of int to QVariant* */ virtualbase_ItemData(QModelIndex* index) const {
QMap<int, QVariant> _ret = QFileSystemModel::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;
}
// cgo.Handle value for overwritten implementation
intptr_t handle__SetItemData = 0;
// Subclass to allow providing a Go implementation
virtual bool setItemData(const QModelIndex& index, const QMap<int, QVariant>& roles) override {
if (handle__SetItemData == 0) {
return QFileSystemModel::setItemData(index, roles);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
const QMap<int, QVariant>& roles_ret = roles;
// Convert QMap<> from C++ memory to manually-managed C memory
int* roles_karr = static_cast<int*>(malloc(sizeof(int) * roles_ret.size()));
QVariant** roles_varr = static_cast<QVariant**>(malloc(sizeof(QVariant*) * roles_ret.size()));
int roles_ctr = 0;
for (auto roles_itr = roles_ret.keyValueBegin(); roles_itr != roles_ret.keyValueEnd(); ++roles_itr) {
roles_karr[roles_ctr] = roles_itr->first;
roles_varr[roles_ctr] = new QVariant(roles_itr->second);
roles_ctr++;
}
struct miqt_map roles_out;
roles_out.len = roles_ret.size();
roles_out.keys = static_cast<void*>(roles_karr);
roles_out.values = static_cast<void*>(roles_varr);
struct miqt_map /* of int to QVariant* */ sigval2 = roles_out;
bool callback_return_value = miqt_exec_callback_QFileSystemModel_SetItemData(this, handle__SetItemData, sigval1, sigval2);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_SetItemData(QModelIndex* index, struct miqt_map /* of int to QVariant* */ roles) {
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 QFileSystemModel::setItemData(*index, roles_QMap);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__ClearItemData = 0;
// Subclass to allow providing a Go implementation
virtual bool clearItemData(const QModelIndex& index) override {
if (handle__ClearItemData == 0) {
return QFileSystemModel::clearItemData(index);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_ClearItemData(this, handle__ClearItemData, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_ClearItemData(QModelIndex* index) {
return QFileSystemModel::clearItemData(*index);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__CanDropMimeData = 0;
// Subclass to allow providing a Go implementation
virtual bool canDropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) const override {
if (handle__CanDropMimeData == 0) {
return QFileSystemModel::canDropMimeData(data, action, row, column, parent);
}
QMimeData* sigval1 = (QMimeData*) data;
Qt::DropAction action_ret = action;
int sigval2 = static_cast<int>(action_ret);
int sigval3 = row;
int sigval4 = column;
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval5 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_CanDropMimeData(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__CanDropMimeData, sigval1, sigval2, sigval3, sigval4, sigval5);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_CanDropMimeData(QMimeData* data, int action, int row, int column, QModelIndex* parent) const {
return QFileSystemModel::canDropMimeData(data, static_cast<Qt::DropAction>(action), static_cast<int>(row), static_cast<int>(column), *parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__SupportedDragActions = 0;
// Subclass to allow providing a Go implementation
virtual Qt::DropActions supportedDragActions() const override {
if (handle__SupportedDragActions == 0) {
return QFileSystemModel::supportedDragActions();
}
int callback_return_value = miqt_exec_callback_QFileSystemModel_SupportedDragActions(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__SupportedDragActions);
return static_cast<Qt::DropActions>(callback_return_value);
}
// Wrapper to allow calling protected method
int virtualbase_SupportedDragActions() const {
Qt::DropActions _ret = QFileSystemModel::supportedDragActions();
return static_cast<int>(_ret);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__InsertRows = 0;
// Subclass to allow providing a Go implementation
virtual bool insertRows(int row, int count, const QModelIndex& parent) override {
if (handle__InsertRows == 0) {
return QFileSystemModel::insertRows(row, count, parent);
}
int sigval1 = row;
int sigval2 = count;
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval3 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_InsertRows(this, handle__InsertRows, sigval1, sigval2, sigval3);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_InsertRows(int row, int count, QModelIndex* parent) {
return QFileSystemModel::insertRows(static_cast<int>(row), static_cast<int>(count), *parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__InsertColumns = 0;
// Subclass to allow providing a Go implementation
virtual bool insertColumns(int column, int count, const QModelIndex& parent) override {
if (handle__InsertColumns == 0) {
return QFileSystemModel::insertColumns(column, count, parent);
}
int sigval1 = column;
int sigval2 = count;
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval3 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_InsertColumns(this, handle__InsertColumns, sigval1, sigval2, sigval3);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_InsertColumns(int column, int count, QModelIndex* parent) {
return QFileSystemModel::insertColumns(static_cast<int>(column), static_cast<int>(count), *parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__RemoveRows = 0;
// Subclass to allow providing a Go implementation
virtual bool removeRows(int row, int count, const QModelIndex& parent) override {
if (handle__RemoveRows == 0) {
return QFileSystemModel::removeRows(row, count, parent);
}
int sigval1 = row;
int sigval2 = count;
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval3 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_RemoveRows(this, handle__RemoveRows, sigval1, sigval2, sigval3);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_RemoveRows(int row, int count, QModelIndex* parent) {
return QFileSystemModel::removeRows(static_cast<int>(row), static_cast<int>(count), *parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__RemoveColumns = 0;
// Subclass to allow providing a Go implementation
virtual bool removeColumns(int column, int count, const QModelIndex& parent) override {
if (handle__RemoveColumns == 0) {
return QFileSystemModel::removeColumns(column, count, parent);
}
int sigval1 = column;
int sigval2 = count;
const QModelIndex& parent_ret = parent;
// Cast returned reference into pointer
QModelIndex* sigval3 = const_cast<QModelIndex*>(&parent_ret);
bool callback_return_value = miqt_exec_callback_QFileSystemModel_RemoveColumns(this, handle__RemoveColumns, sigval1, sigval2, sigval3);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_RemoveColumns(int column, int count, QModelIndex* parent) {
return QFileSystemModel::removeColumns(static_cast<int>(column), static_cast<int>(count), *parent);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__MoveRows = 0;
// Subclass to allow providing a Go implementation
virtual bool moveRows(const QModelIndex& sourceParent, int sourceRow, int count, const QModelIndex& destinationParent, int destinationChild) override {
if (handle__MoveRows == 0) {
return QFileSystemModel::moveRows(sourceParent, sourceRow, count, destinationParent, destinationChild);
}
const QModelIndex& sourceParent_ret = sourceParent;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&sourceParent_ret);
int sigval2 = sourceRow;
int sigval3 = count;
const QModelIndex& destinationParent_ret = destinationParent;
// Cast returned reference into pointer
QModelIndex* sigval4 = const_cast<QModelIndex*>(&destinationParent_ret);
int sigval5 = destinationChild;
bool callback_return_value = miqt_exec_callback_QFileSystemModel_MoveRows(this, handle__MoveRows, sigval1, sigval2, sigval3, sigval4, sigval5);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_MoveRows(QModelIndex* sourceParent, int sourceRow, int count, QModelIndex* destinationParent, int destinationChild) {
return QFileSystemModel::moveRows(*sourceParent, static_cast<int>(sourceRow), static_cast<int>(count), *destinationParent, static_cast<int>(destinationChild));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__MoveColumns = 0;
// Subclass to allow providing a Go implementation
virtual bool moveColumns(const QModelIndex& sourceParent, int sourceColumn, int count, const QModelIndex& destinationParent, int destinationChild) override {
if (handle__MoveColumns == 0) {
return QFileSystemModel::moveColumns(sourceParent, sourceColumn, count, destinationParent, destinationChild);
}
const QModelIndex& sourceParent_ret = sourceParent;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&sourceParent_ret);
int sigval2 = sourceColumn;
int sigval3 = count;
const QModelIndex& destinationParent_ret = destinationParent;
// Cast returned reference into pointer
QModelIndex* sigval4 = const_cast<QModelIndex*>(&destinationParent_ret);
int sigval5 = destinationChild;
bool callback_return_value = miqt_exec_callback_QFileSystemModel_MoveColumns(this, handle__MoveColumns, sigval1, sigval2, sigval3, sigval4, sigval5);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_MoveColumns(QModelIndex* sourceParent, int sourceColumn, int count, QModelIndex* destinationParent, int destinationChild) {
return QFileSystemModel::moveColumns(*sourceParent, static_cast<int>(sourceColumn), static_cast<int>(count), *destinationParent, static_cast<int>(destinationChild));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Buddy = 0;
// Subclass to allow providing a Go implementation
virtual QModelIndex buddy(const QModelIndex& index) const override {
if (handle__Buddy == 0) {
return QFileSystemModel::buddy(index);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
QModelIndex* callback_return_value = miqt_exec_callback_QFileSystemModel_Buddy(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Buddy, sigval1);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QModelIndex* virtualbase_Buddy(QModelIndex* index) const {
return new QModelIndex(QFileSystemModel::buddy(*index));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Match = 0;
// Subclass to allow providing a Go implementation
virtual QModelIndexList match(const QModelIndex& start, int role, const QVariant& value, int hits, Qt::MatchFlags flags) const override {
if (handle__Match == 0) {
return QFileSystemModel::match(start, role, value, hits, flags);
}
const QModelIndex& start_ret = start;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&start_ret);
int sigval2 = role;
const QVariant& value_ret = value;
// Cast returned reference into pointer
QVariant* sigval3 = const_cast<QVariant*>(&value_ret);
int sigval4 = hits;
Qt::MatchFlags flags_ret = flags;
int sigval5 = static_cast<int>(flags_ret);
struct miqt_array /* of QModelIndex* */ callback_return_value = miqt_exec_callback_QFileSystemModel_Match(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Match, sigval1, sigval2, sigval3, sigval4, sigval5);
QModelIndexList callback_return_value_QList;
callback_return_value_QList.reserve(callback_return_value.len);
QModelIndex** callback_return_value_arr = static_cast<QModelIndex**>(callback_return_value.data);
for(size_t i = 0; i < callback_return_value.len; ++i) {
callback_return_value_QList.push_back(*(callback_return_value_arr[i]));
}
return callback_return_value_QList;
}
// Wrapper to allow calling protected method
struct miqt_array /* of QModelIndex* */ virtualbase_Match(QModelIndex* start, int role, QVariant* value, int hits, int flags) const {
QModelIndexList _ret = QFileSystemModel::match(*start, static_cast<int>(role), *value, static_cast<int>(hits), static_cast<Qt::MatchFlags>(flags));
// Convert QList<> from C++ memory to manually-managed C memory
QModelIndex** _arr = static_cast<QModelIndex**>(malloc(sizeof(QModelIndex*) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
_arr[i] = new QModelIndex(_ret[i]);
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Span = 0;
// Subclass to allow providing a Go implementation
virtual QSize span(const QModelIndex& index) const override {
if (handle__Span == 0) {
return QFileSystemModel::span(index);
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
QSize* callback_return_value = miqt_exec_callback_QFileSystemModel_Span(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__Span, sigval1);
return *callback_return_value;
}
// Wrapper to allow calling protected method
QSize* virtualbase_Span(QModelIndex* index) const {
return new QSize(QFileSystemModel::span(*index));
}
// cgo.Handle value for overwritten implementation
intptr_t handle__MultiData = 0;
// Subclass to allow providing a Go implementation
virtual void multiData(const QModelIndex& index, QModelRoleDataSpan roleDataSpan) const override {
if (handle__MultiData == 0) {
QFileSystemModel::multiData(index, roleDataSpan);
return;
}
const QModelIndex& index_ret = index;
// Cast returned reference into pointer
QModelIndex* sigval1 = const_cast<QModelIndex*>(&index_ret);
QModelRoleDataSpan* sigval2 = new QModelRoleDataSpan(roleDataSpan);
miqt_exec_callback_QFileSystemModel_MultiData(const_cast<MiqtVirtualQFileSystemModel*>(this), handle__MultiData, sigval1, sigval2);
}
// Wrapper to allow calling protected method
void virtualbase_MultiData(QModelIndex* index, QModelRoleDataSpan* roleDataSpan) const {
QFileSystemModel::multiData(*index, *roleDataSpan);
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Submit = 0;
// Subclass to allow providing a Go implementation
virtual bool submit() override {
if (handle__Submit == 0) {
return QFileSystemModel::submit();
}
bool callback_return_value = miqt_exec_callback_QFileSystemModel_Submit(this, handle__Submit);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_Submit() {
return QFileSystemModel::submit();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__Revert = 0;
// Subclass to allow providing a Go implementation
virtual void revert() override {
if (handle__Revert == 0) {
QFileSystemModel::revert();
return;
}
miqt_exec_callback_QFileSystemModel_Revert(this, handle__Revert);
}
// Wrapper to allow calling protected method
void virtualbase_Revert() {
QFileSystemModel::revert();
}
// cgo.Handle value for overwritten implementation
intptr_t handle__ResetInternalData = 0;
// Subclass to allow providing a Go implementation
virtual void resetInternalData() override {
if (handle__ResetInternalData == 0) {
QFileSystemModel::resetInternalData();
return;
}
miqt_exec_callback_QFileSystemModel_ResetInternalData(this, handle__ResetInternalData);
}
// Wrapper to allow calling protected method
void virtualbase_ResetInternalData() {
QFileSystemModel::resetInternalData();
}
};
QFileSystemModel* QFileSystemModel_new() {
return new MiqtVirtualQFileSystemModel();
}
QFileSystemModel* QFileSystemModel_new2(QObject* parent) {
return new MiqtVirtualQFileSystemModel(parent);
}
void QFileSystemModel_virtbase(QFileSystemModel* src, QAbstractItemModel** outptr_QAbstractItemModel) {
*outptr_QAbstractItemModel = static_cast<QAbstractItemModel*>(src);
}
QMetaObject* QFileSystemModel_MetaObject(const QFileSystemModel* self) {
return (QMetaObject*) self->metaObject();
}
void* QFileSystemModel_Metacast(QFileSystemModel* self, const char* param1) {
return self->qt_metacast(param1);
}
struct miqt_string QFileSystemModel_Tr(const char* s) {
QString _ret = QFileSystemModel::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 QFileSystemModel_RootPathChanged(QFileSystemModel* self, struct miqt_string newPath) {
QString newPath_QString = QString::fromUtf8(newPath.data, newPath.len);
self->rootPathChanged(newPath_QString);
}
void QFileSystemModel_connect_RootPathChanged(QFileSystemModel* self, intptr_t slot) {
MiqtVirtualQFileSystemModel::connect(self, static_cast<void (QFileSystemModel::*)(const QString&)>(&QFileSystemModel::rootPathChanged), self, [=](const QString& newPath) {
const QString newPath_ret = newPath;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray newPath_b = newPath_ret.toUtf8();
struct miqt_string newPath_ms;
newPath_ms.len = newPath_b.length();
newPath_ms.data = static_cast<char*>(malloc(newPath_ms.len));
memcpy(newPath_ms.data, newPath_b.data(), newPath_ms.len);
struct miqt_string sigval1 = newPath_ms;
miqt_exec_callback_QFileSystemModel_RootPathChanged(slot, sigval1);
});
}
void QFileSystemModel_FileRenamed(QFileSystemModel* self, struct miqt_string path, struct miqt_string oldName, struct miqt_string newName) {
QString path_QString = QString::fromUtf8(path.data, path.len);
QString oldName_QString = QString::fromUtf8(oldName.data, oldName.len);
QString newName_QString = QString::fromUtf8(newName.data, newName.len);
self->fileRenamed(path_QString, oldName_QString, newName_QString);
}
void QFileSystemModel_connect_FileRenamed(QFileSystemModel* self, intptr_t slot) {
MiqtVirtualQFileSystemModel::connect(self, static_cast<void (QFileSystemModel::*)(const QString&, const QString&, const QString&)>(&QFileSystemModel::fileRenamed), self, [=](const QString& path, const QString& oldName, const QString& newName) {
const QString path_ret = path;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray path_b = path_ret.toUtf8();
struct miqt_string path_ms;
path_ms.len = path_b.length();
path_ms.data = static_cast<char*>(malloc(path_ms.len));
memcpy(path_ms.data, path_b.data(), path_ms.len);
struct miqt_string sigval1 = path_ms;
const QString oldName_ret = oldName;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray oldName_b = oldName_ret.toUtf8();
struct miqt_string oldName_ms;
oldName_ms.len = oldName_b.length();
oldName_ms.data = static_cast<char*>(malloc(oldName_ms.len));
memcpy(oldName_ms.data, oldName_b.data(), oldName_ms.len);
struct miqt_string sigval2 = oldName_ms;
const QString newName_ret = newName;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray newName_b = newName_ret.toUtf8();
struct miqt_string newName_ms;
newName_ms.len = newName_b.length();
newName_ms.data = static_cast<char*>(malloc(newName_ms.len));
memcpy(newName_ms.data, newName_b.data(), newName_ms.len);
struct miqt_string sigval3 = newName_ms;
miqt_exec_callback_QFileSystemModel_FileRenamed(slot, sigval1, sigval2, sigval3);
});
}
void QFileSystemModel_DirectoryLoaded(QFileSystemModel* self, struct miqt_string path) {
QString path_QString = QString::fromUtf8(path.data, path.len);
self->directoryLoaded(path_QString);
}
void QFileSystemModel_connect_DirectoryLoaded(QFileSystemModel* self, intptr_t slot) {
MiqtVirtualQFileSystemModel::connect(self, static_cast<void (QFileSystemModel::*)(const QString&)>(&QFileSystemModel::directoryLoaded), self, [=](const QString& path) {
const QString path_ret = path;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray path_b = path_ret.toUtf8();
struct miqt_string path_ms;
path_ms.len = path_b.length();
path_ms.data = static_cast<char*>(malloc(path_ms.len));
memcpy(path_ms.data, path_b.data(), path_ms.len);
struct miqt_string sigval1 = path_ms;
miqt_exec_callback_QFileSystemModel_DirectoryLoaded(slot, sigval1);
});
}
QModelIndex* QFileSystemModel_Index(const QFileSystemModel* self, int row, int column, QModelIndex* parent) {
return new QModelIndex(self->index(static_cast<int>(row), static_cast<int>(column), *parent));
}
QModelIndex* QFileSystemModel_IndexWithPath(const QFileSystemModel* self, struct miqt_string path) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return new QModelIndex(self->index(path_QString));
}
QModelIndex* QFileSystemModel_Parent(const QFileSystemModel* self, QModelIndex* child) {
return new QModelIndex(self->parent(*child));
}
QModelIndex* QFileSystemModel_Sibling(const QFileSystemModel* self, int row, int column, QModelIndex* idx) {
return new QModelIndex(self->sibling(static_cast<int>(row), static_cast<int>(column), *idx));
}
bool QFileSystemModel_HasChildren(const QFileSystemModel* self, QModelIndex* parent) {
return self->hasChildren(*parent);
}
bool QFileSystemModel_CanFetchMore(const QFileSystemModel* self, QModelIndex* parent) {
return self->canFetchMore(*parent);
}
void QFileSystemModel_FetchMore(QFileSystemModel* self, QModelIndex* parent) {
self->fetchMore(*parent);
}
int QFileSystemModel_RowCount(const QFileSystemModel* self, QModelIndex* parent) {
return self->rowCount(*parent);
}
int QFileSystemModel_ColumnCount(const QFileSystemModel* self, QModelIndex* parent) {
return self->columnCount(*parent);
}
QVariant* QFileSystemModel_MyComputer(const QFileSystemModel* self) {
return new QVariant(self->myComputer());
}
QVariant* QFileSystemModel_Data(const QFileSystemModel* self, QModelIndex* index, int role) {
return new QVariant(self->data(*index, static_cast<int>(role)));
}
bool QFileSystemModel_SetData(QFileSystemModel* self, QModelIndex* index, QVariant* value, int role) {
return self->setData(*index, *value, static_cast<int>(role));
}
QVariant* QFileSystemModel_HeaderData(const QFileSystemModel* 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)));
}
int QFileSystemModel_Flags(const QFileSystemModel* self, QModelIndex* index) {
Qt::ItemFlags _ret = self->flags(*index);
return static_cast<int>(_ret);
}
void QFileSystemModel_Sort(QFileSystemModel* self, int column, int order) {
self->sort(static_cast<int>(column), static_cast<Qt::SortOrder>(order));
}
struct miqt_array /* of struct miqt_string */ QFileSystemModel_MimeTypes(const QFileSystemModel* self) {
QStringList _ret = self->mimeTypes();
// Convert QList<> from C++ memory to manually-managed C memory
struct miqt_string* _arr = static_cast<struct miqt_string*>(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();
struct miqt_string _lv_ms;
_lv_ms.len = _lv_b.length();
_lv_ms.data = static_cast<char*>(malloc(_lv_ms.len));
memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len);
_arr[i] = _lv_ms;
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
QMimeData* QFileSystemModel_MimeData(const QFileSystemModel* self, struct miqt_array /* of QModelIndex* */ indexes) {
QModelIndexList indexes_QList;
indexes_QList.reserve(indexes.len);
QModelIndex** indexes_arr = static_cast<QModelIndex**>(indexes.data);
for(size_t i = 0; i < indexes.len; ++i) {
indexes_QList.push_back(*(indexes_arr[i]));
}
return self->mimeData(indexes_QList);
}
bool QFileSystemModel_DropMimeData(QFileSystemModel* self, QMimeData* data, int action, int row, int column, QModelIndex* parent) {
return self->dropMimeData(data, static_cast<Qt::DropAction>(action), static_cast<int>(row), static_cast<int>(column), *parent);
}
int QFileSystemModel_SupportedDropActions(const QFileSystemModel* self) {
Qt::DropActions _ret = self->supportedDropActions();
return static_cast<int>(_ret);
}
struct miqt_map /* of int to struct miqt_string */ QFileSystemModel_RoleNames(const QFileSystemModel* self) {
QHash<int, QByteArray> _ret = self->roleNames();
// Convert QMap<> from C++ memory to manually-managed C memory
int* _karr = static_cast<int*>(malloc(sizeof(int) * _ret.size()));
struct miqt_string* _varr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.size()));
int _ctr = 0;
for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) {
_karr[_ctr] = _itr->first;
QByteArray _hashval_qb = _itr->second;
struct miqt_string _hashval_ms;
_hashval_ms.len = _hashval_qb.length();
_hashval_ms.data = static_cast<char*>(malloc(_hashval_ms.len));
memcpy(_hashval_ms.data, _hashval_qb.data(), _hashval_ms.len);
_varr[_ctr] = _hashval_ms;
_ctr++;
}
struct miqt_map _out;
_out.len = _ret.size();
_out.keys = static_cast<void*>(_karr);
_out.values = static_cast<void*>(_varr);
return _out;
}
QModelIndex* QFileSystemModel_SetRootPath(QFileSystemModel* self, struct miqt_string path) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return new QModelIndex(self->setRootPath(path_QString));
}
struct miqt_string QFileSystemModel_RootPath(const QFileSystemModel* self) {
QString _ret = self->rootPath();
// 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;
}
QDir* QFileSystemModel_RootDirectory(const QFileSystemModel* self) {
return new QDir(self->rootDirectory());
}
void QFileSystemModel_SetIconProvider(QFileSystemModel* self, QAbstractFileIconProvider* provider) {
self->setIconProvider(provider);
}
QAbstractFileIconProvider* QFileSystemModel_IconProvider(const QFileSystemModel* self) {
return self->iconProvider();
}
void QFileSystemModel_SetFilter(QFileSystemModel* self, int filters) {
self->setFilter(static_cast<QDir::Filters>(filters));
}
int QFileSystemModel_Filter(const QFileSystemModel* self) {
QDir::Filters _ret = self->filter();
return static_cast<int>(_ret);
}
void QFileSystemModel_SetResolveSymlinks(QFileSystemModel* self, bool enable) {
self->setResolveSymlinks(enable);
}
bool QFileSystemModel_ResolveSymlinks(const QFileSystemModel* self) {
return self->resolveSymlinks();
}
void QFileSystemModel_SetReadOnly(QFileSystemModel* self, bool enable) {
self->setReadOnly(enable);
}
bool QFileSystemModel_IsReadOnly(const QFileSystemModel* self) {
return self->isReadOnly();
}
void QFileSystemModel_SetNameFilterDisables(QFileSystemModel* self, bool enable) {
self->setNameFilterDisables(enable);
}
bool QFileSystemModel_NameFilterDisables(const QFileSystemModel* self) {
return self->nameFilterDisables();
}
void QFileSystemModel_SetNameFilters(QFileSystemModel* self, struct miqt_array /* of struct miqt_string */ filters) {
QStringList filters_QList;
filters_QList.reserve(filters.len);
struct miqt_string* filters_arr = static_cast<struct miqt_string*>(filters.data);
for(size_t i = 0; i < filters.len; ++i) {
QString filters_arr_i_QString = QString::fromUtf8(filters_arr[i].data, filters_arr[i].len);
filters_QList.push_back(filters_arr_i_QString);
}
self->setNameFilters(filters_QList);
}
struct miqt_array /* of struct miqt_string */ QFileSystemModel_NameFilters(const QFileSystemModel* self) {
QStringList _ret = self->nameFilters();
// Convert QList<> from C++ memory to manually-managed C memory
struct miqt_string* _arr = static_cast<struct miqt_string*>(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();
struct miqt_string _lv_ms;
_lv_ms.len = _lv_b.length();
_lv_ms.data = static_cast<char*>(malloc(_lv_ms.len));
memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len);
_arr[i] = _lv_ms;
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
void QFileSystemModel_SetOption(QFileSystemModel* self, int option) {
self->setOption(static_cast<QFileSystemModel::Option>(option));
}
bool QFileSystemModel_TestOption(const QFileSystemModel* self, int option) {
return self->testOption(static_cast<QFileSystemModel::Option>(option));
}
void QFileSystemModel_SetOptions(QFileSystemModel* self, int options) {
self->setOptions(static_cast<QFileSystemModel::Options>(options));
}
int QFileSystemModel_Options(const QFileSystemModel* self) {
QFileSystemModel::Options _ret = self->options();
return static_cast<int>(_ret);
}
struct miqt_string QFileSystemModel_FilePath(const QFileSystemModel* self, QModelIndex* index) {
QString _ret = self->filePath(*index);
// 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;
}
bool QFileSystemModel_IsDir(const QFileSystemModel* self, QModelIndex* index) {
return self->isDir(*index);
}
long long QFileSystemModel_Size(const QFileSystemModel* self, QModelIndex* index) {
qint64 _ret = self->size(*index);
return static_cast<long long>(_ret);
}
struct miqt_string QFileSystemModel_Type(const QFileSystemModel* self, QModelIndex* index) {
QString _ret = self->type(*index);
// 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;
}
QDateTime* QFileSystemModel_LastModified(const QFileSystemModel* self, QModelIndex* index) {
return new QDateTime(self->lastModified(*index));
}
QModelIndex* QFileSystemModel_Mkdir(QFileSystemModel* self, QModelIndex* parent, struct miqt_string name) {
QString name_QString = QString::fromUtf8(name.data, name.len);
return new QModelIndex(self->mkdir(*parent, name_QString));
}
bool QFileSystemModel_Rmdir(QFileSystemModel* self, QModelIndex* index) {
return self->rmdir(*index);
}
struct miqt_string QFileSystemModel_FileName(const QFileSystemModel* self, QModelIndex* index) {
QString _ret = self->fileName(*index);
// 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;
}
QIcon* QFileSystemModel_FileIcon(const QFileSystemModel* self, QModelIndex* index) {
return new QIcon(self->fileIcon(*index));
}
int QFileSystemModel_Permissions(const QFileSystemModel* self, QModelIndex* index) {
QFile::Permissions _ret = self->permissions(*index);
return static_cast<int>(_ret);
}
QFileInfo* QFileSystemModel_FileInfo(const QFileSystemModel* self, QModelIndex* index) {
return new QFileInfo(self->fileInfo(*index));
}
bool QFileSystemModel_Remove(QFileSystemModel* self, QModelIndex* index) {
return self->remove(*index);
}
struct miqt_string QFileSystemModel_Tr2(const char* s, const char* c) {
QString _ret = QFileSystemModel::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 QFileSystemModel_Tr3(const char* s, const char* c, int n) {
QString _ret = QFileSystemModel::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;
}
QModelIndex* QFileSystemModel_Index2(const QFileSystemModel* self, struct miqt_string path, int column) {
QString path_QString = QString::fromUtf8(path.data, path.len);
return new QModelIndex(self->index(path_QString, static_cast<int>(column)));
}
QVariant* QFileSystemModel_MyComputer1(const QFileSystemModel* self, int role) {
return new QVariant(self->myComputer(static_cast<int>(role)));
}
void QFileSystemModel_SetOption2(QFileSystemModel* self, int option, bool on) {
self->setOption(static_cast<QFileSystemModel::Option>(option), on);
}
void QFileSystemModel_override_virtual_Index(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Index = slot;
}
QModelIndex* QFileSystemModel_virtualbase_Index(const void* self, int row, int column, QModelIndex* parent) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Index(row, column, parent);
}
void QFileSystemModel_override_virtual_Parent(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Parent = slot;
}
QModelIndex* QFileSystemModel_virtualbase_Parent(const void* self, QModelIndex* child) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Parent(child);
}
void QFileSystemModel_override_virtual_Sibling(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Sibling = slot;
}
QModelIndex* QFileSystemModel_virtualbase_Sibling(const void* self, int row, int column, QModelIndex* idx) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Sibling(row, column, idx);
}
void QFileSystemModel_override_virtual_HasChildren(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__HasChildren = slot;
}
bool QFileSystemModel_virtualbase_HasChildren(const void* self, QModelIndex* parent) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_HasChildren(parent);
}
void QFileSystemModel_override_virtual_CanFetchMore(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__CanFetchMore = slot;
}
bool QFileSystemModel_virtualbase_CanFetchMore(const void* self, QModelIndex* parent) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_CanFetchMore(parent);
}
void QFileSystemModel_override_virtual_FetchMore(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__FetchMore = slot;
}
void QFileSystemModel_virtualbase_FetchMore(void* self, QModelIndex* parent) {
( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_FetchMore(parent);
}
void QFileSystemModel_override_virtual_RowCount(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__RowCount = slot;
}
int QFileSystemModel_virtualbase_RowCount(const void* self, QModelIndex* parent) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_RowCount(parent);
}
void QFileSystemModel_override_virtual_ColumnCount(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__ColumnCount = slot;
}
int QFileSystemModel_virtualbase_ColumnCount(const void* self, QModelIndex* parent) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_ColumnCount(parent);
}
void QFileSystemModel_override_virtual_Data(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Data = slot;
}
QVariant* QFileSystemModel_virtualbase_Data(const void* self, QModelIndex* index, int role) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Data(index, role);
}
void QFileSystemModel_override_virtual_SetData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__SetData = slot;
}
bool QFileSystemModel_virtualbase_SetData(void* self, QModelIndex* index, QVariant* value, int role) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_SetData(index, value, role);
}
void QFileSystemModel_override_virtual_HeaderData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__HeaderData = slot;
}
QVariant* QFileSystemModel_virtualbase_HeaderData(const void* self, int section, int orientation, int role) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_HeaderData(section, orientation, role);
}
void QFileSystemModel_override_virtual_Flags(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Flags = slot;
}
int QFileSystemModel_virtualbase_Flags(const void* self, QModelIndex* index) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Flags(index);
}
void QFileSystemModel_override_virtual_Sort(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Sort = slot;
}
void QFileSystemModel_virtualbase_Sort(void* self, int column, int order) {
( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Sort(column, order);
}
void QFileSystemModel_override_virtual_MimeTypes(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__MimeTypes = slot;
}
struct miqt_array /* of struct miqt_string */ QFileSystemModel_virtualbase_MimeTypes(const void* self) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_MimeTypes();
}
void QFileSystemModel_override_virtual_MimeData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__MimeData = slot;
}
QMimeData* QFileSystemModel_virtualbase_MimeData(const void* self, struct miqt_array /* of QModelIndex* */ indexes) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_MimeData(indexes);
}
void QFileSystemModel_override_virtual_DropMimeData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__DropMimeData = slot;
}
bool QFileSystemModel_virtualbase_DropMimeData(void* self, QMimeData* data, int action, int row, int column, QModelIndex* parent) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_DropMimeData(data, action, row, column, parent);
}
void QFileSystemModel_override_virtual_SupportedDropActions(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__SupportedDropActions = slot;
}
int QFileSystemModel_virtualbase_SupportedDropActions(const void* self) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_SupportedDropActions();
}
void QFileSystemModel_override_virtual_RoleNames(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__RoleNames = slot;
}
struct miqt_map /* of int to struct miqt_string */ QFileSystemModel_virtualbase_RoleNames(const void* self) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_RoleNames();
}
void QFileSystemModel_override_virtual_TimerEvent(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__TimerEvent = slot;
}
void QFileSystemModel_virtualbase_TimerEvent(void* self, QTimerEvent* event) {
( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_TimerEvent(event);
}
void QFileSystemModel_override_virtual_Event(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Event = slot;
}
bool QFileSystemModel_virtualbase_Event(void* self, QEvent* event) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Event(event);
}
void QFileSystemModel_override_virtual_SetHeaderData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__SetHeaderData = slot;
}
bool QFileSystemModel_virtualbase_SetHeaderData(void* self, int section, int orientation, QVariant* value, int role) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_SetHeaderData(section, orientation, value, role);
}
void QFileSystemModel_override_virtual_ItemData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__ItemData = slot;
}
struct miqt_map /* of int to QVariant* */ QFileSystemModel_virtualbase_ItemData(const void* self, QModelIndex* index) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_ItemData(index);
}
void QFileSystemModel_override_virtual_SetItemData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__SetItemData = slot;
}
bool QFileSystemModel_virtualbase_SetItemData(void* self, QModelIndex* index, struct miqt_map /* of int to QVariant* */ roles) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_SetItemData(index, roles);
}
void QFileSystemModel_override_virtual_ClearItemData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__ClearItemData = slot;
}
bool QFileSystemModel_virtualbase_ClearItemData(void* self, QModelIndex* index) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_ClearItemData(index);
}
void QFileSystemModel_override_virtual_CanDropMimeData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__CanDropMimeData = slot;
}
bool QFileSystemModel_virtualbase_CanDropMimeData(const void* self, QMimeData* data, int action, int row, int column, QModelIndex* parent) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_CanDropMimeData(data, action, row, column, parent);
}
void QFileSystemModel_override_virtual_SupportedDragActions(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__SupportedDragActions = slot;
}
int QFileSystemModel_virtualbase_SupportedDragActions(const void* self) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_SupportedDragActions();
}
void QFileSystemModel_override_virtual_InsertRows(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__InsertRows = slot;
}
bool QFileSystemModel_virtualbase_InsertRows(void* self, int row, int count, QModelIndex* parent) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_InsertRows(row, count, parent);
}
void QFileSystemModel_override_virtual_InsertColumns(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__InsertColumns = slot;
}
bool QFileSystemModel_virtualbase_InsertColumns(void* self, int column, int count, QModelIndex* parent) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_InsertColumns(column, count, parent);
}
void QFileSystemModel_override_virtual_RemoveRows(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__RemoveRows = slot;
}
bool QFileSystemModel_virtualbase_RemoveRows(void* self, int row, int count, QModelIndex* parent) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_RemoveRows(row, count, parent);
}
void QFileSystemModel_override_virtual_RemoveColumns(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__RemoveColumns = slot;
}
bool QFileSystemModel_virtualbase_RemoveColumns(void* self, int column, int count, QModelIndex* parent) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_RemoveColumns(column, count, parent);
}
void QFileSystemModel_override_virtual_MoveRows(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__MoveRows = slot;
}
bool QFileSystemModel_virtualbase_MoveRows(void* self, QModelIndex* sourceParent, int sourceRow, int count, QModelIndex* destinationParent, int destinationChild) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_MoveRows(sourceParent, sourceRow, count, destinationParent, destinationChild);
}
void QFileSystemModel_override_virtual_MoveColumns(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__MoveColumns = slot;
}
bool QFileSystemModel_virtualbase_MoveColumns(void* self, QModelIndex* sourceParent, int sourceColumn, int count, QModelIndex* destinationParent, int destinationChild) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_MoveColumns(sourceParent, sourceColumn, count, destinationParent, destinationChild);
}
void QFileSystemModel_override_virtual_Buddy(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Buddy = slot;
}
QModelIndex* QFileSystemModel_virtualbase_Buddy(const void* self, QModelIndex* index) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Buddy(index);
}
void QFileSystemModel_override_virtual_Match(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Match = slot;
}
struct miqt_array /* of QModelIndex* */ QFileSystemModel_virtualbase_Match(const void* self, QModelIndex* start, int role, QVariant* value, int hits, int flags) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Match(start, role, value, hits, flags);
}
void QFileSystemModel_override_virtual_Span(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Span = slot;
}
QSize* QFileSystemModel_virtualbase_Span(const void* self, QModelIndex* index) {
return ( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Span(index);
}
void QFileSystemModel_override_virtual_MultiData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__MultiData = slot;
}
void QFileSystemModel_virtualbase_MultiData(const void* self, QModelIndex* index, QModelRoleDataSpan* roleDataSpan) {
( (const MiqtVirtualQFileSystemModel*)(self) )->virtualbase_MultiData(index, roleDataSpan);
}
void QFileSystemModel_override_virtual_Submit(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Submit = slot;
}
bool QFileSystemModel_virtualbase_Submit(void* self) {
return ( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Submit();
}
void QFileSystemModel_override_virtual_Revert(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__Revert = slot;
}
void QFileSystemModel_virtualbase_Revert(void* self) {
( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_Revert();
}
void QFileSystemModel_override_virtual_ResetInternalData(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQFileSystemModel*>( (QFileSystemModel*)(self) )->handle__ResetInternalData = slot;
}
void QFileSystemModel_virtualbase_ResetInternalData(void* self) {
( (MiqtVirtualQFileSystemModel*)(self) )->virtualbase_ResetInternalData();
}
void QFileSystemModel_Delete(QFileSystemModel* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<MiqtVirtualQFileSystemModel*>( self );
} else {
delete self;
}
}