2024-10-20 05:21:03 +00:00
# include <QAbstractItemModel>
# include <QIdentityProxyModel>
# include <QList>
# include <QMetaObject>
# include <QMimeData>
# include <QModelIndex>
# include <QObject>
# include <QString>
# include <QByteArray>
# include <cstring>
# include <QVariant>
# include <qidentityproxymodel.h>
# include "gen_qidentityproxymodel.h"
# include "_cgo_export.h"
QIdentityProxyModel * QIdentityProxyModel_new ( ) {
return new QIdentityProxyModel ( ) ;
}
QIdentityProxyModel * QIdentityProxyModel_new2 ( QObject * parent ) {
return new QIdentityProxyModel ( parent ) ;
}
QMetaObject * QIdentityProxyModel_MetaObject ( const QIdentityProxyModel * self ) {
return ( QMetaObject * ) self - > metaObject ( ) ;
}
void * QIdentityProxyModel_Metacast ( QIdentityProxyModel * self , const char * param1 ) {
return self - > qt_metacast ( param1 ) ;
}
struct miqt_string QIdentityProxyModel_Tr ( const char * s ) {
QString _ret = QIdentityProxyModel : : tr ( s ) ;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret . toUtf8 ( ) ;
struct miqt_string _ms ;
_ms . len = _b . length ( ) ;
_ms . data = static_cast < char * > ( malloc ( _ms . len ) ) ;
memcpy ( _ms . data , _b . data ( ) , _ms . len ) ;
return _ms ;
}
int QIdentityProxyModel_ColumnCount ( const QIdentityProxyModel * self ) {
return self - > columnCount ( ) ;
}
QModelIndex * QIdentityProxyModel_Index ( const QIdentityProxyModel * self , int row , int column ) {
return new QModelIndex ( self - > index ( static_cast < int > ( row ) , static_cast < int > ( column ) ) ) ;
}
QModelIndex * QIdentityProxyModel_MapFromSource ( const QIdentityProxyModel * self , QModelIndex * sourceIndex ) {
return new QModelIndex ( self - > mapFromSource ( * sourceIndex ) ) ;
}
QModelIndex * QIdentityProxyModel_MapToSource ( const QIdentityProxyModel * self , QModelIndex * proxyIndex ) {
return new QModelIndex ( self - > mapToSource ( * proxyIndex ) ) ;
}
QModelIndex * QIdentityProxyModel_Parent ( const QIdentityProxyModel * self , QModelIndex * child ) {
return new QModelIndex ( self - > parent ( * child ) ) ;
}
int QIdentityProxyModel_RowCount ( const QIdentityProxyModel * self ) {
return self - > rowCount ( ) ;
}
QVariant * QIdentityProxyModel_HeaderData ( const QIdentityProxyModel * self , int section , int orientation ) {
return new QVariant ( self - > headerData ( static_cast < int > ( section ) , static_cast < Qt : : Orientation > ( orientation ) ) ) ;
}
bool QIdentityProxyModel_DropMimeData ( QIdentityProxyModel * self , QMimeData * data , int action , int row , int column , QModelIndex * parent ) {
return self - > dropMimeData ( data , static_cast < Qt : : DropAction > ( action ) , static_cast < int > ( row ) , static_cast < int > ( column ) , * parent ) ;
}
QModelIndex * QIdentityProxyModel_Sibling ( const QIdentityProxyModel * self , int row , int column , QModelIndex * idx ) {
return new QModelIndex ( self - > sibling ( static_cast < int > ( row ) , static_cast < int > ( column ) , * idx ) ) ;
}
2024-11-17 06:21:37 +00:00
struct miqt_array /* of QModelIndex* */ QIdentityProxyModel_Match ( const QIdentityProxyModel * self , QModelIndex * start , int role , QVariant * value ) {
2024-10-20 05:21:03 +00:00
QModelIndexList _ret = self - > match ( * start , static_cast < int > ( role ) , * value ) ;
// Convert QList<> from C++ memory to manually-managed C memory
QModelIndex * * _arr = static_cast < QModelIndex * * > ( malloc ( sizeof ( QModelIndex * ) * _ret . length ( ) ) ) ;
for ( size_t i = 0 , e = _ret . length ( ) ; i < e ; + + i ) {
_arr [ i ] = new QModelIndex ( _ret [ i ] ) ;
}
2024-11-04 07:18:27 +00:00
struct miqt_array _out ;
_out . len = _ret . length ( ) ;
_out . data = static_cast < void * > ( _arr ) ;
2024-10-20 05:21:03 +00:00
return _out ;
}
void QIdentityProxyModel_SetSourceModel ( QIdentityProxyModel * self , QAbstractItemModel * sourceModel ) {
self - > setSourceModel ( sourceModel ) ;
}
bool QIdentityProxyModel_InsertColumns ( QIdentityProxyModel * self , int column , int count ) {
return self - > insertColumns ( static_cast < int > ( column ) , static_cast < int > ( count ) ) ;
}
bool QIdentityProxyModel_InsertRows ( QIdentityProxyModel * self , int row , int count ) {
return self - > insertRows ( static_cast < int > ( row ) , static_cast < int > ( count ) ) ;
}
bool QIdentityProxyModel_RemoveColumns ( QIdentityProxyModel * self , int column , int count ) {
return self - > removeColumns ( static_cast < int > ( column ) , static_cast < int > ( count ) ) ;
}
bool QIdentityProxyModel_RemoveRows ( QIdentityProxyModel * self , int row , int count ) {
return self - > removeRows ( static_cast < int > ( row ) , static_cast < int > ( count ) ) ;
}
bool QIdentityProxyModel_MoveRows ( QIdentityProxyModel * self , QModelIndex * sourceParent , int sourceRow , int count , QModelIndex * destinationParent , int destinationChild ) {
return self - > moveRows ( * sourceParent , static_cast < int > ( sourceRow ) , static_cast < int > ( count ) , * destinationParent , static_cast < int > ( destinationChild ) ) ;
}
bool QIdentityProxyModel_MoveColumns ( QIdentityProxyModel * self , QModelIndex * sourceParent , int sourceColumn , int count , QModelIndex * destinationParent , int destinationChild ) {
return self - > moveColumns ( * sourceParent , static_cast < int > ( sourceColumn ) , static_cast < int > ( count ) , * destinationParent , static_cast < int > ( destinationChild ) ) ;
}
struct miqt_string QIdentityProxyModel_Tr2 ( const char * s , const char * c ) {
QString _ret = QIdentityProxyModel : : tr ( s , c ) ;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret . toUtf8 ( ) ;
struct miqt_string _ms ;
_ms . len = _b . length ( ) ;
_ms . data = static_cast < char * > ( malloc ( _ms . len ) ) ;
memcpy ( _ms . data , _b . data ( ) , _ms . len ) ;
return _ms ;
}
struct miqt_string QIdentityProxyModel_Tr3 ( const char * s , const char * c , int n ) {
QString _ret = QIdentityProxyModel : : tr ( s , c , static_cast < int > ( n ) ) ;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret . toUtf8 ( ) ;
struct miqt_string _ms ;
_ms . len = _b . length ( ) ;
_ms . data = static_cast < char * > ( malloc ( _ms . len ) ) ;
memcpy ( _ms . data , _b . data ( ) , _ms . len ) ;
return _ms ;
}
int QIdentityProxyModel_ColumnCount1 ( const QIdentityProxyModel * self , QModelIndex * parent ) {
return self - > columnCount ( * parent ) ;
}
QModelIndex * QIdentityProxyModel_Index3 ( const QIdentityProxyModel * self , int row , int column , QModelIndex * parent ) {
return new QModelIndex ( self - > index ( static_cast < int > ( row ) , static_cast < int > ( column ) , * parent ) ) ;
}
int QIdentityProxyModel_RowCount1 ( const QIdentityProxyModel * self , QModelIndex * parent ) {
return self - > rowCount ( * parent ) ;
}
QVariant * QIdentityProxyModel_HeaderData3 ( const QIdentityProxyModel * self , int section , int orientation , int role ) {
return new QVariant ( self - > headerData ( static_cast < int > ( section ) , static_cast < Qt : : Orientation > ( orientation ) , static_cast < int > ( role ) ) ) ;
}
2024-11-17 06:21:37 +00:00
struct miqt_array /* of QModelIndex* */ QIdentityProxyModel_Match4 ( const QIdentityProxyModel * self , QModelIndex * start , int role , QVariant * value , int hits ) {
2024-10-20 05:21:03 +00:00
QModelIndexList _ret = self - > match ( * start , static_cast < int > ( role ) , * value , static_cast < int > ( hits ) ) ;
// Convert QList<> from C++ memory to manually-managed C memory
QModelIndex * * _arr = static_cast < QModelIndex * * > ( malloc ( sizeof ( QModelIndex * ) * _ret . length ( ) ) ) ;
for ( size_t i = 0 , e = _ret . length ( ) ; i < e ; + + i ) {
_arr [ i ] = new QModelIndex ( _ret [ i ] ) ;
}
2024-11-04 07:18:27 +00:00
struct miqt_array _out ;
_out . len = _ret . length ( ) ;
_out . data = static_cast < void * > ( _arr ) ;
2024-10-20 05:21:03 +00:00
return _out ;
}
2024-11-17 06:21:37 +00:00
struct miqt_array /* of QModelIndex* */ QIdentityProxyModel_Match5 ( const QIdentityProxyModel * self , QModelIndex * start , int role , QVariant * value , int hits , int flags ) {
2024-10-20 05:21:03 +00:00
QModelIndexList _ret = self - > match ( * start , static_cast < int > ( role ) , * value , static_cast < int > ( hits ) , static_cast < Qt : : MatchFlags > ( flags ) ) ;
// Convert QList<> from C++ memory to manually-managed C memory
QModelIndex * * _arr = static_cast < QModelIndex * * > ( malloc ( sizeof ( QModelIndex * ) * _ret . length ( ) ) ) ;
for ( size_t i = 0 , e = _ret . length ( ) ; i < e ; + + i ) {
_arr [ i ] = new QModelIndex ( _ret [ i ] ) ;
}
2024-11-04 07:18:27 +00:00
struct miqt_array _out ;
_out . len = _ret . length ( ) ;
_out . data = static_cast < void * > ( _arr ) ;
2024-10-20 05:21:03 +00:00
return _out ;
}
bool QIdentityProxyModel_InsertColumns3 ( QIdentityProxyModel * self , int column , int count , QModelIndex * parent ) {
return self - > insertColumns ( static_cast < int > ( column ) , static_cast < int > ( count ) , * parent ) ;
}
bool QIdentityProxyModel_InsertRows3 ( QIdentityProxyModel * self , int row , int count , QModelIndex * parent ) {
return self - > insertRows ( static_cast < int > ( row ) , static_cast < int > ( count ) , * parent ) ;
}
bool QIdentityProxyModel_RemoveColumns3 ( QIdentityProxyModel * self , int column , int count , QModelIndex * parent ) {
return self - > removeColumns ( static_cast < int > ( column ) , static_cast < int > ( count ) , * parent ) ;
}
bool QIdentityProxyModel_RemoveRows3 ( QIdentityProxyModel * self , int row , int count , QModelIndex * parent ) {
return self - > removeRows ( static_cast < int > ( row ) , static_cast < int > ( count ) , * parent ) ;
}
void QIdentityProxyModel_Delete ( QIdentityProxyModel * self ) {
delete self ;
}