2017-02-12 13:21:08 +01:00
/*
KLayout Layout Viewer
2017-02-12 15:28:14 +01:00
Copyright ( C ) 2006 - 2017 Matthias Koefferlein
2017-02-12 13:21:08 +01:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 USA
*/
/**
* @ file gsiDeclQFileSystemModel . cc
*
* DO NOT EDIT THIS FILE .
* This file has been created automatically
*/
# include <QFileSystemModel>
# include <QChildEvent>
# include <QDataStream>
# include <QDateTime>
# include <QDir>
# include <QEvent>
# include <QFileIconProvider>
# include <QFileInfo>
# include <QIcon>
# include <QMimeData>
# include <QModelIndex>
# include <QObject>
# include <QSize>
# include <QThread>
# include <QTimerEvent>
# include "gsiQt.h"
# include "gsiQtCommon.h"
# include "gsiDeclQtTypeTraits.h"
# include <memory>
// -----------------------------------------------------------------------
// class QFileSystemModel
// get static meta object
static void _init_smo ( qt_gsi : : GenericStaticMethod * decl )
{
decl - > set_return < const QMetaObject & > ( ) ;
}
static void _call_smo ( const qt_gsi : : GenericStaticMethod * , gsi : : SerialArgs & , gsi : : SerialArgs & ret )
{
ret . write < const QMetaObject & > ( QFileSystemModel : : staticMetaObject ) ;
}
// (const QModelIndex &) const
static void _init_f_canFetchMore_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_f_canFetchMore_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > canFetchMore ( arg1 ) ) ;
}
// (const QModelIndex &) const
static void _init_f_columnCount_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " , true , " QModelIndex() " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < int > ( ) ;
}
static void _call_f_columnCount_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args ? args . read < const QModelIndex & > ( heap ) : ( const QModelIndex & ) ( QModelIndex ( ) ) ;
ret . write < int > ( ( int ) ( ( QFileSystemModel * ) cls ) - > columnCount ( arg1 ) ) ;
}
// (const QModelIndex &, int) const
static void _init_f_data_c3054 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " role " , true , " Qt::DisplayRole " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
decl - > set_return < QVariant > ( ) ;
}
static void _call_f_data_c3054 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args ? args . read < int > ( heap ) : ( int ) ( Qt : : DisplayRole ) ;
ret . write < QVariant > ( ( QVariant ) ( ( QFileSystemModel * ) cls ) - > data ( arg1 , arg2 ) ) ;
}
// (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &)
static void _init_f_dropMimeData_7425 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " data " ) ;
decl - > add_arg < const QMimeData * > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " action " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : DropAction > : : target_type & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " row " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
static gsi : : ArgSpecBase argspec_3 ( " column " ) ;
decl - > add_arg < int > ( argspec_3 ) ;
static gsi : : ArgSpecBase argspec_4 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_4 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_f_dropMimeData_7425 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QMimeData * arg1 = args . read < const QMimeData * > ( heap ) ;
const qt_gsi : : Converter < Qt : : DropAction > : : target_type & arg2 = args . read < const qt_gsi : : Converter < Qt : : DropAction > : : target_type & > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
int arg4 = args . read < int > ( heap ) ;
const QModelIndex & arg5 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > dropMimeData ( arg1 , qt_gsi : : QtToCppAdaptor < Qt : : DropAction > ( arg2 ) . cref ( ) , arg3 , arg4 , arg5 ) ) ;
}
// (const QModelIndex &)
static void _init_f_fetchMore_2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_fetchMore_2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > fetchMore ( arg1 ) ;
}
// QIcon QFileSystemModel::fileIcon(const QModelIndex &index)
static void _init_f_fileIcon_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QIcon > ( ) ;
}
static void _call_f_fileIcon_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QIcon > ( ( QIcon ) ( ( QFileSystemModel * ) cls ) - > fileIcon ( arg1 ) ) ;
}
// QFileInfo QFileSystemModel::fileInfo(const QModelIndex &index)
static void _init_f_fileInfo_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QFileInfo > ( ) ;
}
static void _call_f_fileInfo_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QFileInfo > ( ( QFileInfo ) ( ( QFileSystemModel * ) cls ) - > fileInfo ( arg1 ) ) ;
}
// QString QFileSystemModel::fileName(const QModelIndex &index)
static void _init_f_fileName_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QString > ( ) ;
}
static void _call_f_fileName_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QString > ( ( QString ) ( ( QFileSystemModel * ) cls ) - > fileName ( arg1 ) ) ;
}
// QString QFileSystemModel::filePath(const QModelIndex &index)
static void _init_f_filePath_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QString > ( ) ;
}
static void _call_f_filePath_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QString > ( ( QString ) ( ( QFileSystemModel * ) cls ) - > filePath ( arg1 ) ) ;
}
// QFlags<QDir::Filter> QFileSystemModel::filter()
static void _init_f_filter_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QFlags < QDir : : Filter > > ( ) ;
}
static void _call_f_filter_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QFlags < QDir : : Filter > > ( ( QFlags < QDir : : Filter > ) ( ( QFileSystemModel * ) cls ) - > filter ( ) ) ;
}
// (const QModelIndex &) const
static void _init_f_flags_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QFlags < Qt : : ItemFlag > > ( ) ;
}
static void _call_f_flags_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QFlags < Qt : : ItemFlag > > ( ( QFlags < Qt : : ItemFlag > ) ( ( QFileSystemModel * ) cls ) - > flags ( arg1 ) ) ;
}
// (const QModelIndex &) const
static void _init_f_hasChildren_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " , true , " QModelIndex() " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_f_hasChildren_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args ? args . read < const QModelIndex & > ( heap ) : ( const QModelIndex & ) ( QModelIndex ( ) ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > hasChildren ( arg1 ) ) ;
}
// (int, Qt::Orientation, int) const
static void _init_f_headerData_c3231 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " section " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " orientation " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " role " , true , " Qt::DisplayRole " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < QVariant > ( ) ;
}
static void _call_f_headerData_c3231 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
const qt_gsi : : Converter < Qt : : Orientation > : : target_type & arg2 = args . read < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( heap ) ;
int arg3 = args ? args . read < int > ( heap ) : ( int ) ( Qt : : DisplayRole ) ;
ret . write < QVariant > ( ( QVariant ) ( ( QFileSystemModel * ) cls ) - > headerData ( arg1 , qt_gsi : : QtToCppAdaptor < Qt : : Orientation > ( arg2 ) . cref ( ) , arg3 ) ) ;
}
// QFileIconProvider *QFileSystemModel::iconProvider()
static void _init_f_iconProvider_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QFileIconProvider * > ( ) ;
}
static void _call_f_iconProvider_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QFileIconProvider * > ( ( QFileIconProvider * ) ( ( QFileSystemModel * ) cls ) - > iconProvider ( ) ) ;
}
// (int, int, const QModelIndex &) const
static void _init_f_index_c3713 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " column " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " parent " , true , " QModelIndex() " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_2 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_f_index_c3713 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QModelIndex & arg3 = args ? args . read < const QModelIndex & > ( heap ) : ( const QModelIndex & ) ( QModelIndex ( ) ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel * ) cls ) - > index ( arg1 , arg2 , arg3 ) ) ;
}
// (const QString &, int) const
static void _init_f_index_c2684 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " path " ) ;
decl - > add_arg < const QString & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " column " , true , " 0 " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_f_index_c2684 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QString & arg1 = args . read < const QString & > ( heap ) ;
int arg2 = args ? args . read < int > ( heap ) : ( int ) ( 0 ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel * ) cls ) - > index ( arg1 , arg2 ) ) ;
}
// bool QFileSystemModel::isDir(const QModelIndex &index)
static void _init_f_isDir_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_f_isDir_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > isDir ( arg1 ) ) ;
}
// bool QFileSystemModel::isReadOnly()
static void _init_f_isReadOnly_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < bool > ( ) ;
}
static void _call_f_isReadOnly_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > isReadOnly ( ) ) ;
}
// QDateTime QFileSystemModel::lastModified(const QModelIndex &index)
static void _init_f_lastModified_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QDateTime > ( ) ;
}
static void _call_f_lastModified_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QDateTime > ( ( QDateTime ) ( ( QFileSystemModel * ) cls ) - > lastModified ( arg1 ) ) ;
}
// (const QList<QModelIndex> &) const
static void _init_f_mimeData_c3010 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " indexes " ) ;
decl - > add_arg < const QList < QModelIndex > & > ( argspec_0 ) ;
decl - > set_return < QMimeData * > ( ) ;
}
static void _call_f_mimeData_c3010 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QList < QModelIndex > & arg1 = args . read < const QList < QModelIndex > & > ( heap ) ;
ret . write < QMimeData * > ( ( QMimeData * ) ( ( QFileSystemModel * ) cls ) - > mimeData ( arg1 ) ) ;
}
// () const
static void _init_f_mimeTypes_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QStringList > ( ) ;
}
static void _call_f_mimeTypes_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QStringList > ( ( QStringList ) ( ( QFileSystemModel * ) cls ) - > mimeTypes ( ) ) ;
}
// QModelIndex QFileSystemModel::mkdir(const QModelIndex &parent, const QString &name)
static void _init_f_mkdir_4312 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " name " ) ;
decl - > add_arg < const QString & > ( argspec_1 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_f_mkdir_4312 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
const QString & arg2 = args . read < const QString & > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel * ) cls ) - > mkdir ( arg1 , arg2 ) ) ;
}
// QVariant QFileSystemModel::myComputer(int role)
static void _init_f_myComputer_c767 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " role " , true , " Qt::DisplayRole " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
decl - > set_return < QVariant > ( ) ;
}
static void _call_f_myComputer_c767 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args ? args . read < int > ( heap ) : ( int ) ( Qt : : DisplayRole ) ;
ret . write < QVariant > ( ( QVariant ) ( ( QFileSystemModel * ) cls ) - > myComputer ( arg1 ) ) ;
}
// bool QFileSystemModel::nameFilterDisables()
static void _init_f_nameFilterDisables_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < bool > ( ) ;
}
static void _call_f_nameFilterDisables_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > nameFilterDisables ( ) ) ;
}
// QStringList QFileSystemModel::nameFilters()
static void _init_f_nameFilters_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QStringList > ( ) ;
}
static void _call_f_nameFilters_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QStringList > ( ( QStringList ) ( ( QFileSystemModel * ) cls ) - > nameFilters ( ) ) ;
}
// (const QModelIndex &) const
static void _init_f_parent_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " child " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_f_parent_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel * ) cls ) - > parent ( arg1 ) ) ;
}
// QFlags<QFile::Permission> QFileSystemModel::permissions(const QModelIndex &index)
static void _init_f_permissions_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QFlags < QFile : : Permission > > ( ) ;
}
static void _call_f_permissions_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QFlags < QFile : : Permission > > ( ( QFlags < QFile : : Permission > ) ( ( QFileSystemModel * ) cls ) - > permissions ( arg1 ) ) ;
}
// bool QFileSystemModel::remove(const QModelIndex &index)
static void _init_f_remove_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_f_remove_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > remove ( arg1 ) ) ;
}
// bool QFileSystemModel::resolveSymlinks()
static void _init_f_resolveSymlinks_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < bool > ( ) ;
}
static void _call_f_resolveSymlinks_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > resolveSymlinks ( ) ) ;
}
// bool QFileSystemModel::rmdir(const QModelIndex &index)
static void _init_f_rmdir_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_f_rmdir_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > rmdir ( arg1 ) ) ;
}
// QDir QFileSystemModel::rootDirectory()
static void _init_f_rootDirectory_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QDir > ( ) ;
}
static void _call_f_rootDirectory_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QDir > ( ( QDir ) ( ( QFileSystemModel * ) cls ) - > rootDirectory ( ) ) ;
}
// QString QFileSystemModel::rootPath()
static void _init_f_rootPath_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QString > ( ) ;
}
static void _call_f_rootPath_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QString > ( ( QString ) ( ( QFileSystemModel * ) cls ) - > rootPath ( ) ) ;
}
// (const QModelIndex &) const
static void _init_f_rowCount_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " , true , " QModelIndex() " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < int > ( ) ;
}
static void _call_f_rowCount_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args ? args . read < const QModelIndex & > ( heap ) : ( const QModelIndex & ) ( QModelIndex ( ) ) ;
ret . write < int > ( ( int ) ( ( QFileSystemModel * ) cls ) - > rowCount ( arg1 ) ) ;
}
// (const QModelIndex &, const QVariant &, int)
static void _init_f_setData_5065 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " value " ) ;
decl - > add_arg < const QVariant & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " role " , true , " Qt::EditRole " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_f_setData_5065 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
const QVariant & arg2 = args . read < const QVariant & > ( heap ) ;
int arg3 = args ? args . read < int > ( heap ) : ( int ) ( Qt : : EditRole ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel * ) cls ) - > setData ( arg1 , arg2 , arg3 ) ) ;
}
// void QFileSystemModel::setFilter(QFlags<QDir::Filter> filters)
static void _init_f_setFilter_2230 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " filters " ) ;
decl - > add_arg < QFlags < QDir : : Filter > > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_setFilter_2230 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QFlags < QDir : : Filter > arg1 = args . read < QFlags < QDir : : Filter > > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > setFilter ( arg1 ) ;
}
// void QFileSystemModel::setIconProvider(QFileIconProvider *provider)
static void _init_f_setIconProvider_2323 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " provider " ) ;
decl - > add_arg < QFileIconProvider * > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_setIconProvider_2323 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QFileIconProvider * arg1 = args . read < QFileIconProvider * > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > setIconProvider ( arg1 ) ;
}
// void QFileSystemModel::setNameFilterDisables(bool enable)
static void _init_f_setNameFilterDisables_864 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " enable " ) ;
decl - > add_arg < bool > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_setNameFilterDisables_864 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
bool arg1 = args . read < bool > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > setNameFilterDisables ( arg1 ) ;
}
// void QFileSystemModel::setNameFilters(const QStringList &filters)
static void _init_f_setNameFilters_2437 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " filters " ) ;
decl - > add_arg < const QStringList & > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_setNameFilters_2437 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QStringList & arg1 = args . read < const QStringList & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > setNameFilters ( arg1 ) ;
}
// void QFileSystemModel::setReadOnly(bool enable)
static void _init_f_setReadOnly_864 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " enable " ) ;
decl - > add_arg < bool > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_setReadOnly_864 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
bool arg1 = args . read < bool > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > setReadOnly ( arg1 ) ;
}
// void QFileSystemModel::setResolveSymlinks(bool enable)
static void _init_f_setResolveSymlinks_864 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " enable " ) ;
decl - > add_arg < bool > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_setResolveSymlinks_864 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
bool arg1 = args . read < bool > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > setResolveSymlinks ( arg1 ) ;
}
// QModelIndex QFileSystemModel::setRootPath(const QString &path)
static void _init_f_setRootPath_2025 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " path " ) ;
decl - > add_arg < const QString & > ( argspec_0 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_f_setRootPath_2025 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QString & arg1 = args . read < const QString & > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel * ) cls ) - > setRootPath ( arg1 ) ) ;
}
// qint64 QFileSystemModel::size(const QModelIndex &index)
static void _init_f_size_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < qint64 > ( ) ;
}
static void _call_f_size_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < qint64 > ( ( qint64 ) ( ( QFileSystemModel * ) cls ) - > size ( arg1 ) ) ;
}
// (int, Qt::SortOrder)
static void _init_f_sort_2340 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " column " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " order " , true , " Qt::AscendingOrder " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & > ( argspec_1 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_f_sort_2340 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & arg2 = args ? args . read < const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & > ( heap ) : ( const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & ) ( qt_gsi : : CppToQtReadAdaptor < Qt : : SortOrder > ( heap , Qt : : AscendingOrder ) ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel * ) cls ) - > sort ( arg1 , qt_gsi : : QtToCppAdaptor < Qt : : SortOrder > ( arg2 ) . cref ( ) ) ;
}
// () const
static void _init_f_supportedDropActions_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QFlags < Qt : : DropAction > > ( ) ;
}
static void _call_f_supportedDropActions_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QFlags < Qt : : DropAction > > ( ( QFlags < Qt : : DropAction > ) ( ( QFileSystemModel * ) cls ) - > supportedDropActions ( ) ) ;
}
// QString QFileSystemModel::type(const QModelIndex &index)
static void _init_f_type_c2395 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QString > ( ) ;
}
static void _call_f_type_c2395 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QString > ( ( QString ) ( ( QFileSystemModel * ) cls ) - > type ( arg1 ) ) ;
}
// static QString QFileSystemModel::tr(const char *s, const char *c)
static void _init_f_tr_3354 ( qt_gsi : : GenericStaticMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " s " ) ;
decl - > add_arg < const char * > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " c " , true , " 0 " ) ;
decl - > add_arg < const char * > ( argspec_1 ) ;
decl - > set_return < QString > ( ) ;
}
static void _call_f_tr_3354 ( const qt_gsi : : GenericStaticMethod * /*decl*/ , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const char * arg1 = args . read < const char * > ( heap ) ;
const char * arg2 = args ? args . read < const char * > ( heap ) : ( const char * ) ( 0 ) ;
ret . write < QString > ( ( QString ) QFileSystemModel : : tr ( arg1 , arg2 ) ) ;
}
// static QString QFileSystemModel::tr(const char *s, const char *c, int n)
static void _init_f_tr_4013 ( qt_gsi : : GenericStaticMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " s " ) ;
decl - > add_arg < const char * > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " c " ) ;
decl - > add_arg < const char * > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " n " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < QString > ( ) ;
}
static void _call_f_tr_4013 ( const qt_gsi : : GenericStaticMethod * /*decl*/ , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const char * arg1 = args . read < const char * > ( heap ) ;
const char * arg2 = args . read < const char * > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
ret . write < QString > ( ( QString ) QFileSystemModel : : tr ( arg1 , arg2 , arg3 ) ) ;
}
// static QString QFileSystemModel::trUtf8(const char *s, const char *c)
static void _init_f_trUtf8_3354 ( qt_gsi : : GenericStaticMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " s " ) ;
decl - > add_arg < const char * > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " c " , true , " 0 " ) ;
decl - > add_arg < const char * > ( argspec_1 ) ;
decl - > set_return < QString > ( ) ;
}
static void _call_f_trUtf8_3354 ( const qt_gsi : : GenericStaticMethod * /*decl*/ , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const char * arg1 = args . read < const char * > ( heap ) ;
const char * arg2 = args ? args . read < const char * > ( heap ) : ( const char * ) ( 0 ) ;
ret . write < QString > ( ( QString ) QFileSystemModel : : trUtf8 ( arg1 , arg2 ) ) ;
}
// static QString QFileSystemModel::trUtf8(const char *s, const char *c, int n)
static void _init_f_trUtf8_4013 ( qt_gsi : : GenericStaticMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " s " ) ;
decl - > add_arg < const char * > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " c " ) ;
decl - > add_arg < const char * > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " n " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < QString > ( ) ;
}
static void _call_f_trUtf8_4013 ( const qt_gsi : : GenericStaticMethod * /*decl*/ , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const char * arg1 = args . read < const char * > ( heap ) ;
const char * arg2 = args . read < const char * > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
ret . write < QString > ( ( QString ) QFileSystemModel : : trUtf8 ( arg1 , arg2 , arg3 ) ) ;
}
namespace gsi
{
static gsi : : Methods methods_QFileSystemModel ( ) {
gsi : : Methods methods ;
methods + = new qt_gsi : : GenericStaticMethod ( " staticMetaObject " , " @brief Obtains the static MetaObject for this class. " , & _init_smo , & _call_smo ) ;
methods + = new qt_gsi : : GenericMethod ( " canFetchMore " , " @brief Method (const QModelIndex &) const \n This is a reimplementation of QAbstractItemModel::canFetchMore " , true , & _init_f_canFetchMore_c2395 , & _call_f_canFetchMore_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " columnCount " , " @brief Method (const QModelIndex &) const \n This is a reimplementation of QAbstractItemModel::columnCount " , true , & _init_f_columnCount_c2395 , & _call_f_columnCount_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " data " , " @brief Method (const QModelIndex &, int) const \n This is a reimplementation of QAbstractItemModel::data " , true , & _init_f_data_c3054 , & _call_f_data_c3054 ) ;
methods + = new qt_gsi : : GenericMethod ( " dropMimeData " , " @brief Method (const QMimeData *, Qt::DropAction, int, int, const QModelIndex &) \n This is a reimplementation of QAbstractItemModel::dropMimeData " , false , & _init_f_dropMimeData_7425 , & _call_f_dropMimeData_7425 ) ;
methods + = new qt_gsi : : GenericMethod ( " fetchMore " , " @brief Method (const QModelIndex &) \n This is a reimplementation of QAbstractItemModel::fetchMore " , false , & _init_f_fetchMore_2395 , & _call_f_fetchMore_2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " fileIcon " , " @brief Method QIcon QFileSystemModel::fileIcon(const QModelIndex &index) \n " , true , & _init_f_fileIcon_c2395 , & _call_f_fileIcon_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " fileInfo " , " @brief Method QFileInfo QFileSystemModel::fileInfo(const QModelIndex &index) \n " , true , & _init_f_fileInfo_c2395 , & _call_f_fileInfo_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " fileName " , " @brief Method QString QFileSystemModel::fileName(const QModelIndex &index) \n " , true , & _init_f_fileName_c2395 , & _call_f_fileName_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " filePath " , " @brief Method QString QFileSystemModel::filePath(const QModelIndex &index) \n " , true , & _init_f_filePath_c2395 , & _call_f_filePath_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " :filter " , " @brief Method QFlags<QDir::Filter> QFileSystemModel::filter() \n " , true , & _init_f_filter_c0 , & _call_f_filter_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " flags " , " @brief Method (const QModelIndex &) const \n This is a reimplementation of QAbstractItemModel::flags " , true , & _init_f_flags_c2395 , & _call_f_flags_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " hasChildren " , " @brief Method (const QModelIndex &) const \n This is a reimplementation of QAbstractItemModel::hasChildren " , true , & _init_f_hasChildren_c2395 , & _call_f_hasChildren_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " headerData " , " @brief Method (int, Qt::Orientation, int) const \n This is a reimplementation of QAbstractItemModel::headerData " , true , & _init_f_headerData_c3231 , & _call_f_headerData_c3231 ) ;
methods + = new qt_gsi : : GenericMethod ( " :iconProvider " , " @brief Method QFileIconProvider *QFileSystemModel::iconProvider() \n " , true , & _init_f_iconProvider_c0 , & _call_f_iconProvider_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " index " , " @brief Method (int, int, const QModelIndex &) const \n This is a reimplementation of QAbstractItemModel::index " , true , & _init_f_index_c3713 , & _call_f_index_c3713 ) ;
methods + = new qt_gsi : : GenericMethod ( " index " , " @brief Method (const QString &, int) const \n " , true , & _init_f_index_c2684 , & _call_f_index_c2684 ) ;
methods + = new qt_gsi : : GenericMethod ( " isDir? " , " @brief Method bool QFileSystemModel::isDir(const QModelIndex &index) \n " , true , & _init_f_isDir_c2395 , & _call_f_isDir_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " isReadOnly?|:readOnly " , " @brief Method bool QFileSystemModel::isReadOnly() \n " , true , & _init_f_isReadOnly_c0 , & _call_f_isReadOnly_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " lastModified " , " @brief Method QDateTime QFileSystemModel::lastModified(const QModelIndex &index) \n " , true , & _init_f_lastModified_c2395 , & _call_f_lastModified_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " mimeData " , " @brief Method (const QList<QModelIndex> &) const \n This is a reimplementation of QAbstractItemModel::mimeData " , true , & _init_f_mimeData_c3010 , & _call_f_mimeData_c3010 ) ;
methods + = new qt_gsi : : GenericMethod ( " mimeTypes " , " @brief Method () const \n This is a reimplementation of QAbstractItemModel::mimeTypes " , true , & _init_f_mimeTypes_c0 , & _call_f_mimeTypes_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " mkdir " , " @brief Method QModelIndex QFileSystemModel::mkdir(const QModelIndex &parent, const QString &name) \n " , false , & _init_f_mkdir_4312 , & _call_f_mkdir_4312 ) ;
methods + = new qt_gsi : : GenericMethod ( " myComputer " , " @brief Method QVariant QFileSystemModel::myComputer(int role) \n " , true , & _init_f_myComputer_c767 , & _call_f_myComputer_c767 ) ;
methods + = new qt_gsi : : GenericMethod ( " :nameFilterDisables " , " @brief Method bool QFileSystemModel::nameFilterDisables() \n " , true , & _init_f_nameFilterDisables_c0 , & _call_f_nameFilterDisables_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " :nameFilters " , " @brief Method QStringList QFileSystemModel::nameFilters() \n " , true , & _init_f_nameFilters_c0 , & _call_f_nameFilters_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " parent " , " @brief Method (const QModelIndex &) const \n This is a reimplementation of QAbstractItemModel::parent " , true , & _init_f_parent_c2395 , & _call_f_parent_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " permissions " , " @brief Method QFlags<QFile::Permission> QFileSystemModel::permissions(const QModelIndex &index) \n " , true , & _init_f_permissions_c2395 , & _call_f_permissions_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " remove " , " @brief Method bool QFileSystemModel::remove(const QModelIndex &index) \n " , true , & _init_f_remove_c2395 , & _call_f_remove_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " :resolveSymlinks " , " @brief Method bool QFileSystemModel::resolveSymlinks() \n " , true , & _init_f_resolveSymlinks_c0 , & _call_f_resolveSymlinks_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " rmdir " , " @brief Method bool QFileSystemModel::rmdir(const QModelIndex &index) \n " , true , & _init_f_rmdir_c2395 , & _call_f_rmdir_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " rootDirectory " , " @brief Method QDir QFileSystemModel::rootDirectory() \n " , true , & _init_f_rootDirectory_c0 , & _call_f_rootDirectory_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " rootPath " , " @brief Method QString QFileSystemModel::rootPath() \n " , true , & _init_f_rootPath_c0 , & _call_f_rootPath_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " rowCount " , " @brief Method (const QModelIndex &) const \n This is a reimplementation of QAbstractItemModel::rowCount " , true , & _init_f_rowCount_c2395 , & _call_f_rowCount_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " setData " , " @brief Method (const QModelIndex &, const QVariant &, int) \n This is a reimplementation of QAbstractItemModel::setData " , false , & _init_f_setData_5065 , & _call_f_setData_5065 ) ;
methods + = new qt_gsi : : GenericMethod ( " setFilter|filter= " , " @brief Method void QFileSystemModel::setFilter(QFlags<QDir::Filter> filters) \n " , false , & _init_f_setFilter_2230 , & _call_f_setFilter_2230 ) ;
methods + = new qt_gsi : : GenericMethod ( " setIconProvider|iconProvider= " , " @brief Method void QFileSystemModel::setIconProvider(QFileIconProvider *provider) \n " , false , & _init_f_setIconProvider_2323 , & _call_f_setIconProvider_2323 ) ;
methods + = new qt_gsi : : GenericMethod ( " setNameFilterDisables|nameFilterDisables= " , " @brief Method void QFileSystemModel::setNameFilterDisables(bool enable) \n " , false , & _init_f_setNameFilterDisables_864 , & _call_f_setNameFilterDisables_864 ) ;
methods + = new qt_gsi : : GenericMethod ( " setNameFilters|nameFilters= " , " @brief Method void QFileSystemModel::setNameFilters(const QStringList &filters) \n " , false , & _init_f_setNameFilters_2437 , & _call_f_setNameFilters_2437 ) ;
methods + = new qt_gsi : : GenericMethod ( " setReadOnly|readOnly= " , " @brief Method void QFileSystemModel::setReadOnly(bool enable) \n " , false , & _init_f_setReadOnly_864 , & _call_f_setReadOnly_864 ) ;
methods + = new qt_gsi : : GenericMethod ( " setResolveSymlinks|resolveSymlinks= " , " @brief Method void QFileSystemModel::setResolveSymlinks(bool enable) \n " , false , & _init_f_setResolveSymlinks_864 , & _call_f_setResolveSymlinks_864 ) ;
methods + = new qt_gsi : : GenericMethod ( " setRootPath " , " @brief Method QModelIndex QFileSystemModel::setRootPath(const QString &path) \n " , false , & _init_f_setRootPath_2025 , & _call_f_setRootPath_2025 ) ;
methods + = new qt_gsi : : GenericMethod ( " size " , " @brief Method qint64 QFileSystemModel::size(const QModelIndex &index) \n " , true , & _init_f_size_c2395 , & _call_f_size_c2395 ) ;
methods + = new qt_gsi : : GenericMethod ( " sort " , " @brief Method (int, Qt::SortOrder) \n This is a reimplementation of QAbstractItemModel::sort " , false , & _init_f_sort_2340 , & _call_f_sort_2340 ) ;
methods + = new qt_gsi : : GenericMethod ( " supportedDropActions " , " @brief Method () const \n This is a reimplementation of QAbstractItemModel::supportedDropActions " , true , & _init_f_supportedDropActions_c0 , & _call_f_supportedDropActions_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " type " , " @brief Method QString QFileSystemModel::type(const QModelIndex &index) \n " , true , & _init_f_type_c2395 , & _call_f_type_c2395 ) ;
methods + = gsi : : qt_signal < const QModelIndex & , const QModelIndex & > ( " dataChanged(const QModelIndex &, const QModelIndex &) " , " dataChanged " , gsi : : arg ( " topLeft " ) , gsi : : arg ( " bottomRight " ) , " @brief Signal declaration for QFileSystemModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) \n You can bind a procedure to this signal. " ) ;
methods + = gsi : : qt_signal < QObject * > ( " destroyed(QObject *) " , " destroyed " , gsi : : arg ( " arg1 " ) , " @brief Signal declaration for QFileSystemModel::destroyed(QObject *) \n You can bind a procedure to this signal. " ) ;
methods + = gsi : : qt_signal < const QString & , const QString & , const QString & > ( " fileRenamed(const QString &, const QString &, const QString &) " , " fileRenamed " , gsi : : arg ( " path " ) , gsi : : arg ( " oldName " ) , gsi : : arg ( " newName " ) , " @brief Signal declaration for QFileSystemModel::fileRenamed(const QString &path, const QString &oldName, const QString &newName) \n You can bind a procedure to this signal. " ) ;
methods + = gsi : : qt_signal < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & , int , int > ( " headerDataChanged(Qt::Orientation, int, int) " , " headerDataChanged " , gsi : : arg ( " orientation " ) , gsi : : arg ( " first " ) , gsi : : arg ( " last " ) , " @brief Signal declaration for QFileSystemModel::headerDataChanged(Qt::Orientation orientation, int first, int last) \n You can bind a procedure to this signal. " ) ;
methods + = gsi : : qt_signal ( " layoutAboutToBeChanged() " , " layoutAboutToBeChanged " , " @brief Signal declaration for QFileSystemModel::layoutAboutToBeChanged() \n You can bind a procedure to this signal. " ) ;
methods + = gsi : : qt_signal ( " layoutChanged() " , " layoutChanged " , " @brief Signal declaration for QFileSystemModel::layoutChanged() \n You can bind a procedure to this signal. " ) ;
methods + = gsi : : qt_signal < const QString & > ( " rootPathChanged(const QString &) " , " rootPathChanged " , gsi : : arg ( " newPath " ) , " @brief Signal declaration for QFileSystemModel::rootPathChanged(const QString &newPath) \n You can bind a procedure to this signal. " ) ;
methods + = new qt_gsi : : GenericStaticMethod ( " tr " , " @brief Static method QString QFileSystemModel::tr(const char *s, const char *c) \n This method is static and can be called without an instance. " , & _init_f_tr_3354 , & _call_f_tr_3354 ) ;
methods + = new qt_gsi : : GenericStaticMethod ( " tr " , " @brief Static method QString QFileSystemModel::tr(const char *s, const char *c, int n) \n This method is static and can be called without an instance. " , & _init_f_tr_4013 , & _call_f_tr_4013 ) ;
methods + = new qt_gsi : : GenericStaticMethod ( " trUtf8 " , " @brief Static method QString QFileSystemModel::trUtf8(const char *s, const char *c) \n This method is static and can be called without an instance. " , & _init_f_trUtf8_3354 , & _call_f_trUtf8_3354 ) ;
methods + = new qt_gsi : : GenericStaticMethod ( " trUtf8 " , " @brief Static method QString QFileSystemModel::trUtf8(const char *s, const char *c, int n) \n This method is static and can be called without an instance. " , & _init_f_trUtf8_4013 , & _call_f_trUtf8_4013 ) ;
return methods ;
}
gsi : : Class < QAbstractItemModel > & qtdecl_QAbstractItemModel ( ) ;
gsi : : Class < QFileSystemModel > decl_QFileSystemModel ( qtdecl_QAbstractItemModel ( ) , " QFileSystemModel_Native " ,
methods_QFileSystemModel ( ) ,
" @hide \n @alias QFileSystemModel " ) ;
GSIQT_PUBLIC gsi : : Class < QFileSystemModel > & qtdecl_QFileSystemModel ( ) { return decl_QFileSystemModel ; }
}
class QFileSystemModel_Adaptor : public QFileSystemModel , public qt_gsi : : QtObjectBase
{
public :
virtual ~ QFileSystemModel_Adaptor ( ) ;
// [adaptor ctor] QFileSystemModel::QFileSystemModel(QObject *parent)
QFileSystemModel_Adaptor ( ) : QFileSystemModel ( )
{
qt_gsi : : QtObjectBase : : init ( this ) ;
}
// [adaptor ctor] QFileSystemModel::QFileSystemModel(QObject *parent)
QFileSystemModel_Adaptor ( QObject * parent ) : QFileSystemModel ( parent )
{
qt_gsi : : QtObjectBase : : init ( this ) ;
}
// [expose] void QFileSystemModel::beginInsertColumns(const QModelIndex &parent, int first, int last)
void fp_QFileSystemModel_beginInsertColumns_3713 ( const QModelIndex & parent , int first , int last ) {
QFileSystemModel : : beginInsertColumns ( parent , first , last ) ;
}
// [expose] void QFileSystemModel::beginInsertRows(const QModelIndex &parent, int first, int last)
void fp_QFileSystemModel_beginInsertRows_3713 ( const QModelIndex & parent , int first , int last ) {
QFileSystemModel : : beginInsertRows ( parent , first , last ) ;
}
// [expose] bool QFileSystemModel::beginMoveColumns(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationColumn)
bool fp_QFileSystemModel_beginMoveColumns_6659 ( const QModelIndex & sourceParent , int sourceFirst , int sourceLast , const QModelIndex & destinationParent , int destinationColumn ) {
return QFileSystemModel : : beginMoveColumns ( sourceParent , sourceFirst , sourceLast , destinationParent , destinationColumn ) ;
}
// [expose] bool QFileSystemModel::beginMoveRows(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationRow)
bool fp_QFileSystemModel_beginMoveRows_6659 ( const QModelIndex & sourceParent , int sourceFirst , int sourceLast , const QModelIndex & destinationParent , int destinationRow ) {
return QFileSystemModel : : beginMoveRows ( sourceParent , sourceFirst , sourceLast , destinationParent , destinationRow ) ;
}
// [expose] void QFileSystemModel::beginRemoveColumns(const QModelIndex &parent, int first, int last)
void fp_QFileSystemModel_beginRemoveColumns_3713 ( const QModelIndex & parent , int first , int last ) {
QFileSystemModel : : beginRemoveColumns ( parent , first , last ) ;
}
// [expose] void QFileSystemModel::beginRemoveRows(const QModelIndex &parent, int first, int last)
void fp_QFileSystemModel_beginRemoveRows_3713 ( const QModelIndex & parent , int first , int last ) {
QFileSystemModel : : beginRemoveRows ( parent , first , last ) ;
}
// [expose] void QFileSystemModel::beginResetModel()
void fp_QFileSystemModel_beginResetModel_0 ( ) {
QFileSystemModel : : beginResetModel ( ) ;
}
// [expose] void QFileSystemModel::changePersistentIndex(const QModelIndex &from, const QModelIndex &to)
void fp_QFileSystemModel_changePersistentIndex_4682 ( const QModelIndex & from , const QModelIndex & to ) {
QFileSystemModel : : changePersistentIndex ( from , to ) ;
}
// [expose] void QFileSystemModel::changePersistentIndexList(const QList<QModelIndex> &from, const QList<QModelIndex> &to)
void fp_QFileSystemModel_changePersistentIndexList_5912 ( const QList < QModelIndex > & from , const QList < QModelIndex > & to ) {
QFileSystemModel : : changePersistentIndexList ( from , to ) ;
}
// [expose] QModelIndex QFileSystemModel::createIndex(int row, int column, void *data)
QModelIndex fp_QFileSystemModel_createIndex_c2374 ( int row , int column , void * data ) const {
return QFileSystemModel : : createIndex ( row , column , data ) ;
}
// [expose] QModelIndex QFileSystemModel::createIndex(int row, int column, int id)
QModelIndex fp_QFileSystemModel_createIndex_c2085 ( int row , int column , int id ) const {
return QFileSystemModel : : createIndex ( row , column , id ) ;
}
// [expose] QModelIndex QFileSystemModel::createIndex(int row, int column, quint32 id)
QModelIndex fp_QFileSystemModel_createIndex_c2416 ( int row , int column , quint32 id ) const {
return QFileSystemModel : : createIndex ( row , column , id ) ;
}
// [expose] bool QFileSystemModel::decodeData(int row, int column, const QModelIndex &parent, QDataStream &stream)
bool fp_QFileSystemModel_decodeData_5302 ( int row , int column , const QModelIndex & parent , QDataStream & stream ) {
return QFileSystemModel : : decodeData ( row , column , parent , stream ) ;
}
// [expose] void QFileSystemModel::encodeData(const QList<QModelIndex> &indexes, QDataStream &stream)
void fp_QFileSystemModel_encodeData_c4599 ( const QList < QModelIndex > & indexes , QDataStream & stream ) const {
QFileSystemModel : : encodeData ( indexes , stream ) ;
}
// [expose] void QFileSystemModel::endInsertColumns()
void fp_QFileSystemModel_endInsertColumns_0 ( ) {
QFileSystemModel : : endInsertColumns ( ) ;
}
// [expose] void QFileSystemModel::endInsertRows()
void fp_QFileSystemModel_endInsertRows_0 ( ) {
QFileSystemModel : : endInsertRows ( ) ;
}
// [expose] void QFileSystemModel::endMoveColumns()
void fp_QFileSystemModel_endMoveColumns_0 ( ) {
QFileSystemModel : : endMoveColumns ( ) ;
}
// [expose] void QFileSystemModel::endMoveRows()
void fp_QFileSystemModel_endMoveRows_0 ( ) {
QFileSystemModel : : endMoveRows ( ) ;
}
// [expose] void QFileSystemModel::endRemoveColumns()
void fp_QFileSystemModel_endRemoveColumns_0 ( ) {
QFileSystemModel : : endRemoveColumns ( ) ;
}
// [expose] void QFileSystemModel::endRemoveRows()
void fp_QFileSystemModel_endRemoveRows_0 ( ) {
QFileSystemModel : : endRemoveRows ( ) ;
}
// [expose] void QFileSystemModel::endResetModel()
void fp_QFileSystemModel_endResetModel_0 ( ) {
QFileSystemModel : : endResetModel ( ) ;
}
// [expose] QList<QModelIndex> QFileSystemModel::persistentIndexList()
QList < QModelIndex > fp_QFileSystemModel_persistentIndexList_c0 ( ) const {
return QFileSystemModel : : persistentIndexList ( ) ;
}
// [expose] int QFileSystemModel::receivers(const char *signal)
int fp_QFileSystemModel_receivers_c1731 ( const char * signal ) const {
return QFileSystemModel : : receivers ( signal ) ;
}
// [expose] void QFileSystemModel::reset()
void fp_QFileSystemModel_reset_0 ( ) {
QFileSystemModel : : reset ( ) ;
}
// [expose] QObject *QFileSystemModel::sender()
QObject * fp_QFileSystemModel_sender_c0 ( ) const {
return QFileSystemModel : : sender ( ) ;
}
// [expose] void QFileSystemModel::setRoleNames(const QHash<int, QByteArray> &roleNames)
void fp_QFileSystemModel_setRoleNames_3419 ( const QHash < int , QByteArray > & roleNames ) {
QFileSystemModel : : setRoleNames ( roleNames ) ;
}
// [adaptor impl] QModelIndex QFileSystemModel::buddy(const QModelIndex &index)
QModelIndex cbs_buddy_c2395_0 ( const QModelIndex & index ) const
{
return QFileSystemModel : : buddy ( index ) ;
}
virtual QModelIndex buddy ( const QModelIndex & index ) const
{
if ( cb_buddy_c2395_0 . can_issue ( ) ) {
return cb_buddy_c2395_0 . issue < QFileSystemModel_Adaptor , QModelIndex , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_buddy_c2395_0 , index ) ;
} else {
return QFileSystemModel : : buddy ( index ) ;
}
}
// [adaptor impl] bool QFileSystemModel::canFetchMore(const QModelIndex &parent)
bool cbs_canFetchMore_c2395_0 ( const QModelIndex & parent ) const
{
return QFileSystemModel : : canFetchMore ( parent ) ;
}
virtual bool canFetchMore ( const QModelIndex & parent ) const
{
if ( cb_canFetchMore_c2395_0 . can_issue ( ) ) {
return cb_canFetchMore_c2395_0 . issue < QFileSystemModel_Adaptor , bool , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_canFetchMore_c2395_0 , parent ) ;
} else {
return QFileSystemModel : : canFetchMore ( parent ) ;
}
}
// [adaptor impl] int QFileSystemModel::columnCount(const QModelIndex &parent)
int cbs_columnCount_c2395_1 ( const QModelIndex & parent ) const
{
return QFileSystemModel : : columnCount ( parent ) ;
}
virtual int columnCount ( const QModelIndex & parent ) const
{
if ( cb_columnCount_c2395_1 . can_issue ( ) ) {
return cb_columnCount_c2395_1 . issue < QFileSystemModel_Adaptor , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_columnCount_c2395_1 , parent ) ;
} else {
return QFileSystemModel : : columnCount ( parent ) ;
}
}
// [adaptor impl] QVariant QFileSystemModel::data(const QModelIndex &index, int role)
QVariant cbs_data_c3054_1 ( const QModelIndex & index , int role ) const
{
return QFileSystemModel : : data ( index , role ) ;
}
virtual QVariant data ( const QModelIndex & index , int role ) const
{
if ( cb_data_c3054_1 . can_issue ( ) ) {
return cb_data_c3054_1 . issue < QFileSystemModel_Adaptor , QVariant , const QModelIndex & , int > ( & QFileSystemModel_Adaptor : : cbs_data_c3054_1 , index , role ) ;
} else {
return QFileSystemModel : : data ( index , role ) ;
}
}
// [adaptor impl] bool QFileSystemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
bool cbs_dropMimeData_7425_0 ( const QMimeData * data , const qt_gsi : : Converter < Qt : : DropAction > : : target_type & action , int row , int column , const QModelIndex & parent )
{
return QFileSystemModel : : dropMimeData ( data , qt_gsi : : QtToCppAdaptor < Qt : : DropAction > ( action ) . cref ( ) , row , column , parent ) ;
}
virtual bool dropMimeData ( const QMimeData * data , Qt : : DropAction action , int row , int column , const QModelIndex & parent )
{
if ( cb_dropMimeData_7425_0 . can_issue ( ) ) {
return cb_dropMimeData_7425_0 . issue < QFileSystemModel_Adaptor , bool , const QMimeData * , const qt_gsi : : Converter < Qt : : DropAction > : : target_type & , int , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_dropMimeData_7425_0 , data , qt_gsi : : CppToQtAdaptor < Qt : : DropAction > ( action ) , row , column , parent ) ;
} else {
return QFileSystemModel : : dropMimeData ( data , action , row , column , parent ) ;
}
}
// [adaptor impl] bool QFileSystemModel::eventFilter(QObject *, QEvent *)
bool cbs_eventFilter_2411_0 ( QObject * arg1 , QEvent * arg2 )
{
return QFileSystemModel : : eventFilter ( arg1 , arg2 ) ;
}
virtual bool eventFilter ( QObject * arg1 , QEvent * arg2 )
{
if ( cb_eventFilter_2411_0 . can_issue ( ) ) {
return cb_eventFilter_2411_0 . issue < QFileSystemModel_Adaptor , bool , QObject * , QEvent * > ( & QFileSystemModel_Adaptor : : cbs_eventFilter_2411_0 , arg1 , arg2 ) ;
} else {
return QFileSystemModel : : eventFilter ( arg1 , arg2 ) ;
}
}
// [adaptor impl] void QFileSystemModel::fetchMore(const QModelIndex &parent)
void cbs_fetchMore_2395_0 ( const QModelIndex & parent )
{
QFileSystemModel : : fetchMore ( parent ) ;
}
virtual void fetchMore ( const QModelIndex & parent )
{
if ( cb_fetchMore_2395_0 . can_issue ( ) ) {
cb_fetchMore_2395_0 . issue < QFileSystemModel_Adaptor , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_fetchMore_2395_0 , parent ) ;
} else {
QFileSystemModel : : fetchMore ( parent ) ;
}
}
// [adaptor impl] QFlags<Qt::ItemFlag> QFileSystemModel::flags(const QModelIndex &index)
QFlags < Qt : : ItemFlag > cbs_flags_c2395_0 ( const QModelIndex & index ) const
{
return QFileSystemModel : : flags ( index ) ;
}
virtual QFlags < Qt : : ItemFlag > flags ( const QModelIndex & index ) const
{
if ( cb_flags_c2395_0 . can_issue ( ) ) {
return cb_flags_c2395_0 . issue < QFileSystemModel_Adaptor , QFlags < Qt : : ItemFlag > , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_flags_c2395_0 , index ) ;
} else {
return QFileSystemModel : : flags ( index ) ;
}
}
// [adaptor impl] bool QFileSystemModel::hasChildren(const QModelIndex &parent)
bool cbs_hasChildren_c2395_1 ( const QModelIndex & parent ) const
{
return QFileSystemModel : : hasChildren ( parent ) ;
}
virtual bool hasChildren ( const QModelIndex & parent ) const
{
if ( cb_hasChildren_c2395_1 . can_issue ( ) ) {
return cb_hasChildren_c2395_1 . issue < QFileSystemModel_Adaptor , bool , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_hasChildren_c2395_1 , parent ) ;
} else {
return QFileSystemModel : : hasChildren ( parent ) ;
}
}
// [adaptor impl] QVariant QFileSystemModel::headerData(int section, Qt::Orientation orientation, int role)
QVariant cbs_headerData_c3231_1 ( int section , const qt_gsi : : Converter < Qt : : Orientation > : : target_type & orientation , int role ) const
{
return QFileSystemModel : : headerData ( section , qt_gsi : : QtToCppAdaptor < Qt : : Orientation > ( orientation ) . cref ( ) , role ) ;
}
virtual QVariant headerData ( int section , Qt : : Orientation orientation , int role ) const
{
if ( cb_headerData_c3231_1 . can_issue ( ) ) {
return cb_headerData_c3231_1 . issue < QFileSystemModel_Adaptor , QVariant , int , const qt_gsi : : Converter < Qt : : Orientation > : : target_type & , int > ( & QFileSystemModel_Adaptor : : cbs_headerData_c3231_1 , section , qt_gsi : : CppToQtAdaptor < Qt : : Orientation > ( orientation ) , role ) ;
} else {
return QFileSystemModel : : headerData ( section , orientation , role ) ;
}
}
// [adaptor impl] QModelIndex QFileSystemModel::index(int row, int column, const QModelIndex &parent)
QModelIndex cbs_index_c3713_1 ( int row , int column , const QModelIndex & parent ) const
{
return QFileSystemModel : : index ( row , column , parent ) ;
}
virtual QModelIndex index ( int row , int column , const QModelIndex & parent ) const
{
if ( cb_index_c3713_1 . can_issue ( ) ) {
return cb_index_c3713_1 . issue < QFileSystemModel_Adaptor , QModelIndex , int , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_index_c3713_1 , row , column , parent ) ;
} else {
return QFileSystemModel : : index ( row , column , parent ) ;
}
}
// [adaptor impl] bool QFileSystemModel::insertColumns(int column, int count, const QModelIndex &parent)
bool cbs_insertColumns_3713_1 ( int column , int count , const QModelIndex & parent )
{
return QFileSystemModel : : insertColumns ( column , count , parent ) ;
}
virtual bool insertColumns ( int column , int count , const QModelIndex & parent )
{
if ( cb_insertColumns_3713_1 . can_issue ( ) ) {
return cb_insertColumns_3713_1 . issue < QFileSystemModel_Adaptor , bool , int , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_insertColumns_3713_1 , column , count , parent ) ;
} else {
return QFileSystemModel : : insertColumns ( column , count , parent ) ;
}
}
// [adaptor impl] bool QFileSystemModel::insertRows(int row, int count, const QModelIndex &parent)
bool cbs_insertRows_3713_1 ( int row , int count , const QModelIndex & parent )
{
return QFileSystemModel : : insertRows ( row , count , parent ) ;
}
virtual bool insertRows ( int row , int count , const QModelIndex & parent )
{
if ( cb_insertRows_3713_1 . can_issue ( ) ) {
return cb_insertRows_3713_1 . issue < QFileSystemModel_Adaptor , bool , int , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_insertRows_3713_1 , row , count , parent ) ;
} else {
return QFileSystemModel : : insertRows ( row , count , parent ) ;
}
}
// [adaptor impl] QMap<int, QVariant> QFileSystemModel::itemData(const QModelIndex &index)
QMap < int , QVariant > cbs_itemData_c2395_0 ( const QModelIndex & index ) const
{
return QFileSystemModel : : itemData ( index ) ;
}
virtual QMap < int , QVariant > itemData ( const QModelIndex & index ) const
{
if ( cb_itemData_c2395_0 . can_issue ( ) ) {
return cb_itemData_c2395_0 . issue < QFileSystemModel_Adaptor , QMap < int , QVariant > , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_itemData_c2395_0 , index ) ;
} else {
return QFileSystemModel : : itemData ( index ) ;
}
}
// [adaptor impl] QList<QModelIndex> QFileSystemModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags<Qt::MatchFlag> flags)
QList < QModelIndex > cbs_match_c7932_2 ( const QModelIndex & start , int role , const QVariant & value , int hits , QFlags < Qt : : MatchFlag > flags ) const
{
return QFileSystemModel : : match ( start , role , value , hits , flags ) ;
}
virtual QList < QModelIndex > match ( const QModelIndex & start , int role , const QVariant & value , int hits , QFlags < Qt : : MatchFlag > flags ) const
{
if ( cb_match_c7932_2 . can_issue ( ) ) {
return cb_match_c7932_2 . issue < QFileSystemModel_Adaptor , QList < QModelIndex > , const QModelIndex & , int , const QVariant & , int , QFlags < Qt : : MatchFlag > > ( & QFileSystemModel_Adaptor : : cbs_match_c7932_2 , start , role , value , hits , flags ) ;
} else {
return QFileSystemModel : : match ( start , role , value , hits , flags ) ;
}
}
// [adaptor impl] QMimeData *QFileSystemModel::mimeData(const QList<QModelIndex> &indexes)
QMimeData * cbs_mimeData_c3010_0 ( const QList < QModelIndex > & indexes ) const
{
return QFileSystemModel : : mimeData ( indexes ) ;
}
virtual QMimeData * mimeData ( const QList < QModelIndex > & indexes ) const
{
if ( cb_mimeData_c3010_0 . can_issue ( ) ) {
return cb_mimeData_c3010_0 . issue < QFileSystemModel_Adaptor , QMimeData * , const QList < QModelIndex > & > ( & QFileSystemModel_Adaptor : : cbs_mimeData_c3010_0 , indexes ) ;
} else {
return QFileSystemModel : : mimeData ( indexes ) ;
}
}
// [adaptor impl] QStringList QFileSystemModel::mimeTypes()
QStringList cbs_mimeTypes_c0_0 ( ) const
{
return QFileSystemModel : : mimeTypes ( ) ;
}
virtual QStringList mimeTypes ( ) const
{
if ( cb_mimeTypes_c0_0 . can_issue ( ) ) {
return cb_mimeTypes_c0_0 . issue < QFileSystemModel_Adaptor , QStringList > ( & QFileSystemModel_Adaptor : : cbs_mimeTypes_c0_0 ) ;
} else {
return QFileSystemModel : : mimeTypes ( ) ;
}
}
// [adaptor impl] QModelIndex QFileSystemModel::parent(const QModelIndex &child)
QModelIndex cbs_parent_c2395_0 ( const QModelIndex & child ) const
{
return QFileSystemModel : : parent ( child ) ;
}
virtual QModelIndex parent ( const QModelIndex & child ) const
{
if ( cb_parent_c2395_0 . can_issue ( ) ) {
return cb_parent_c2395_0 . issue < QFileSystemModel_Adaptor , QModelIndex , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_parent_c2395_0 , child ) ;
} else {
return QFileSystemModel : : parent ( child ) ;
}
}
// [adaptor impl] bool QFileSystemModel::removeColumns(int column, int count, const QModelIndex &parent)
bool cbs_removeColumns_3713_1 ( int column , int count , const QModelIndex & parent )
{
return QFileSystemModel : : removeColumns ( column , count , parent ) ;
}
virtual bool removeColumns ( int column , int count , const QModelIndex & parent )
{
if ( cb_removeColumns_3713_1 . can_issue ( ) ) {
return cb_removeColumns_3713_1 . issue < QFileSystemModel_Adaptor , bool , int , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_removeColumns_3713_1 , column , count , parent ) ;
} else {
return QFileSystemModel : : removeColumns ( column , count , parent ) ;
}
}
// [adaptor impl] bool QFileSystemModel::removeRows(int row, int count, const QModelIndex &parent)
bool cbs_removeRows_3713_1 ( int row , int count , const QModelIndex & parent )
{
return QFileSystemModel : : removeRows ( row , count , parent ) ;
}
virtual bool removeRows ( int row , int count , const QModelIndex & parent )
{
if ( cb_removeRows_3713_1 . can_issue ( ) ) {
return cb_removeRows_3713_1 . issue < QFileSystemModel_Adaptor , bool , int , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_removeRows_3713_1 , row , count , parent ) ;
} else {
return QFileSystemModel : : removeRows ( row , count , parent ) ;
}
}
// [adaptor impl] void QFileSystemModel::revert()
void cbs_revert_0_0 ( )
{
QFileSystemModel : : revert ( ) ;
}
virtual void revert ( )
{
if ( cb_revert_0_0 . can_issue ( ) ) {
cb_revert_0_0 . issue < QFileSystemModel_Adaptor > ( & QFileSystemModel_Adaptor : : cbs_revert_0_0 ) ;
} else {
QFileSystemModel : : revert ( ) ;
}
}
// [adaptor impl] int QFileSystemModel::rowCount(const QModelIndex &parent)
int cbs_rowCount_c2395_1 ( const QModelIndex & parent ) const
{
return QFileSystemModel : : rowCount ( parent ) ;
}
virtual int rowCount ( const QModelIndex & parent ) const
{
if ( cb_rowCount_c2395_1 . can_issue ( ) ) {
return cb_rowCount_c2395_1 . issue < QFileSystemModel_Adaptor , int , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_rowCount_c2395_1 , parent ) ;
} else {
return QFileSystemModel : : rowCount ( parent ) ;
}
}
// [adaptor impl] bool QFileSystemModel::setData(const QModelIndex &index, const QVariant &value, int role)
bool cbs_setData_5065_1 ( const QModelIndex & index , const QVariant & value , int role )
{
return QFileSystemModel : : setData ( index , value , role ) ;
}
virtual bool setData ( const QModelIndex & index , const QVariant & value , int role )
{
if ( cb_setData_5065_1 . can_issue ( ) ) {
return cb_setData_5065_1 . issue < QFileSystemModel_Adaptor , bool , const QModelIndex & , const QVariant & , int > ( & QFileSystemModel_Adaptor : : cbs_setData_5065_1 , index , value , role ) ;
} else {
return QFileSystemModel : : setData ( index , value , role ) ;
}
}
// [adaptor impl] bool QFileSystemModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)
bool cbs_setHeaderData_5242_1 ( int section , const qt_gsi : : Converter < Qt : : Orientation > : : target_type & orientation , const QVariant & value , int role )
{
return QFileSystemModel : : setHeaderData ( section , qt_gsi : : QtToCppAdaptor < Qt : : Orientation > ( orientation ) . cref ( ) , value , role ) ;
}
virtual bool setHeaderData ( int section , Qt : : Orientation orientation , const QVariant & value , int role )
{
if ( cb_setHeaderData_5242_1 . can_issue ( ) ) {
return cb_setHeaderData_5242_1 . issue < QFileSystemModel_Adaptor , bool , int , const qt_gsi : : Converter < Qt : : Orientation > : : target_type & , const QVariant & , int > ( & QFileSystemModel_Adaptor : : cbs_setHeaderData_5242_1 , section , qt_gsi : : CppToQtAdaptor < Qt : : Orientation > ( orientation ) , value , role ) ;
} else {
return QFileSystemModel : : setHeaderData ( section , orientation , value , role ) ;
}
}
// [adaptor impl] bool QFileSystemModel::setItemData(const QModelIndex &index, const QMap<int, QVariant> &roles)
bool cbs_setItemData_5414_0 ( const QModelIndex & index , const QMap < int , QVariant > & roles )
{
return QFileSystemModel : : setItemData ( index , roles ) ;
}
virtual bool setItemData ( const QModelIndex & index , const QMap < int , QVariant > & roles )
{
if ( cb_setItemData_5414_0 . can_issue ( ) ) {
return cb_setItemData_5414_0 . issue < QFileSystemModel_Adaptor , bool , const QModelIndex & , const QMap < int , QVariant > & > ( & QFileSystemModel_Adaptor : : cbs_setItemData_5414_0 , index , roles ) ;
} else {
return QFileSystemModel : : setItemData ( index , roles ) ;
}
}
// [adaptor impl] void QFileSystemModel::sort(int column, Qt::SortOrder order)
void cbs_sort_2340_1 ( int column , const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & order )
{
QFileSystemModel : : sort ( column , qt_gsi : : QtToCppAdaptor < Qt : : SortOrder > ( order ) . cref ( ) ) ;
}
virtual void sort ( int column , Qt : : SortOrder order )
{
if ( cb_sort_2340_1 . can_issue ( ) ) {
cb_sort_2340_1 . issue < QFileSystemModel_Adaptor , int , const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & > ( & QFileSystemModel_Adaptor : : cbs_sort_2340_1 , column , qt_gsi : : CppToQtAdaptor < Qt : : SortOrder > ( order ) ) ;
} else {
QFileSystemModel : : sort ( column , order ) ;
}
}
// [adaptor impl] QSize QFileSystemModel::span(const QModelIndex &index)
QSize cbs_span_c2395_0 ( const QModelIndex & index ) const
{
return QFileSystemModel : : span ( index ) ;
}
virtual QSize span ( const QModelIndex & index ) const
{
if ( cb_span_c2395_0 . can_issue ( ) ) {
return cb_span_c2395_0 . issue < QFileSystemModel_Adaptor , QSize , const QModelIndex & > ( & QFileSystemModel_Adaptor : : cbs_span_c2395_0 , index ) ;
} else {
return QFileSystemModel : : span ( index ) ;
}
}
// [adaptor impl] bool QFileSystemModel::submit()
bool cbs_submit_0_0 ( )
{
return QFileSystemModel : : submit ( ) ;
}
virtual bool submit ( )
{
if ( cb_submit_0_0 . can_issue ( ) ) {
return cb_submit_0_0 . issue < QFileSystemModel_Adaptor , bool > ( & QFileSystemModel_Adaptor : : cbs_submit_0_0 ) ;
} else {
return QFileSystemModel : : submit ( ) ;
}
}
// [adaptor impl] QFlags<Qt::DropAction> QFileSystemModel::supportedDropActions()
QFlags < Qt : : DropAction > cbs_supportedDropActions_c0_0 ( ) const
{
return QFileSystemModel : : supportedDropActions ( ) ;
}
virtual QFlags < Qt : : DropAction > supportedDropActions ( ) const
{
if ( cb_supportedDropActions_c0_0 . can_issue ( ) ) {
return cb_supportedDropActions_c0_0 . issue < QFileSystemModel_Adaptor , QFlags < Qt : : DropAction > > ( & QFileSystemModel_Adaptor : : cbs_supportedDropActions_c0_0 ) ;
} else {
return QFileSystemModel : : supportedDropActions ( ) ;
}
}
// [adaptor impl] void QFileSystemModel::childEvent(QChildEvent *)
void cbs_childEvent_1701_0 ( QChildEvent * arg1 )
{
QFileSystemModel : : childEvent ( arg1 ) ;
}
virtual void childEvent ( QChildEvent * arg1 )
{
if ( cb_childEvent_1701_0 . can_issue ( ) ) {
cb_childEvent_1701_0 . issue < QFileSystemModel_Adaptor , QChildEvent * > ( & QFileSystemModel_Adaptor : : cbs_childEvent_1701_0 , arg1 ) ;
} else {
QFileSystemModel : : childEvent ( arg1 ) ;
}
}
// [adaptor impl] void QFileSystemModel::customEvent(QEvent *)
void cbs_customEvent_1217_0 ( QEvent * arg1 )
{
QFileSystemModel : : customEvent ( arg1 ) ;
}
virtual void customEvent ( QEvent * arg1 )
{
if ( cb_customEvent_1217_0 . can_issue ( ) ) {
cb_customEvent_1217_0 . issue < QFileSystemModel_Adaptor , QEvent * > ( & QFileSystemModel_Adaptor : : cbs_customEvent_1217_0 , arg1 ) ;
} else {
QFileSystemModel : : customEvent ( arg1 ) ;
}
}
// [emitter impl] void QFileSystemModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
void emitter_QFileSystemModel_dataChanged_4682 ( const QModelIndex & topLeft , const QModelIndex & bottomRight )
{
emit QFileSystemModel : : dataChanged ( topLeft , bottomRight ) ;
}
// [emitter impl] void QFileSystemModel::destroyed(QObject *)
void emitter_QFileSystemModel_destroyed_1302 ( QObject * arg1 )
{
emit QFileSystemModel : : destroyed ( arg1 ) ;
}
// [adaptor impl] void QFileSystemModel::disconnectNotify(const char *signal)
void cbs_disconnectNotify_1731_0 ( const char * signal )
{
QFileSystemModel : : disconnectNotify ( signal ) ;
}
virtual void disconnectNotify ( const char * signal )
{
if ( cb_disconnectNotify_1731_0 . can_issue ( ) ) {
cb_disconnectNotify_1731_0 . issue < QFileSystemModel_Adaptor , const char * > ( & QFileSystemModel_Adaptor : : cbs_disconnectNotify_1731_0 , signal ) ;
} else {
QFileSystemModel : : disconnectNotify ( signal ) ;
}
}
// [adaptor impl] bool QFileSystemModel::event(QEvent *event)
bool cbs_event_1217_0 ( QEvent * _event )
{
return QFileSystemModel : : event ( _event ) ;
}
virtual bool event ( QEvent * _event )
{
if ( cb_event_1217_0 . can_issue ( ) ) {
return cb_event_1217_0 . issue < QFileSystemModel_Adaptor , bool , QEvent * > ( & QFileSystemModel_Adaptor : : cbs_event_1217_0 , _event ) ;
} else {
return QFileSystemModel : : event ( _event ) ;
}
}
// [emitter impl] void QFileSystemModel::fileRenamed(const QString &path, const QString &oldName, const QString &newName)
void emitter_QFileSystemModel_fileRenamed_5859 ( const QString & path , const QString & oldName , const QString & newName )
{
emit QFileSystemModel : : fileRenamed ( path , oldName , newName ) ;
}
// [emitter impl] void QFileSystemModel::headerDataChanged(Qt::Orientation orientation, int first, int last)
void emitter_QFileSystemModel_headerDataChanged_3231 ( Qt : : Orientation orientation , int first , int last )
{
emit QFileSystemModel : : headerDataChanged ( orientation , first , last ) ;
}
// [emitter impl] void QFileSystemModel::layoutAboutToBeChanged()
void emitter_QFileSystemModel_layoutAboutToBeChanged_0 ( )
{
emit QFileSystemModel : : layoutAboutToBeChanged ( ) ;
}
// [emitter impl] void QFileSystemModel::layoutChanged()
void emitter_QFileSystemModel_layoutChanged_0 ( )
{
emit QFileSystemModel : : layoutChanged ( ) ;
}
// [emitter impl] void QFileSystemModel::rootPathChanged(const QString &newPath)
void emitter_QFileSystemModel_rootPathChanged_2025 ( const QString & newPath )
{
emit QFileSystemModel : : rootPathChanged ( newPath ) ;
}
// [adaptor impl] void QFileSystemModel::timerEvent(QTimerEvent *event)
void cbs_timerEvent_1730_0 ( QTimerEvent * event )
{
QFileSystemModel : : timerEvent ( event ) ;
}
virtual void timerEvent ( QTimerEvent * event )
{
if ( cb_timerEvent_1730_0 . can_issue ( ) ) {
cb_timerEvent_1730_0 . issue < QFileSystemModel_Adaptor , QTimerEvent * > ( & QFileSystemModel_Adaptor : : cbs_timerEvent_1730_0 , event ) ;
} else {
QFileSystemModel : : timerEvent ( event ) ;
}
}
gsi : : Callback cb_buddy_c2395_0 ;
gsi : : Callback cb_canFetchMore_c2395_0 ;
gsi : : Callback cb_columnCount_c2395_1 ;
gsi : : Callback cb_data_c3054_1 ;
gsi : : Callback cb_dropMimeData_7425_0 ;
gsi : : Callback cb_eventFilter_2411_0 ;
gsi : : Callback cb_fetchMore_2395_0 ;
gsi : : Callback cb_flags_c2395_0 ;
gsi : : Callback cb_hasChildren_c2395_1 ;
gsi : : Callback cb_headerData_c3231_1 ;
gsi : : Callback cb_index_c3713_1 ;
gsi : : Callback cb_insertColumns_3713_1 ;
gsi : : Callback cb_insertRows_3713_1 ;
gsi : : Callback cb_itemData_c2395_0 ;
gsi : : Callback cb_match_c7932_2 ;
gsi : : Callback cb_mimeData_c3010_0 ;
gsi : : Callback cb_mimeTypes_c0_0 ;
gsi : : Callback cb_parent_c2395_0 ;
gsi : : Callback cb_removeColumns_3713_1 ;
gsi : : Callback cb_removeRows_3713_1 ;
gsi : : Callback cb_revert_0_0 ;
gsi : : Callback cb_rowCount_c2395_1 ;
gsi : : Callback cb_setData_5065_1 ;
gsi : : Callback cb_setHeaderData_5242_1 ;
gsi : : Callback cb_setItemData_5414_0 ;
gsi : : Callback cb_sort_2340_1 ;
gsi : : Callback cb_span_c2395_0 ;
gsi : : Callback cb_submit_0_0 ;
gsi : : Callback cb_supportedDropActions_c0_0 ;
gsi : : Callback cb_childEvent_1701_0 ;
gsi : : Callback cb_customEvent_1217_0 ;
gsi : : Callback cb_disconnectNotify_1731_0 ;
gsi : : Callback cb_event_1217_0 ;
gsi : : Callback cb_timerEvent_1730_0 ;
} ;
QFileSystemModel_Adaptor : : ~ QFileSystemModel_Adaptor ( ) { }
// Constructor QFileSystemModel::QFileSystemModel(QObject *parent) (adaptor class)
static void _init_ctor_QFileSystemModel_Adaptor_1302 ( qt_gsi : : GenericStaticMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " , true , " 0 " ) ;
decl - > add_arg < QObject * > ( argspec_0 ) ;
decl - > set_return_new < QFileSystemModel_Adaptor > ( ) ;
}
static void _call_ctor_QFileSystemModel_Adaptor_1302 ( const qt_gsi : : GenericStaticMethod * /*decl*/ , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QObject * arg1 = args ? args . read < QObject * > ( heap ) : ( QObject * ) ( 0 ) ;
ret . write < QFileSystemModel_Adaptor * > ( new QFileSystemModel_Adaptor ( arg1 ) ) ;
}
// exposed void QFileSystemModel::beginInsertColumns(const QModelIndex &parent, int first, int last)
static void _init_fp_beginInsertColumns_3713 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " first " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " last " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_beginInsertColumns_3713 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_beginInsertColumns_3713 ( arg1 , arg2 , arg3 ) ;
}
// exposed void QFileSystemModel::beginInsertRows(const QModelIndex &parent, int first, int last)
static void _init_fp_beginInsertRows_3713 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " first " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " last " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_beginInsertRows_3713 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_beginInsertRows_3713 ( arg1 , arg2 , arg3 ) ;
}
// exposed bool QFileSystemModel::beginMoveColumns(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationColumn)
static void _init_fp_beginMoveColumns_6659 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " sourceParent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " sourceFirst " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " sourceLast " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
static gsi : : ArgSpecBase argspec_3 ( " destinationParent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_3 ) ;
static gsi : : ArgSpecBase argspec_4 ( " destinationColumn " ) ;
decl - > add_arg < int > ( argspec_4 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_fp_beginMoveColumns_6659 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
const QModelIndex & arg4 = args . read < const QModelIndex & > ( heap ) ;
int arg5 = args . read < int > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_beginMoveColumns_6659 ( arg1 , arg2 , arg3 , arg4 , arg5 ) ) ;
}
// exposed bool QFileSystemModel::beginMoveRows(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationRow)
static void _init_fp_beginMoveRows_6659 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " sourceParent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " sourceFirst " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " sourceLast " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
static gsi : : ArgSpecBase argspec_3 ( " destinationParent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_3 ) ;
static gsi : : ArgSpecBase argspec_4 ( " destinationRow " ) ;
decl - > add_arg < int > ( argspec_4 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_fp_beginMoveRows_6659 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
const QModelIndex & arg4 = args . read < const QModelIndex & > ( heap ) ;
int arg5 = args . read < int > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_beginMoveRows_6659 ( arg1 , arg2 , arg3 , arg4 , arg5 ) ) ;
}
// exposed void QFileSystemModel::beginRemoveColumns(const QModelIndex &parent, int first, int last)
static void _init_fp_beginRemoveColumns_3713 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " first " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " last " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_beginRemoveColumns_3713 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_beginRemoveColumns_3713 ( arg1 , arg2 , arg3 ) ;
}
// exposed void QFileSystemModel::beginRemoveRows(const QModelIndex &parent, int first, int last)
static void _init_fp_beginRemoveRows_3713 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " first " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " last " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_beginRemoveRows_3713 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_beginRemoveRows_3713 ( arg1 , arg2 , arg3 ) ;
}
// exposed void QFileSystemModel::beginResetModel()
static void _init_fp_beginResetModel_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_beginResetModel_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_beginResetModel_0 ( ) ;
}
// QModelIndex QFileSystemModel::buddy(const QModelIndex &index)
static void _init_cbs_buddy_c2395_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_cbs_buddy_c2395_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_buddy_c2395_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_buddy_c2395_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_buddy_c2395_0 = cb ;
}
// bool QFileSystemModel::canFetchMore(const QModelIndex &parent)
static void _init_cbs_canFetchMore_c2395_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_canFetchMore_c2395_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_canFetchMore_c2395_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_canFetchMore_c2395_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_canFetchMore_c2395_0 = cb ;
}
// exposed void QFileSystemModel::changePersistentIndex(const QModelIndex &from, const QModelIndex &to)
static void _init_fp_changePersistentIndex_4682 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " from " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " to " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_1 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_changePersistentIndex_4682 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
const QModelIndex & arg2 = args . read < const QModelIndex & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_changePersistentIndex_4682 ( arg1 , arg2 ) ;
}
// exposed void QFileSystemModel::changePersistentIndexList(const QList<QModelIndex> &from, const QList<QModelIndex> &to)
static void _init_fp_changePersistentIndexList_5912 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " from " ) ;
decl - > add_arg < const QList < QModelIndex > & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " to " ) ;
decl - > add_arg < const QList < QModelIndex > & > ( argspec_1 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_changePersistentIndexList_5912 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QList < QModelIndex > & arg1 = args . read < const QList < QModelIndex > & > ( heap ) ;
const QList < QModelIndex > & arg2 = args . read < const QList < QModelIndex > & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_changePersistentIndexList_5912 ( arg1 , arg2 ) ;
}
// void QFileSystemModel::childEvent(QChildEvent *)
static void _init_cbs_childEvent_1701_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " arg1 " ) ;
decl - > add_arg < QChildEvent * > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_cbs_childEvent_1701_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QChildEvent * arg1 = args . read < QChildEvent * > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_childEvent_1701_0 ( arg1 ) ;
}
static void _set_callback_cbs_childEvent_1701_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_childEvent_1701_0 = cb ;
}
// int QFileSystemModel::columnCount(const QModelIndex &parent)
static void _init_cbs_columnCount_c2395_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < int > ( ) ;
}
static void _call_cbs_columnCount_c2395_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < int > ( ( int ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_columnCount_c2395_1 ( arg1 ) ) ;
}
static void _set_callback_cbs_columnCount_c2395_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_columnCount_c2395_1 = cb ;
}
// exposed QModelIndex QFileSystemModel::createIndex(int row, int column, void *data)
static void _init_fp_createIndex_c2374 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " column " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " data " , true , " 0 " ) ;
decl - > add_arg < void * > ( argspec_2 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_fp_createIndex_c2374 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
void * arg3 = args ? args . read < void * > ( heap ) : ( void * ) ( 0 ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_createIndex_c2374 ( arg1 , arg2 , arg3 ) ) ;
}
// exposed QModelIndex QFileSystemModel::createIndex(int row, int column, int id)
static void _init_fp_createIndex_c2085 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " column " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " id " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_fp_createIndex_c2085 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_createIndex_c2085 ( arg1 , arg2 , arg3 ) ) ;
}
// exposed QModelIndex QFileSystemModel::createIndex(int row, int column, quint32 id)
static void _init_fp_createIndex_c2416 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " column " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " id " ) ;
decl - > add_arg < quint32 > ( argspec_2 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_fp_createIndex_c2416 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
quint32 arg3 = args . read < quint32 > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_createIndex_c2416 ( arg1 , arg2 , arg3 ) ) ;
}
// void QFileSystemModel::customEvent(QEvent *)
static void _init_cbs_customEvent_1217_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " arg1 " ) ;
decl - > add_arg < QEvent * > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_cbs_customEvent_1217_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QEvent * arg1 = args . read < QEvent * > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_customEvent_1217_0 ( arg1 ) ;
}
static void _set_callback_cbs_customEvent_1217_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_customEvent_1217_0 = cb ;
}
// QVariant QFileSystemModel::data(const QModelIndex &index, int role)
static void _init_cbs_data_c3054_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " role " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
decl - > set_return < QVariant > ( ) ;
}
static void _call_cbs_data_c3054_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
ret . write < QVariant > ( ( QVariant ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_data_c3054_1 ( arg1 , arg2 ) ) ;
}
static void _set_callback_cbs_data_c3054_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_data_c3054_1 = cb ;
}
// emitter void QFileSystemModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
static void _init_emitter_dataChanged_4682 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " topLeft " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " bottomRight " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_1 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_emitter_dataChanged_4682 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & /*ret*/ )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
const QModelIndex & arg2 = args . read < const QModelIndex & > ( heap ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > emitter_QFileSystemModel_dataChanged_4682 ( arg1 , arg2 ) ;
}
// exposed bool QFileSystemModel::decodeData(int row, int column, const QModelIndex &parent, QDataStream &stream)
static void _init_fp_decodeData_5302 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " column " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_2 ) ;
static gsi : : ArgSpecBase argspec_3 ( " stream " ) ;
decl - > add_arg < QDataStream & > ( argspec_3 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_fp_decodeData_5302 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QModelIndex & arg3 = args . read < const QModelIndex & > ( heap ) ;
QDataStream & arg4 = args . read < QDataStream & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_decodeData_5302 ( arg1 , arg2 , arg3 , arg4 ) ) ;
}
// emitter void QFileSystemModel::destroyed(QObject *)
static void _init_emitter_destroyed_1302 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " arg1 " , true , " 0 " ) ;
decl - > add_arg < QObject * > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_emitter_destroyed_1302 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & /*ret*/ )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QObject * arg1 = args ? args . read < QObject * > ( heap ) : ( QObject * ) ( 0 ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > emitter_QFileSystemModel_destroyed_1302 ( arg1 ) ;
}
// void QFileSystemModel::disconnectNotify(const char *signal)
static void _init_cbs_disconnectNotify_1731_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " signal " ) ;
decl - > add_arg < const char * > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_cbs_disconnectNotify_1731_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const char * arg1 = args . read < const char * > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_disconnectNotify_1731_0 ( arg1 ) ;
}
static void _set_callback_cbs_disconnectNotify_1731_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_disconnectNotify_1731_0 = cb ;
}
// bool QFileSystemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
static void _init_cbs_dropMimeData_7425_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " data " ) ;
decl - > add_arg < const QMimeData * > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " action " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : DropAction > : : target_type & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " row " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
static gsi : : ArgSpecBase argspec_3 ( " column " ) ;
decl - > add_arg < int > ( argspec_3 ) ;
static gsi : : ArgSpecBase argspec_4 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_4 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_dropMimeData_7425_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QMimeData * arg1 = args . read < const QMimeData * > ( heap ) ;
const qt_gsi : : Converter < Qt : : DropAction > : : target_type & arg2 = args . read < const qt_gsi : : Converter < Qt : : DropAction > : : target_type & > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
int arg4 = args . read < int > ( heap ) ;
const QModelIndex & arg5 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_dropMimeData_7425_0 ( arg1 , arg2 , arg3 , arg4 , arg5 ) ) ;
}
static void _set_callback_cbs_dropMimeData_7425_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_dropMimeData_7425_0 = cb ;
}
// exposed void QFileSystemModel::encodeData(const QList<QModelIndex> &indexes, QDataStream &stream)
static void _init_fp_encodeData_c4599 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " indexes " ) ;
decl - > add_arg < const QList < QModelIndex > & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " stream " ) ;
decl - > add_arg < QDataStream & > ( argspec_1 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_encodeData_c4599 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QList < QModelIndex > & arg1 = args . read < const QList < QModelIndex > & > ( heap ) ;
QDataStream & arg2 = args . read < QDataStream & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_encodeData_c4599 ( arg1 , arg2 ) ;
}
// exposed void QFileSystemModel::endInsertColumns()
static void _init_fp_endInsertColumns_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_endInsertColumns_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_endInsertColumns_0 ( ) ;
}
// exposed void QFileSystemModel::endInsertRows()
static void _init_fp_endInsertRows_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_endInsertRows_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_endInsertRows_0 ( ) ;
}
// exposed void QFileSystemModel::endMoveColumns()
static void _init_fp_endMoveColumns_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_endMoveColumns_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_endMoveColumns_0 ( ) ;
}
// exposed void QFileSystemModel::endMoveRows()
static void _init_fp_endMoveRows_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_endMoveRows_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_endMoveRows_0 ( ) ;
}
// exposed void QFileSystemModel::endRemoveColumns()
static void _init_fp_endRemoveColumns_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_endRemoveColumns_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_endRemoveColumns_0 ( ) ;
}
// exposed void QFileSystemModel::endRemoveRows()
static void _init_fp_endRemoveRows_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_endRemoveRows_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_endRemoveRows_0 ( ) ;
}
// exposed void QFileSystemModel::endResetModel()
static void _init_fp_endResetModel_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_endResetModel_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_endResetModel_0 ( ) ;
}
// bool QFileSystemModel::event(QEvent *event)
static void _init_cbs_event_1217_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " event " ) ;
decl - > add_arg < QEvent * > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_event_1217_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QEvent * arg1 = args . read < QEvent * > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_event_1217_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_event_1217_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_event_1217_0 = cb ;
}
// bool QFileSystemModel::eventFilter(QObject *, QEvent *)
static void _init_cbs_eventFilter_2411_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " arg1 " ) ;
decl - > add_arg < QObject * > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " arg2 " ) ;
decl - > add_arg < QEvent * > ( argspec_1 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_eventFilter_2411_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QObject * arg1 = args . read < QObject * > ( heap ) ;
QEvent * arg2 = args . read < QEvent * > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_eventFilter_2411_0 ( arg1 , arg2 ) ) ;
}
static void _set_callback_cbs_eventFilter_2411_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_eventFilter_2411_0 = cb ;
}
// void QFileSystemModel::fetchMore(const QModelIndex &parent)
static void _init_cbs_fetchMore_2395_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_cbs_fetchMore_2395_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_fetchMore_2395_0 ( arg1 ) ;
}
static void _set_callback_cbs_fetchMore_2395_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_fetchMore_2395_0 = cb ;
}
// emitter void QFileSystemModel::fileRenamed(const QString &path, const QString &oldName, const QString &newName)
static void _init_emitter_fileRenamed_5859 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " path " ) ;
decl - > add_arg < const QString & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " oldName " ) ;
decl - > add_arg < const QString & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " newName " ) ;
decl - > add_arg < const QString & > ( argspec_2 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_emitter_fileRenamed_5859 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & /*ret*/ )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QString & arg1 = args . read < const QString & > ( heap ) ;
const QString & arg2 = args . read < const QString & > ( heap ) ;
const QString & arg3 = args . read < const QString & > ( heap ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > emitter_QFileSystemModel_fileRenamed_5859 ( arg1 , arg2 , arg3 ) ;
}
// QFlags<Qt::ItemFlag> QFileSystemModel::flags(const QModelIndex &index)
static void _init_cbs_flags_c2395_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QFlags < Qt : : ItemFlag > > ( ) ;
}
static void _call_cbs_flags_c2395_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QFlags < Qt : : ItemFlag > > ( ( QFlags < Qt : : ItemFlag > ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_flags_c2395_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_flags_c2395_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_flags_c2395_0 = cb ;
}
// bool QFileSystemModel::hasChildren(const QModelIndex &parent)
static void _init_cbs_hasChildren_c2395_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_hasChildren_c2395_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_hasChildren_c2395_1 ( arg1 ) ) ;
}
static void _set_callback_cbs_hasChildren_c2395_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_hasChildren_c2395_1 = cb ;
}
// QVariant QFileSystemModel::headerData(int section, Qt::Orientation orientation, int role)
static void _init_cbs_headerData_c3231_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " section " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " orientation " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " role " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < QVariant > ( ) ;
}
static void _call_cbs_headerData_c3231_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
const qt_gsi : : Converter < Qt : : Orientation > : : target_type & arg2 = args . read < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
ret . write < QVariant > ( ( QVariant ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_headerData_c3231_1 ( arg1 , arg2 , arg3 ) ) ;
}
static void _set_callback_cbs_headerData_c3231_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_headerData_c3231_1 = cb ;
}
// emitter void QFileSystemModel::headerDataChanged(Qt::Orientation orientation, int first, int last)
static void _init_emitter_headerDataChanged_3231 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " orientation " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " first " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " last " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_emitter_headerDataChanged_3231 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & /*ret*/ )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const qt_gsi : : Converter < Qt : : Orientation > : : target_type & arg1 = args . read < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > emitter_QFileSystemModel_headerDataChanged_3231 ( arg1 , arg2 , arg3 ) ;
}
// QModelIndex QFileSystemModel::index(int row, int column, const QModelIndex &parent)
static void _init_cbs_index_c3713_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " column " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_2 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_cbs_index_c3713_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QModelIndex & arg3 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_index_c3713_1 ( arg1 , arg2 , arg3 ) ) ;
}
static void _set_callback_cbs_index_c3713_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_index_c3713_1 = cb ;
}
// bool QFileSystemModel::insertColumns(int column, int count, const QModelIndex &parent)
static void _init_cbs_insertColumns_3713_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " column " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " count " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_2 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_insertColumns_3713_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QModelIndex & arg3 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_insertColumns_3713_1 ( arg1 , arg2 , arg3 ) ) ;
}
static void _set_callback_cbs_insertColumns_3713_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_insertColumns_3713_1 = cb ;
}
// bool QFileSystemModel::insertRows(int row, int count, const QModelIndex &parent)
static void _init_cbs_insertRows_3713_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " count " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_2 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_insertRows_3713_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QModelIndex & arg3 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_insertRows_3713_1 ( arg1 , arg2 , arg3 ) ) ;
}
static void _set_callback_cbs_insertRows_3713_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_insertRows_3713_1 = cb ;
}
// QMap<int, QVariant> QFileSystemModel::itemData(const QModelIndex &index)
static void _init_cbs_itemData_c2395_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QMap < int , QVariant > > ( ) ;
}
static void _call_cbs_itemData_c2395_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QMap < int , QVariant > > ( ( QMap < int , QVariant > ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_itemData_c2395_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_itemData_c2395_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_itemData_c2395_0 = cb ;
}
// emitter void QFileSystemModel::layoutAboutToBeChanged()
static void _init_emitter_layoutAboutToBeChanged_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_emitter_layoutAboutToBeChanged_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & /*ret*/ )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > emitter_QFileSystemModel_layoutAboutToBeChanged_0 ( ) ;
}
// emitter void QFileSystemModel::layoutChanged()
static void _init_emitter_layoutChanged_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_emitter_layoutChanged_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & /*ret*/ )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > emitter_QFileSystemModel_layoutChanged_0 ( ) ;
}
// QList<QModelIndex> QFileSystemModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags<Qt::MatchFlag> flags)
static void _init_cbs_match_c7932_2 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " start " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " role " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " value " ) ;
decl - > add_arg < const QVariant & > ( argspec_2 ) ;
static gsi : : ArgSpecBase argspec_3 ( " hits " ) ;
decl - > add_arg < int > ( argspec_3 ) ;
static gsi : : ArgSpecBase argspec_4 ( " flags " ) ;
decl - > add_arg < QFlags < Qt : : MatchFlag > > ( argspec_4 ) ;
decl - > set_return < QList < QModelIndex > > ( ) ;
}
static void _call_cbs_match_c7932_2 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QVariant & arg3 = args . read < const QVariant & > ( heap ) ;
int arg4 = args . read < int > ( heap ) ;
QFlags < Qt : : MatchFlag > arg5 = args . read < QFlags < Qt : : MatchFlag > > ( heap ) ;
ret . write < QList < QModelIndex > > ( ( QList < QModelIndex > ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_match_c7932_2 ( arg1 , arg2 , arg3 , arg4 , arg5 ) ) ;
}
static void _set_callback_cbs_match_c7932_2 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_match_c7932_2 = cb ;
}
// QMimeData *QFileSystemModel::mimeData(const QList<QModelIndex> &indexes)
static void _init_cbs_mimeData_c3010_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " indexes " ) ;
decl - > add_arg < const QList < QModelIndex > & > ( argspec_0 ) ;
decl - > set_return < QMimeData * > ( ) ;
}
static void _call_cbs_mimeData_c3010_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QList < QModelIndex > & arg1 = args . read < const QList < QModelIndex > & > ( heap ) ;
ret . write < QMimeData * > ( ( QMimeData * ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_mimeData_c3010_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_mimeData_c3010_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_mimeData_c3010_0 = cb ;
}
// QStringList QFileSystemModel::mimeTypes()
static void _init_cbs_mimeTypes_c0_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QStringList > ( ) ;
}
static void _call_cbs_mimeTypes_c0_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QStringList > ( ( QStringList ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_mimeTypes_c0_0 ( ) ) ;
}
static void _set_callback_cbs_mimeTypes_c0_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_mimeTypes_c0_0 = cb ;
}
// QModelIndex QFileSystemModel::parent(const QModelIndex &child)
static void _init_cbs_parent_c2395_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " child " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QModelIndex > ( ) ;
}
static void _call_cbs_parent_c2395_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QModelIndex > ( ( QModelIndex ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_parent_c2395_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_parent_c2395_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_parent_c2395_0 = cb ;
}
// exposed QList<QModelIndex> QFileSystemModel::persistentIndexList()
static void _init_fp_persistentIndexList_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QList < QModelIndex > > ( ) ;
}
static void _call_fp_persistentIndexList_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QList < QModelIndex > > ( ( QList < QModelIndex > ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_persistentIndexList_c0 ( ) ) ;
}
// exposed int QFileSystemModel::receivers(const char *signal)
static void _init_fp_receivers_c1731 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " signal " ) ;
decl - > add_arg < const char * > ( argspec_0 ) ;
decl - > set_return < int > ( ) ;
}
static void _call_fp_receivers_c1731 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const char * arg1 = args . read < const char * > ( heap ) ;
ret . write < int > ( ( int ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_receivers_c1731 ( arg1 ) ) ;
}
// bool QFileSystemModel::removeColumns(int column, int count, const QModelIndex &parent)
static void _init_cbs_removeColumns_3713_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " column " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " count " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_2 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_removeColumns_3713_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QModelIndex & arg3 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_removeColumns_3713_1 ( arg1 , arg2 , arg3 ) ) ;
}
static void _set_callback_cbs_removeColumns_3713_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_removeColumns_3713_1 = cb ;
}
// bool QFileSystemModel::removeRows(int row, int count, const QModelIndex &parent)
static void _init_cbs_removeRows_3713_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " row " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " count " ) ;
decl - > add_arg < int > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_2 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_removeRows_3713_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
int arg2 = args . read < int > ( heap ) ;
const QModelIndex & arg3 = args . read < const QModelIndex & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_removeRows_3713_1 ( arg1 , arg2 , arg3 ) ) ;
}
static void _set_callback_cbs_removeRows_3713_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_removeRows_3713_1 = cb ;
}
// exposed void QFileSystemModel::reset()
static void _init_fp_reset_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_fp_reset_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_reset_0 ( ) ;
}
// void QFileSystemModel::revert()
static void _init_cbs_revert_0_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < void > ( ) ;
}
static void _call_cbs_revert_0_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_revert_0_0 ( ) ;
}
static void _set_callback_cbs_revert_0_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_revert_0_0 = cb ;
}
// emitter void QFileSystemModel::rootPathChanged(const QString &newPath)
static void _init_emitter_rootPathChanged_2025 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " newPath " ) ;
decl - > add_arg < const QString & > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_emitter_rootPathChanged_2025 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & /*ret*/ )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QString & arg1 = args . read < const QString & > ( heap ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > emitter_QFileSystemModel_rootPathChanged_2025 ( arg1 ) ;
}
// int QFileSystemModel::rowCount(const QModelIndex &parent)
static void _init_cbs_rowCount_c2395_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " parent " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < int > ( ) ;
}
static void _call_cbs_rowCount_c2395_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < int > ( ( int ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_rowCount_c2395_1 ( arg1 ) ) ;
}
static void _set_callback_cbs_rowCount_c2395_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_rowCount_c2395_1 = cb ;
}
// exposed QObject *QFileSystemModel::sender()
static void _init_fp_sender_c0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QObject * > ( ) ;
}
static void _call_fp_sender_c0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QObject * > ( ( QObject * ) ( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_sender_c0 ( ) ) ;
}
// bool QFileSystemModel::setData(const QModelIndex &index, const QVariant &value, int role)
static void _init_cbs_setData_5065_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " value " ) ;
decl - > add_arg < const QVariant & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " role " ) ;
decl - > add_arg < int > ( argspec_2 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_setData_5065_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
const QVariant & arg2 = args . read < const QVariant & > ( heap ) ;
int arg3 = args . read < int > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_setData_5065_1 ( arg1 , arg2 , arg3 ) ) ;
}
static void _set_callback_cbs_setData_5065_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_setData_5065_1 = cb ;
}
// bool QFileSystemModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role)
static void _init_cbs_setHeaderData_5242_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " section " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " orientation " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( argspec_1 ) ;
static gsi : : ArgSpecBase argspec_2 ( " value " ) ;
decl - > add_arg < const QVariant & > ( argspec_2 ) ;
static gsi : : ArgSpecBase argspec_3 ( " role " ) ;
decl - > add_arg < int > ( argspec_3 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_setHeaderData_5242_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
const qt_gsi : : Converter < Qt : : Orientation > : : target_type & arg2 = args . read < const qt_gsi : : Converter < Qt : : Orientation > : : target_type & > ( heap ) ;
const QVariant & arg3 = args . read < const QVariant & > ( heap ) ;
int arg4 = args . read < int > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_setHeaderData_5242_1 ( arg1 , arg2 , arg3 , arg4 ) ) ;
}
static void _set_callback_cbs_setHeaderData_5242_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_setHeaderData_5242_1 = cb ;
}
// bool QFileSystemModel::setItemData(const QModelIndex &index, const QMap<int, QVariant> &roles)
static void _init_cbs_setItemData_5414_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " roles " ) ;
decl - > add_arg < const QMap < int , QVariant > & > ( argspec_1 ) ;
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_setItemData_5414_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
const QMap < int , QVariant > & arg2 = args . read < const QMap < int , QVariant > & > ( heap ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_setItemData_5414_0 ( arg1 , arg2 ) ) ;
}
static void _set_callback_cbs_setItemData_5414_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_setItemData_5414_0 = cb ;
}
// exposed void QFileSystemModel::setRoleNames(const QHash<int, QByteArray> &roleNames)
static void _init_fp_setRoleNames_3419 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " roleNames " ) ;
decl - > add_arg < const QHash < int , QByteArray > & > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_fp_setRoleNames_3419 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QHash < int , QByteArray > & arg1 = args . read < const QHash < int , QByteArray > & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > fp_QFileSystemModel_setRoleNames_3419 ( arg1 ) ;
}
// void QFileSystemModel::sort(int column, Qt::SortOrder order)
static void _init_cbs_sort_2340_1 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " column " ) ;
decl - > add_arg < int > ( argspec_0 ) ;
static gsi : : ArgSpecBase argspec_1 ( " order " ) ;
decl - > add_arg < const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & > ( argspec_1 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_cbs_sort_2340_1 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
int arg1 = args . read < int > ( heap ) ;
const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & arg2 = args . read < const qt_gsi : : Converter < Qt : : SortOrder > : : target_type & > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_sort_2340_1 ( arg1 , arg2 ) ;
}
static void _set_callback_cbs_sort_2340_1 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_sort_2340_1 = cb ;
}
// QSize QFileSystemModel::span(const QModelIndex &index)
static void _init_cbs_span_c2395_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " index " ) ;
decl - > add_arg < const QModelIndex & > ( argspec_0 ) ;
decl - > set_return < QSize > ( ) ;
}
static void _call_cbs_span_c2395_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
const QModelIndex & arg1 = args . read < const QModelIndex & > ( heap ) ;
ret . write < QSize > ( ( QSize ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_span_c2395_0 ( arg1 ) ) ;
}
static void _set_callback_cbs_span_c2395_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_span_c2395_0 = cb ;
}
// bool QFileSystemModel::submit()
static void _init_cbs_submit_0_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < bool > ( ) ;
}
static void _call_cbs_submit_0_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < bool > ( ( bool ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_submit_0_0 ( ) ) ;
}
static void _set_callback_cbs_submit_0_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_submit_0_0 = cb ;
}
// QFlags<Qt::DropAction> QFileSystemModel::supportedDropActions()
static void _init_cbs_supportedDropActions_c0_0 ( qt_gsi : : GenericMethod * decl )
{
decl - > set_return < QFlags < Qt : : DropAction > > ( ) ;
}
static void _call_cbs_supportedDropActions_c0_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
ret . write < QFlags < Qt : : DropAction > > ( ( QFlags < Qt : : DropAction > ) ( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_supportedDropActions_c0_0 ( ) ) ;
}
static void _set_callback_cbs_supportedDropActions_c0_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_supportedDropActions_c0_0 = cb ;
}
// void QFileSystemModel::timerEvent(QTimerEvent *event)
static void _init_cbs_timerEvent_1730_0 ( qt_gsi : : GenericMethod * decl )
{
static gsi : : ArgSpecBase argspec_0 ( " event " ) ;
decl - > add_arg < QTimerEvent * > ( argspec_0 ) ;
decl - > set_return < void > ( ) ;
}
static void _call_cbs_timerEvent_1730_0 ( const qt_gsi : : GenericMethod * /*decl*/ , void * cls , gsi : : SerialArgs & args , gsi : : SerialArgs & ret )
{
__SUPPRESS_UNUSED_WARNING ( args ) ;
tl : : Heap heap ;
QTimerEvent * arg1 = args . read < QTimerEvent * > ( heap ) ;
__SUPPRESS_UNUSED_WARNING ( ret ) ;
( ( QFileSystemModel_Adaptor * ) cls ) - > cbs_timerEvent_1730_0 ( arg1 ) ;
}
static void _set_callback_cbs_timerEvent_1730_0 ( void * cls , const gsi : : Callback & cb )
{
( ( QFileSystemModel_Adaptor * ) cls ) - > cb_timerEvent_1730_0 = cb ;
}
namespace gsi
{
gsi : : Class < QFileSystemModel > & qtdecl_QFileSystemModel ( ) ;
static gsi : : Methods methods_QFileSystemModel_Adaptor ( ) {
gsi : : Methods methods ;
methods + = new qt_gsi : : GenericStaticMethod ( " new " , " @brief Constructor QFileSystemModel::QFileSystemModel(QObject *parent) \n This method creates an object of class QFileSystemModel. " , & _init_ctor_QFileSystemModel_Adaptor_1302 , & _call_ctor_QFileSystemModel_Adaptor_1302 ) ;
methods + = new qt_gsi : : GenericMethod ( " *beginInsertColumns " , " @brief Method void QFileSystemModel::beginInsertColumns(const QModelIndex &parent, int first, int last) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_beginInsertColumns_3713 , & _call_fp_beginInsertColumns_3713 ) ;
methods + = new qt_gsi : : GenericMethod ( " *beginInsertRows " , " @brief Method void QFileSystemModel::beginInsertRows(const QModelIndex &parent, int first, int last) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_beginInsertRows_3713 , & _call_fp_beginInsertRows_3713 ) ;
methods + = new qt_gsi : : GenericMethod ( " *beginMoveColumns " , " @brief Method bool QFileSystemModel::beginMoveColumns(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationColumn) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_beginMoveColumns_6659 , & _call_fp_beginMoveColumns_6659 ) ;
methods + = new qt_gsi : : GenericMethod ( " *beginMoveRows " , " @brief Method bool QFileSystemModel::beginMoveRows(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationRow) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_beginMoveRows_6659 , & _call_fp_beginMoveRows_6659 ) ;
methods + = new qt_gsi : : GenericMethod ( " *beginRemoveColumns " , " @brief Method void QFileSystemModel::beginRemoveColumns(const QModelIndex &parent, int first, int last) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_beginRemoveColumns_3713 , & _call_fp_beginRemoveColumns_3713 ) ;
methods + = new qt_gsi : : GenericMethod ( " *beginRemoveRows " , " @brief Method void QFileSystemModel::beginRemoveRows(const QModelIndex &parent, int first, int last) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_beginRemoveRows_3713 , & _call_fp_beginRemoveRows_3713 ) ;
methods + = new qt_gsi : : GenericMethod ( " *beginResetModel " , " @brief Method void QFileSystemModel::beginResetModel() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_beginResetModel_0 , & _call_fp_beginResetModel_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " buddy " , " @hide " , true , & _init_cbs_buddy_c2395_0 , & _call_cbs_buddy_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " buddy " , " @brief Virtual method QModelIndex QFileSystemModel::buddy(const QModelIndex &index) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_buddy_c2395_0 , & _call_cbs_buddy_c2395_0 , & _set_callback_cbs_buddy_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " canFetchMore " , " @hide " , true , & _init_cbs_canFetchMore_c2395_0 , & _call_cbs_canFetchMore_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " canFetchMore " , " @brief Virtual method bool QFileSystemModel::canFetchMore(const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_canFetchMore_c2395_0 , & _call_cbs_canFetchMore_c2395_0 , & _set_callback_cbs_canFetchMore_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *changePersistentIndex " , " @brief Method void QFileSystemModel::changePersistentIndex(const QModelIndex &from, const QModelIndex &to) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_changePersistentIndex_4682 , & _call_fp_changePersistentIndex_4682 ) ;
methods + = new qt_gsi : : GenericMethod ( " *changePersistentIndexList " , " @brief Method void QFileSystemModel::changePersistentIndexList(const QList<QModelIndex> &from, const QList<QModelIndex> &to) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_changePersistentIndexList_5912 , & _call_fp_changePersistentIndexList_5912 ) ;
methods + = new qt_gsi : : GenericMethod ( " *childEvent " , " @hide " , false , & _init_cbs_childEvent_1701_0 , & _call_cbs_childEvent_1701_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *childEvent " , " @brief Virtual method void QFileSystemModel::childEvent(QChildEvent *) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_childEvent_1701_0 , & _call_cbs_childEvent_1701_0 , & _set_callback_cbs_childEvent_1701_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " columnCount " , " @hide " , true , & _init_cbs_columnCount_c2395_1 , & _call_cbs_columnCount_c2395_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " columnCount " , " @brief Virtual method int QFileSystemModel::columnCount(const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_columnCount_c2395_1 , & _call_cbs_columnCount_c2395_1 , & _set_callback_cbs_columnCount_c2395_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " *createIndex " , " @brief Method QModelIndex QFileSystemModel::createIndex(int row, int column, void *data) \n This method is protected and can only be called from inside a derived class. " , true , & _init_fp_createIndex_c2374 , & _call_fp_createIndex_c2374 ) ;
methods + = new qt_gsi : : GenericMethod ( " *createIndex " , " @brief Method QModelIndex QFileSystemModel::createIndex(int row, int column, int id) \n This method is protected and can only be called from inside a derived class. " , true , & _init_fp_createIndex_c2085 , & _call_fp_createIndex_c2085 ) ;
methods + = new qt_gsi : : GenericMethod ( " *createIndex " , " @brief Method QModelIndex QFileSystemModel::createIndex(int row, int column, quint32 id) \n This method is protected and can only be called from inside a derived class. " , true , & _init_fp_createIndex_c2416 , & _call_fp_createIndex_c2416 ) ;
methods + = new qt_gsi : : GenericMethod ( " *customEvent " , " @hide " , false , & _init_cbs_customEvent_1217_0 , & _call_cbs_customEvent_1217_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *customEvent " , " @brief Virtual method void QFileSystemModel::customEvent(QEvent *) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_customEvent_1217_0 , & _call_cbs_customEvent_1217_0 , & _set_callback_cbs_customEvent_1217_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " data " , " @hide " , true , & _init_cbs_data_c3054_1 , & _call_cbs_data_c3054_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " data " , " @brief Virtual method QVariant QFileSystemModel::data(const QModelIndex &index, int role) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_data_c3054_1 , & _call_cbs_data_c3054_1 , & _set_callback_cbs_data_c3054_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " emit_dataChanged " , " @brief Emitter for signal void QFileSystemModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) \n Call this method to emit this signal. " , false , & _init_emitter_dataChanged_4682 , & _call_emitter_dataChanged_4682 ) ;
methods + = new qt_gsi : : GenericMethod ( " *decodeData " , " @brief Method bool QFileSystemModel::decodeData(int row, int column, const QModelIndex &parent, QDataStream &stream) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_decodeData_5302 , & _call_fp_decodeData_5302 ) ;
methods + = new qt_gsi : : GenericMethod ( " emit_destroyed " , " @brief Emitter for signal void QFileSystemModel::destroyed(QObject *) \n Call this method to emit this signal. " , false , & _init_emitter_destroyed_1302 , & _call_emitter_destroyed_1302 ) ;
methods + = new qt_gsi : : GenericMethod ( " *disconnectNotify " , " @hide " , false , & _init_cbs_disconnectNotify_1731_0 , & _call_cbs_disconnectNotify_1731_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *disconnectNotify " , " @brief Virtual method void QFileSystemModel::disconnectNotify(const char *signal) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_disconnectNotify_1731_0 , & _call_cbs_disconnectNotify_1731_0 , & _set_callback_cbs_disconnectNotify_1731_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " dropMimeData " , " @hide " , false , & _init_cbs_dropMimeData_7425_0 , & _call_cbs_dropMimeData_7425_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " dropMimeData " , " @brief Virtual method bool QFileSystemModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_dropMimeData_7425_0 , & _call_cbs_dropMimeData_7425_0 , & _set_callback_cbs_dropMimeData_7425_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *encodeData " , " @brief Method void QFileSystemModel::encodeData(const QList<QModelIndex> &indexes, QDataStream &stream) \n This method is protected and can only be called from inside a derived class. " , true , & _init_fp_encodeData_c4599 , & _call_fp_encodeData_c4599 ) ;
methods + = new qt_gsi : : GenericMethod ( " *endInsertColumns " , " @brief Method void QFileSystemModel::endInsertColumns() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_endInsertColumns_0 , & _call_fp_endInsertColumns_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *endInsertRows " , " @brief Method void QFileSystemModel::endInsertRows() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_endInsertRows_0 , & _call_fp_endInsertRows_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *endMoveColumns " , " @brief Method void QFileSystemModel::endMoveColumns() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_endMoveColumns_0 , & _call_fp_endMoveColumns_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *endMoveRows " , " @brief Method void QFileSystemModel::endMoveRows() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_endMoveRows_0 , & _call_fp_endMoveRows_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *endRemoveColumns " , " @brief Method void QFileSystemModel::endRemoveColumns() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_endRemoveColumns_0 , & _call_fp_endRemoveColumns_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *endRemoveRows " , " @brief Method void QFileSystemModel::endRemoveRows() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_endRemoveRows_0 , & _call_fp_endRemoveRows_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *endResetModel " , " @brief Method void QFileSystemModel::endResetModel() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_endResetModel_0 , & _call_fp_endResetModel_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *event " , " @hide " , false , & _init_cbs_event_1217_0 , & _call_cbs_event_1217_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *event " , " @brief Virtual method bool QFileSystemModel::event(QEvent *event) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_event_1217_0 , & _call_cbs_event_1217_0 , & _set_callback_cbs_event_1217_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " eventFilter " , " @hide " , false , & _init_cbs_eventFilter_2411_0 , & _call_cbs_eventFilter_2411_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " eventFilter " , " @brief Virtual method bool QFileSystemModel::eventFilter(QObject *, QEvent *) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_eventFilter_2411_0 , & _call_cbs_eventFilter_2411_0 , & _set_callback_cbs_eventFilter_2411_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " fetchMore " , " @hide " , false , & _init_cbs_fetchMore_2395_0 , & _call_cbs_fetchMore_2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " fetchMore " , " @brief Virtual method void QFileSystemModel::fetchMore(const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_fetchMore_2395_0 , & _call_cbs_fetchMore_2395_0 , & _set_callback_cbs_fetchMore_2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " emit_fileRenamed " , " @brief Emitter for signal void QFileSystemModel::fileRenamed(const QString &path, const QString &oldName, const QString &newName) \n Call this method to emit this signal. " , false , & _init_emitter_fileRenamed_5859 , & _call_emitter_fileRenamed_5859 ) ;
methods + = new qt_gsi : : GenericMethod ( " flags " , " @hide " , true , & _init_cbs_flags_c2395_0 , & _call_cbs_flags_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " flags " , " @brief Virtual method QFlags<Qt::ItemFlag> QFileSystemModel::flags(const QModelIndex &index) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_flags_c2395_0 , & _call_cbs_flags_c2395_0 , & _set_callback_cbs_flags_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " hasChildren " , " @hide " , true , & _init_cbs_hasChildren_c2395_1 , & _call_cbs_hasChildren_c2395_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " hasChildren " , " @brief Virtual method bool QFileSystemModel::hasChildren(const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_hasChildren_c2395_1 , & _call_cbs_hasChildren_c2395_1 , & _set_callback_cbs_hasChildren_c2395_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " headerData " , " @hide " , true , & _init_cbs_headerData_c3231_1 , & _call_cbs_headerData_c3231_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " headerData " , " @brief Virtual method QVariant QFileSystemModel::headerData(int section, Qt::Orientation orientation, int role) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_headerData_c3231_1 , & _call_cbs_headerData_c3231_1 , & _set_callback_cbs_headerData_c3231_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " emit_headerDataChanged " , " @brief Emitter for signal void QFileSystemModel::headerDataChanged(Qt::Orientation orientation, int first, int last) \n Call this method to emit this signal. " , false , & _init_emitter_headerDataChanged_3231 , & _call_emitter_headerDataChanged_3231 ) ;
methods + = new qt_gsi : : GenericMethod ( " index " , " @hide " , true , & _init_cbs_index_c3713_1 , & _call_cbs_index_c3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " index " , " @brief Virtual method QModelIndex QFileSystemModel::index(int row, int column, const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_index_c3713_1 , & _call_cbs_index_c3713_1 , & _set_callback_cbs_index_c3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " insertColumns " , " @hide " , false , & _init_cbs_insertColumns_3713_1 , & _call_cbs_insertColumns_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " insertColumns " , " @brief Virtual method bool QFileSystemModel::insertColumns(int column, int count, const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_insertColumns_3713_1 , & _call_cbs_insertColumns_3713_1 , & _set_callback_cbs_insertColumns_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " insertRows " , " @hide " , false , & _init_cbs_insertRows_3713_1 , & _call_cbs_insertRows_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " insertRows " , " @brief Virtual method bool QFileSystemModel::insertRows(int row, int count, const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_insertRows_3713_1 , & _call_cbs_insertRows_3713_1 , & _set_callback_cbs_insertRows_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " itemData " , " @hide " , true , & _init_cbs_itemData_c2395_0 , & _call_cbs_itemData_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " itemData " , " @brief Virtual method QMap<int, QVariant> QFileSystemModel::itemData(const QModelIndex &index) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_itemData_c2395_0 , & _call_cbs_itemData_c2395_0 , & _set_callback_cbs_itemData_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " emit_layoutAboutToBeChanged " , " @brief Emitter for signal void QFileSystemModel::layoutAboutToBeChanged() \n Call this method to emit this signal. " , false , & _init_emitter_layoutAboutToBeChanged_0 , & _call_emitter_layoutAboutToBeChanged_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " emit_layoutChanged " , " @brief Emitter for signal void QFileSystemModel::layoutChanged() \n Call this method to emit this signal. " , false , & _init_emitter_layoutChanged_0 , & _call_emitter_layoutChanged_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " match " , " @hide " , true , & _init_cbs_match_c7932_2 , & _call_cbs_match_c7932_2 ) ;
methods + = new qt_gsi : : GenericMethod ( " match " , " @brief Virtual method QList<QModelIndex> QFileSystemModel::match(const QModelIndex &start, int role, const QVariant &value, int hits, QFlags<Qt::MatchFlag> flags) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_match_c7932_2 , & _call_cbs_match_c7932_2 , & _set_callback_cbs_match_c7932_2 ) ;
methods + = new qt_gsi : : GenericMethod ( " mimeData " , " @hide " , true , & _init_cbs_mimeData_c3010_0 , & _call_cbs_mimeData_c3010_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " mimeData " , " @brief Virtual method QMimeData *QFileSystemModel::mimeData(const QList<QModelIndex> &indexes) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_mimeData_c3010_0 , & _call_cbs_mimeData_c3010_0 , & _set_callback_cbs_mimeData_c3010_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " mimeTypes " , " @hide " , true , & _init_cbs_mimeTypes_c0_0 , & _call_cbs_mimeTypes_c0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " mimeTypes " , " @brief Virtual method QStringList QFileSystemModel::mimeTypes() \n This method can be reimplemented in a derived class. " , true , & _init_cbs_mimeTypes_c0_0 , & _call_cbs_mimeTypes_c0_0 , & _set_callback_cbs_mimeTypes_c0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " parent " , " @hide " , true , & _init_cbs_parent_c2395_0 , & _call_cbs_parent_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " parent " , " @brief Virtual method QModelIndex QFileSystemModel::parent(const QModelIndex &child) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_parent_c2395_0 , & _call_cbs_parent_c2395_0 , & _set_callback_cbs_parent_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *persistentIndexList " , " @brief Method QList<QModelIndex> QFileSystemModel::persistentIndexList() \n This method is protected and can only be called from inside a derived class. " , true , & _init_fp_persistentIndexList_c0 , & _call_fp_persistentIndexList_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *receivers " , " @brief Method int QFileSystemModel::receivers(const char *signal) \n This method is protected and can only be called from inside a derived class. " , true , & _init_fp_receivers_c1731 , & _call_fp_receivers_c1731 ) ;
methods + = new qt_gsi : : GenericMethod ( " removeColumns " , " @hide " , false , & _init_cbs_removeColumns_3713_1 , & _call_cbs_removeColumns_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " removeColumns " , " @brief Virtual method bool QFileSystemModel::removeColumns(int column, int count, const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_removeColumns_3713_1 , & _call_cbs_removeColumns_3713_1 , & _set_callback_cbs_removeColumns_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " removeRows " , " @hide " , false , & _init_cbs_removeRows_3713_1 , & _call_cbs_removeRows_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " removeRows " , " @brief Virtual method bool QFileSystemModel::removeRows(int row, int count, const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_removeRows_3713_1 , & _call_cbs_removeRows_3713_1 , & _set_callback_cbs_removeRows_3713_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " *reset " , " @brief Method void QFileSystemModel::reset() \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_reset_0 , & _call_fp_reset_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " revert " , " @hide " , false , & _init_cbs_revert_0_0 , & _call_cbs_revert_0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " revert " , " @brief Virtual method void QFileSystemModel::revert() \n This method can be reimplemented in a derived class. " , false , & _init_cbs_revert_0_0 , & _call_cbs_revert_0_0 , & _set_callback_cbs_revert_0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " emit_rootPathChanged " , " @brief Emitter for signal void QFileSystemModel::rootPathChanged(const QString &newPath) \n Call this method to emit this signal. " , false , & _init_emitter_rootPathChanged_2025 , & _call_emitter_rootPathChanged_2025 ) ;
methods + = new qt_gsi : : GenericMethod ( " rowCount " , " @hide " , true , & _init_cbs_rowCount_c2395_1 , & _call_cbs_rowCount_c2395_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " rowCount " , " @brief Virtual method int QFileSystemModel::rowCount(const QModelIndex &parent) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_rowCount_c2395_1 , & _call_cbs_rowCount_c2395_1 , & _set_callback_cbs_rowCount_c2395_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " *sender " , " @brief Method QObject *QFileSystemModel::sender() \n This method is protected and can only be called from inside a derived class. " , true , & _init_fp_sender_c0 , & _call_fp_sender_c0 ) ;
methods + = new qt_gsi : : GenericMethod ( " setData " , " @hide " , false , & _init_cbs_setData_5065_1 , & _call_cbs_setData_5065_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " setData " , " @brief Virtual method bool QFileSystemModel::setData(const QModelIndex &index, const QVariant &value, int role) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_setData_5065_1 , & _call_cbs_setData_5065_1 , & _set_callback_cbs_setData_5065_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " setHeaderData " , " @hide " , false , & _init_cbs_setHeaderData_5242_1 , & _call_cbs_setHeaderData_5242_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " setHeaderData " , " @brief Virtual method bool QFileSystemModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_setHeaderData_5242_1 , & _call_cbs_setHeaderData_5242_1 , & _set_callback_cbs_setHeaderData_5242_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " setItemData " , " @hide " , false , & _init_cbs_setItemData_5414_0 , & _call_cbs_setItemData_5414_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " setItemData " , " @brief Virtual method bool QFileSystemModel::setItemData(const QModelIndex &index, const QMap<int, QVariant> &roles) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_setItemData_5414_0 , & _call_cbs_setItemData_5414_0 , & _set_callback_cbs_setItemData_5414_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *setRoleNames " , " @brief Method void QFileSystemModel::setRoleNames(const QHash<int, QByteArray> &roleNames) \n This method is protected and can only be called from inside a derived class. " , false , & _init_fp_setRoleNames_3419 , & _call_fp_setRoleNames_3419 ) ;
methods + = new qt_gsi : : GenericMethod ( " sort " , " @hide " , false , & _init_cbs_sort_2340_1 , & _call_cbs_sort_2340_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " sort " , " @brief Virtual method void QFileSystemModel::sort(int column, Qt::SortOrder order) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_sort_2340_1 , & _call_cbs_sort_2340_1 , & _set_callback_cbs_sort_2340_1 ) ;
methods + = new qt_gsi : : GenericMethod ( " span " , " @hide " , true , & _init_cbs_span_c2395_0 , & _call_cbs_span_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " span " , " @brief Virtual method QSize QFileSystemModel::span(const QModelIndex &index) \n This method can be reimplemented in a derived class. " , true , & _init_cbs_span_c2395_0 , & _call_cbs_span_c2395_0 , & _set_callback_cbs_span_c2395_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " submit " , " @hide " , false , & _init_cbs_submit_0_0 , & _call_cbs_submit_0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " submit " , " @brief Virtual method bool QFileSystemModel::submit() \n This method can be reimplemented in a derived class. " , false , & _init_cbs_submit_0_0 , & _call_cbs_submit_0_0 , & _set_callback_cbs_submit_0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " supportedDropActions " , " @hide " , true , & _init_cbs_supportedDropActions_c0_0 , & _call_cbs_supportedDropActions_c0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " supportedDropActions " , " @brief Virtual method QFlags<Qt::DropAction> QFileSystemModel::supportedDropActions() \n This method can be reimplemented in a derived class. " , true , & _init_cbs_supportedDropActions_c0_0 , & _call_cbs_supportedDropActions_c0_0 , & _set_callback_cbs_supportedDropActions_c0_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *timerEvent " , " @hide " , false , & _init_cbs_timerEvent_1730_0 , & _call_cbs_timerEvent_1730_0 ) ;
methods + = new qt_gsi : : GenericMethod ( " *timerEvent " , " @brief Virtual method void QFileSystemModel::timerEvent(QTimerEvent *event) \n This method can be reimplemented in a derived class. " , false , & _init_cbs_timerEvent_1730_0 , & _call_cbs_timerEvent_1730_0 , & _set_callback_cbs_timerEvent_1730_0 ) ;
return methods ;
}
gsi : : Class < QFileSystemModel_Adaptor > decl_QFileSystemModel_Adaptor ( qtdecl_QFileSystemModel ( ) , " QFileSystemModel " ,
methods_QFileSystemModel_Adaptor ( ) ,
" @qt \n @brief Binding of QFileSystemModel " ) ;
}