miqt/qt/gen_qfilesystemmodel.cpp

440 lines
17 KiB
C++

#include <QDateTime>
#include <QDir>
#include <QFileIconProvider>
#include <QFileInfo>
#include <QFileSystemModel>
#include <QIcon>
#include <QList>
#include <QMetaObject>
#include <QMimeData>
#include <QModelIndex>
#include <QObject>
#include <QString>
#include <QByteArray>
#include <cstring>
#include <QVariant>
#include "qfilesystemmodel.h"
#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, void* slot) {
QFileSystemModel::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* 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, void* slot) {
QFileSystemModel::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* 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, void* slot) {
QFileSystemModel::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* 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<int>(row), static_cast<int>(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<int>(row), static_cast<int>(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<int>(section), static_cast<Qt::Orientation>(orientation)));
}
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) {
self->sort(static_cast<int>(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<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();
_arr[i] = miqt_strdup(_lv_b.data(), _lv_b.length());
}
struct miqt_array* _out = static_cast<struct miqt_array*>(malloc(sizeof(struct miqt_array)));
_out->len = _ret.length();
_out->data = static_cast<void*>(_arr);
return _out;
}
QMimeData* QFileSystemModel_MimeData(const QFileSystemModel* self, struct miqt_array* /* of QModelIndex* */ indexes) {
QList<QModelIndex> 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);
}
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<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) {
QList<QString> 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* 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();
_arr[i] = miqt_strdup(_lv_b.data(), _lv_b.length());
}
struct miqt_array* _out = static_cast<struct miqt_array*>(malloc(sizeof(struct miqt_array)));
_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();
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<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();
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<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();
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<int>(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<int>(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<int>(row), static_cast<int>(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<int>(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<int>(role)));
}
QVariant* QFileSystemModel_Data2(const QFileSystemModel* self, QModelIndex* index, int role) {
return new QVariant(self->data(*index, static_cast<int>(role)));
}
bool QFileSystemModel_SetData3(QFileSystemModel* self, QModelIndex* index, QVariant* value, int role) {
return self->setData(*index, *value, static_cast<int>(role));
}
QVariant* QFileSystemModel_HeaderData3(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)));
}
void QFileSystemModel_Sort2(QFileSystemModel* self, int column, int order) {
self->sort(static_cast<int>(column), static_cast<Qt::SortOrder>(order));
}
void QFileSystemModel_SetOption2(QFileSystemModel* self, int option, bool on) {
self->setOption(static_cast<QFileSystemModel::Option>(option), on);
}
void QFileSystemModel_Delete(QFileSystemModel* self) {
delete self;
}