#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "gen_qfilesystemmodel.h" #include "_cgo_export.h" QFileSystemModel* QFileSystemModel_new() { return new QFileSystemModel(); } QFileSystemModel* QFileSystemModel_new2(QObject* parent) { return new QFileSystemModel(parent); } 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QFileSystemModel_TrUtf8(const char* s) { QString _ret = QFileSystemModel::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()); } 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) { QFileSystemModel::connect(self, static_cast(&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* sigval1 = miqt_strdup(newPath_b.data(), newPath_b.length()); 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) { QFileSystemModel::connect(self, static_cast(&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* sigval1 = miqt_strdup(path_b.data(), path_b.length()); 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* sigval2 = miqt_strdup(oldName_b.data(), oldName_b.length()); 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* sigval3 = miqt_strdup(newName_b.data(), newName_b.length()); 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) { QFileSystemModel::connect(self, static_cast(&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* sigval1 = miqt_strdup(path_b.data(), path_b.length()); miqt_exec_callback_QFileSystemModel_DirectoryLoaded(slot, sigval1); }); } QModelIndex* QFileSystemModel_Index(const QFileSystemModel* self, int row, int column) { return new QModelIndex(self->index(static_cast(row), static_cast(column))); } 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(row), static_cast(column), *idx)); } bool QFileSystemModel_HasChildren(const QFileSystemModel* self) { return self->hasChildren(); } 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) { return self->rowCount(); } int QFileSystemModel_ColumnCount(const QFileSystemModel* self) { return self->columnCount(); } QVariant* QFileSystemModel_MyComputer(const QFileSystemModel* self) { return new QVariant(self->myComputer()); } QVariant* QFileSystemModel_Data(const QFileSystemModel* self, QModelIndex* index) { return new QVariant(self->data(*index)); } bool QFileSystemModel_SetData(QFileSystemModel* self, QModelIndex* index, QVariant* value) { return self->setData(*index, *value); } QVariant* QFileSystemModel_HeaderData(const QFileSystemModel* self, int section, int orientation) { return new QVariant(self->headerData(static_cast(section), static_cast(orientation))); } int QFileSystemModel_Flags(const QFileSystemModel* self, QModelIndex* index) { Qt::ItemFlags _ret = self->flags(*index); return static_cast(_ret); } void QFileSystemModel_Sort(QFileSystemModel* self, int column) { self->sort(static_cast(column)); } struct miqt_array* 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(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* QFileSystemModel_MimeData(const QFileSystemModel* self, struct miqt_array* /* of QModelIndex* */ indexes) { QModelIndexList 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 QFileSystemModel_DropMimeData(QFileSystemModel* self, QMimeData* data, int action, int row, int column, QModelIndex* parent) { return self->dropMimeData(data, static_cast(action), static_cast(row), static_cast(column), *parent); } int QFileSystemModel_SupportedDropActions(const QFileSystemModel* self) { Qt::DropActions _ret = self->supportedDropActions(); return static_cast(_ret); } 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(); return miqt_strdup(_b.data(), _b.length()); } QDir* QFileSystemModel_RootDirectory(const QFileSystemModel* self) { return new QDir(self->rootDirectory()); } void QFileSystemModel_SetIconProvider(QFileSystemModel* self, QFileIconProvider* provider) { self->setIconProvider(provider); } QFileIconProvider* QFileSystemModel_IconProvider(const QFileSystemModel* self) { return self->iconProvider(); } void QFileSystemModel_SetFilter(QFileSystemModel* self, int filters) { self->setFilter(static_cast(filters)); } int QFileSystemModel_Filter(const QFileSystemModel* self) { QDir::Filters _ret = self->filter(); return static_cast(_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(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* 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(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; } void QFileSystemModel_SetOption(QFileSystemModel* self, int option) { self->setOption(static_cast(option)); } bool QFileSystemModel_TestOption(const QFileSystemModel* self, int option) { return self->testOption(static_cast(option)); } void QFileSystemModel_SetOptions(QFileSystemModel* self, int options) { self->setOptions(static_cast(options)); } int QFileSystemModel_Options(const QFileSystemModel* self) { QFileSystemModel::Options _ret = self->options(); return static_cast(_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(); return miqt_strdup(_b.data(), _b.length()); } 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(_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(); return miqt_strdup(_b.data(), _b.length()); } 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(); return miqt_strdup(_b.data(), _b.length()); } 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(_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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QFileSystemModel_Tr3(const char* s, const char* c, int n) { QString _ret = QFileSystemModel::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* QFileSystemModel_TrUtf82(const char* s, const char* c) { QString _ret = QFileSystemModel::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* QFileSystemModel_TrUtf83(const char* s, const char* c, int n) { QString _ret = QFileSystemModel::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()); } QModelIndex* QFileSystemModel_Index3(const QFileSystemModel* self, int row, int column, QModelIndex* parent) { return new QModelIndex(self->index(static_cast(row), static_cast(column), *parent)); } 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(column))); } bool QFileSystemModel_HasChildren1(const QFileSystemModel* self, QModelIndex* parent) { return self->hasChildren(*parent); } int QFileSystemModel_RowCount1(const QFileSystemModel* self, QModelIndex* parent) { return self->rowCount(*parent); } int QFileSystemModel_ColumnCount1(const QFileSystemModel* self, QModelIndex* parent) { return self->columnCount(*parent); } QVariant* QFileSystemModel_MyComputer1(const QFileSystemModel* self, int role) { return new QVariant(self->myComputer(static_cast(role))); } QVariant* QFileSystemModel_Data2(const QFileSystemModel* self, QModelIndex* index, int role) { return new QVariant(self->data(*index, static_cast(role))); } bool QFileSystemModel_SetData3(QFileSystemModel* self, QModelIndex* index, QVariant* value, int role) { return self->setData(*index, *value, static_cast(role)); } QVariant* QFileSystemModel_HeaderData3(const QFileSystemModel* self, int section, int orientation, int role) { return new QVariant(self->headerData(static_cast(section), static_cast(orientation), static_cast(role))); } void QFileSystemModel_Sort2(QFileSystemModel* self, int column, int order) { self->sort(static_cast(column), static_cast(order)); } void QFileSystemModel_SetOption2(QFileSystemModel* self, int option, bool on) { self->setOption(static_cast(option), on); } void QFileSystemModel_Delete(QFileSystemModel* self) { delete self; }