mirror of https://github.com/KLayout/klayout.git
5857 lines
236 KiB
C++
5857 lines
236 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2017 Matthias Koefferlein
|
|
|
|
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 gsiDeclQTableView.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QTableView>
|
|
#include <QAbstractItemDelegate>
|
|
#include <QAbstractItemModel>
|
|
#include <QAction>
|
|
#include <QActionEvent>
|
|
#include <QBitmap>
|
|
#include <QChildEvent>
|
|
#include <QCloseEvent>
|
|
#include <QContextMenuEvent>
|
|
#include <QCursor>
|
|
#include <QDragEnterEvent>
|
|
#include <QDragLeaveEvent>
|
|
#include <QDragMoveEvent>
|
|
#include <QDropEvent>
|
|
#include <QEvent>
|
|
#include <QFocusEvent>
|
|
#include <QFont>
|
|
#include <QFontInfo>
|
|
#include <QFontMetrics>
|
|
#include <QGraphicsEffect>
|
|
#include <QGraphicsProxyWidget>
|
|
#include <QHeaderView>
|
|
#include <QHideEvent>
|
|
#include <QIcon>
|
|
#include <QInputContext>
|
|
#include <QInputMethodEvent>
|
|
#include <QItemSelection>
|
|
#include <QItemSelectionModel>
|
|
#include <QKeyEvent>
|
|
#include <QKeySequence>
|
|
#include <QLayout>
|
|
#include <QLocale>
|
|
#include <QMargins>
|
|
#include <QModelIndex>
|
|
#include <QMouseEvent>
|
|
#include <QMoveEvent>
|
|
#include <QObject>
|
|
#include <QPaintDevice>
|
|
#include <QPaintEngine>
|
|
#include <QPaintEvent>
|
|
#include <QPainter>
|
|
#include <QPalette>
|
|
#include <QPoint>
|
|
#include <QRect>
|
|
#include <QRegion>
|
|
#include <QResizeEvent>
|
|
#include <QScrollBar>
|
|
#include <QShowEvent>
|
|
#include <QSize>
|
|
#include <QSizePolicy>
|
|
#include <QStyle>
|
|
#include <QStyleOptionViewItem>
|
|
#include <QTabletEvent>
|
|
#include <QThread>
|
|
#include <QTimerEvent>
|
|
#include <QWheelEvent>
|
|
#include <QWidget>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QTableView
|
|
|
|
// 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 &> (QTableView::staticMetaObject);
|
|
}
|
|
|
|
|
|
// void QTableView::clearSpans()
|
|
|
|
|
|
static void _init_f_clearSpans_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_clearSpans_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->clearSpans ();
|
|
}
|
|
|
|
|
|
// int QTableView::columnAt(int x)
|
|
|
|
|
|
static void _init_f_columnAt_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_columnAt_c767 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->columnAt (arg1));
|
|
}
|
|
|
|
|
|
// int QTableView::columnSpan(int row, int column)
|
|
|
|
|
|
static void _init_f_columnSpan_c1426 (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);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_columnSpan_c1426 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->columnSpan (arg1, arg2));
|
|
}
|
|
|
|
|
|
// int QTableView::columnViewportPosition(int column)
|
|
|
|
|
|
static void _init_f_columnViewportPosition_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_columnViewportPosition_c767 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->columnViewportPosition (arg1));
|
|
}
|
|
|
|
|
|
// int QTableView::columnWidth(int column)
|
|
|
|
|
|
static void _init_f_columnWidth_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_columnWidth_c767 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->columnWidth (arg1));
|
|
}
|
|
|
|
|
|
// Qt::PenStyle QTableView::gridStyle()
|
|
|
|
|
|
static void _init_f_gridStyle_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qt_gsi::Converter<Qt::PenStyle>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_gridStyle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qt_gsi::Converter<Qt::PenStyle>::target_type > ((qt_gsi::Converter<Qt::PenStyle>::target_type)qt_gsi::CppToQtAdaptor<Qt::PenStyle>(((QTableView *)cls)->gridStyle ()));
|
|
}
|
|
|
|
|
|
// void QTableView::hideColumn(int column)
|
|
|
|
|
|
static void _init_f_hideColumn_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_hideColumn_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->hideColumn (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::hideRow(int row)
|
|
|
|
|
|
static void _init_f_hideRow_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_hideRow_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->hideRow (arg1);
|
|
}
|
|
|
|
|
|
// QHeaderView *QTableView::horizontalHeader()
|
|
|
|
|
|
static void _init_f_horizontalHeader_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QHeaderView * > ();
|
|
}
|
|
|
|
static void _call_f_horizontalHeader_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QHeaderView * > ((QHeaderView *)((QTableView *)cls)->horizontalHeader ());
|
|
}
|
|
|
|
|
|
// (const QPoint &) const
|
|
|
|
|
|
static void _init_f_indexAt_c1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("p");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<QModelIndex > ();
|
|
}
|
|
|
|
static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
ret.write<QModelIndex > ((QModelIndex)((QTableView *)cls)->indexAt (arg1));
|
|
}
|
|
|
|
|
|
// bool QTableView::isColumnHidden(int column)
|
|
|
|
|
|
static void _init_f_isColumnHidden_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isColumnHidden_c767 (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);
|
|
ret.write<bool > ((bool)((QTableView *)cls)->isColumnHidden (arg1));
|
|
}
|
|
|
|
|
|
// bool QTableView::isCornerButtonEnabled()
|
|
|
|
|
|
static void _init_f_isCornerButtonEnabled_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isCornerButtonEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QTableView *)cls)->isCornerButtonEnabled ());
|
|
}
|
|
|
|
|
|
// bool QTableView::isRowHidden(int row)
|
|
|
|
|
|
static void _init_f_isRowHidden_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isRowHidden_c767 (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);
|
|
ret.write<bool > ((bool)((QTableView *)cls)->isRowHidden (arg1));
|
|
}
|
|
|
|
|
|
// bool QTableView::isSortingEnabled()
|
|
|
|
|
|
static void _init_f_isSortingEnabled_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isSortingEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QTableView *)cls)->isSortingEnabled ());
|
|
}
|
|
|
|
|
|
// void QTableView::resizeColumnToContents(int column)
|
|
|
|
|
|
static void _init_f_resizeColumnToContents_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_resizeColumnToContents_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->resizeColumnToContents (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::resizeColumnsToContents()
|
|
|
|
|
|
static void _init_f_resizeColumnsToContents_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_resizeColumnsToContents_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->resizeColumnsToContents ();
|
|
}
|
|
|
|
|
|
// void QTableView::resizeRowToContents(int row)
|
|
|
|
|
|
static void _init_f_resizeRowToContents_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_resizeRowToContents_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->resizeRowToContents (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::resizeRowsToContents()
|
|
|
|
|
|
static void _init_f_resizeRowsToContents_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_resizeRowsToContents_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->resizeRowsToContents ();
|
|
}
|
|
|
|
|
|
// int QTableView::rowAt(int y)
|
|
|
|
|
|
static void _init_f_rowAt_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("y");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_rowAt_c767 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->rowAt (arg1));
|
|
}
|
|
|
|
|
|
// int QTableView::rowHeight(int row)
|
|
|
|
|
|
static void _init_f_rowHeight_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_rowHeight_c767 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->rowHeight (arg1));
|
|
}
|
|
|
|
|
|
// int QTableView::rowSpan(int row, int column)
|
|
|
|
|
|
static void _init_f_rowSpan_c1426 (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);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_rowSpan_c1426 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->rowSpan (arg1, arg2));
|
|
}
|
|
|
|
|
|
// int QTableView::rowViewportPosition(int row)
|
|
|
|
|
|
static void _init_f_rowViewportPosition_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_rowViewportPosition_c767 (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);
|
|
ret.write<int > ((int)((QTableView *)cls)->rowViewportPosition (arg1));
|
|
}
|
|
|
|
|
|
// (const QModelIndex &, QAbstractItemView::ScrollHint)
|
|
|
|
|
|
static void _init_f_scrollTo_5576 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("hint", true, "QAbstractItemView::EnsureVisible");
|
|
decl->add_arg<const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_scrollTo_5576 (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 qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & arg2 = args ? args.read<const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & > (heap) : (const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type &)(qt_gsi::CppToQtReadAdaptor<QAbstractItemView::ScrollHint>(heap, QAbstractItemView::EnsureVisible));
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor<QAbstractItemView::ScrollHint>(arg2).cref());
|
|
}
|
|
|
|
|
|
// void QTableView::selectColumn(int column)
|
|
|
|
|
|
static void _init_f_selectColumn_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_selectColumn_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->selectColumn (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::selectRow(int row)
|
|
|
|
|
|
static void _init_f_selectRow_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_selectRow_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->selectRow (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setColumnHidden(int column, bool hide)
|
|
|
|
|
|
static void _init_f_setColumnHidden_1523 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("hide");
|
|
decl->add_arg<bool > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setColumnHidden_1523 (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);
|
|
bool arg2 = args.read<bool > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setColumnHidden (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QTableView::setColumnWidth(int column, int width)
|
|
|
|
|
|
static void _init_f_setColumnWidth_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("width");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setColumnWidth_1426 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setColumnWidth (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QTableView::setCornerButtonEnabled(bool enable)
|
|
|
|
|
|
static void _init_f_setCornerButtonEnabled_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_setCornerButtonEnabled_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);
|
|
((QTableView *)cls)->setCornerButtonEnabled (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setGridStyle(Qt::PenStyle style)
|
|
|
|
|
|
static void _init_f_setGridStyle_1569 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("style");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::PenStyle>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setGridStyle_1569 (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::PenStyle>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::PenStyle>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setGridStyle (qt_gsi::QtToCppAdaptor<Qt::PenStyle>(arg1).cref());
|
|
}
|
|
|
|
|
|
// void QTableView::setHorizontalHeader(QHeaderView *header)
|
|
|
|
|
|
static void _init_f_setHorizontalHeader_1699 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("header");
|
|
decl->add_arg<QHeaderView * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setHorizontalHeader_1699 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QHeaderView *arg1 = args.read<QHeaderView * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setHorizontalHeader (arg1);
|
|
}
|
|
|
|
|
|
// (QAbstractItemModel *)
|
|
|
|
|
|
static void _init_f_setModel_2419 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("model");
|
|
decl->add_arg<QAbstractItemModel * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAbstractItemModel *arg1 = args.read<QAbstractItemModel * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setModel (arg1);
|
|
}
|
|
|
|
|
|
// (const QModelIndex &)
|
|
|
|
|
|
static void _init_f_setRootIndex_2395 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setRootIndex_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);
|
|
((QTableView *)cls)->setRootIndex (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setRowHeight(int row, int height)
|
|
|
|
|
|
static void _init_f_setRowHeight_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("height");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setRowHeight_1426 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setRowHeight (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QTableView::setRowHidden(int row, bool hide)
|
|
|
|
|
|
static void _init_f_setRowHidden_1523 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("hide");
|
|
decl->add_arg<bool > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setRowHidden_1523 (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);
|
|
bool arg2 = args.read<bool > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setRowHidden (arg1, arg2);
|
|
}
|
|
|
|
|
|
// (QItemSelectionModel *)
|
|
|
|
|
|
static void _init_f_setSelectionModel_2533 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("selectionModel");
|
|
decl->add_arg<QItemSelectionModel * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QItemSelectionModel *arg1 = args.read<QItemSelectionModel * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setSelectionModel (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setShowGrid(bool show)
|
|
|
|
|
|
static void _init_f_setShowGrid_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("show");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setShowGrid_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);
|
|
((QTableView *)cls)->setShowGrid (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setSortingEnabled(bool enable)
|
|
|
|
|
|
static void _init_f_setSortingEnabled_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_setSortingEnabled_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);
|
|
((QTableView *)cls)->setSortingEnabled (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setSpan(int row, int column, int rowSpan, int columnSpan)
|
|
|
|
|
|
static void _init_f_setSpan_2744 (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 ("rowSpan");
|
|
decl->add_arg<int > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("columnSpan");
|
|
decl->add_arg<int > (argspec_3);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setSpan_2744 (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);
|
|
int arg4 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setSpan (arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
|
|
// void QTableView::setVerticalHeader(QHeaderView *header)
|
|
|
|
|
|
static void _init_f_setVerticalHeader_1699 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("header");
|
|
decl->add_arg<QHeaderView * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setVerticalHeader_1699 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QHeaderView *arg1 = args.read<QHeaderView * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->setVerticalHeader (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setWordWrap(bool on)
|
|
|
|
|
|
static void _init_f_setWordWrap_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("on");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setWordWrap_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);
|
|
((QTableView *)cls)->setWordWrap (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::showColumn(int column)
|
|
|
|
|
|
static void _init_f_showColumn_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_showColumn_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->showColumn (arg1);
|
|
}
|
|
|
|
|
|
// bool QTableView::showGrid()
|
|
|
|
|
|
static void _init_f_showGrid_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_showGrid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QTableView *)cls)->showGrid ());
|
|
}
|
|
|
|
|
|
// void QTableView::showRow(int row)
|
|
|
|
|
|
static void _init_f_showRow_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_showRow_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->showRow (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::sortByColumn(int column, Qt::SortOrder order)
|
|
|
|
|
|
static void _init_f_sortByColumn_2340 (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_f_sortByColumn_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.read<const qt_gsi::Converter<Qt::SortOrder>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->sortByColumn (arg1, qt_gsi::QtToCppAdaptor<Qt::SortOrder>(arg2).cref());
|
|
}
|
|
|
|
|
|
// void QTableView::sortByColumn(int column)
|
|
|
|
|
|
static void _init_f_sortByColumn_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_sortByColumn_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView *)cls)->sortByColumn (arg1);
|
|
}
|
|
|
|
|
|
// QHeaderView *QTableView::verticalHeader()
|
|
|
|
|
|
static void _init_f_verticalHeader_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QHeaderView * > ();
|
|
}
|
|
|
|
static void _call_f_verticalHeader_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QHeaderView * > ((QHeaderView *)((QTableView *)cls)->verticalHeader ());
|
|
}
|
|
|
|
|
|
// (const QModelIndex &) const
|
|
|
|
|
|
static void _init_f_visualRect_c2395 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
static void _call_f_visualRect_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<QRect > ((QRect)((QTableView *)cls)->visualRect (arg1));
|
|
}
|
|
|
|
|
|
// bool QTableView::wordWrap()
|
|
|
|
|
|
static void _init_f_wordWrap_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_wordWrap_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QTableView *)cls)->wordWrap ());
|
|
}
|
|
|
|
|
|
// static QString QTableView::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)QTableView::tr (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QTableView::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)QTableView::tr (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QString QTableView::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)QTableView::trUtf8 (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QTableView::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)QTableView::trUtf8 (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QTableView () {
|
|
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 ("clearSpans", "@brief Method void QTableView::clearSpans()\n", false, &_init_f_clearSpans_0, &_call_f_clearSpans_0);
|
|
methods += new qt_gsi::GenericMethod ("columnAt", "@brief Method int QTableView::columnAt(int x)\n", true, &_init_f_columnAt_c767, &_call_f_columnAt_c767);
|
|
methods += new qt_gsi::GenericMethod ("columnSpan", "@brief Method int QTableView::columnSpan(int row, int column)\n", true, &_init_f_columnSpan_c1426, &_call_f_columnSpan_c1426);
|
|
methods += new qt_gsi::GenericMethod ("columnViewportPosition", "@brief Method int QTableView::columnViewportPosition(int column)\n", true, &_init_f_columnViewportPosition_c767, &_call_f_columnViewportPosition_c767);
|
|
methods += new qt_gsi::GenericMethod ("columnWidth", "@brief Method int QTableView::columnWidth(int column)\n", true, &_init_f_columnWidth_c767, &_call_f_columnWidth_c767);
|
|
methods += new qt_gsi::GenericMethod (":gridStyle", "@brief Method Qt::PenStyle QTableView::gridStyle()\n", true, &_init_f_gridStyle_c0, &_call_f_gridStyle_c0);
|
|
methods += new qt_gsi::GenericMethod ("hideColumn", "@brief Method void QTableView::hideColumn(int column)\n", false, &_init_f_hideColumn_767, &_call_f_hideColumn_767);
|
|
methods += new qt_gsi::GenericMethod ("hideRow", "@brief Method void QTableView::hideRow(int row)\n", false, &_init_f_hideRow_767, &_call_f_hideRow_767);
|
|
methods += new qt_gsi::GenericMethod (":horizontalHeader", "@brief Method QHeaderView *QTableView::horizontalHeader()\n", true, &_init_f_horizontalHeader_c0, &_call_f_horizontalHeader_c0);
|
|
methods += new qt_gsi::GenericMethod ("indexAt", "@brief Method (const QPoint &) const\nThis is a reimplementation of QAbstractItemView::indexAt", true, &_init_f_indexAt_c1916, &_call_f_indexAt_c1916);
|
|
methods += new qt_gsi::GenericMethod ("isColumnHidden?", "@brief Method bool QTableView::isColumnHidden(int column)\n", true, &_init_f_isColumnHidden_c767, &_call_f_isColumnHidden_c767);
|
|
methods += new qt_gsi::GenericMethod ("isCornerButtonEnabled?|:cornerButtonEnabled", "@brief Method bool QTableView::isCornerButtonEnabled()\n", true, &_init_f_isCornerButtonEnabled_c0, &_call_f_isCornerButtonEnabled_c0);
|
|
methods += new qt_gsi::GenericMethod ("isRowHidden?", "@brief Method bool QTableView::isRowHidden(int row)\n", true, &_init_f_isRowHidden_c767, &_call_f_isRowHidden_c767);
|
|
methods += new qt_gsi::GenericMethod ("isSortingEnabled?|:sortingEnabled", "@brief Method bool QTableView::isSortingEnabled()\n", true, &_init_f_isSortingEnabled_c0, &_call_f_isSortingEnabled_c0);
|
|
methods += new qt_gsi::GenericMethod ("resizeColumnToContents", "@brief Method void QTableView::resizeColumnToContents(int column)\n", false, &_init_f_resizeColumnToContents_767, &_call_f_resizeColumnToContents_767);
|
|
methods += new qt_gsi::GenericMethod ("resizeColumnsToContents", "@brief Method void QTableView::resizeColumnsToContents()\n", false, &_init_f_resizeColumnsToContents_0, &_call_f_resizeColumnsToContents_0);
|
|
methods += new qt_gsi::GenericMethod ("resizeRowToContents", "@brief Method void QTableView::resizeRowToContents(int row)\n", false, &_init_f_resizeRowToContents_767, &_call_f_resizeRowToContents_767);
|
|
methods += new qt_gsi::GenericMethod ("resizeRowsToContents", "@brief Method void QTableView::resizeRowsToContents()\n", false, &_init_f_resizeRowsToContents_0, &_call_f_resizeRowsToContents_0);
|
|
methods += new qt_gsi::GenericMethod ("rowAt", "@brief Method int QTableView::rowAt(int y)\n", true, &_init_f_rowAt_c767, &_call_f_rowAt_c767);
|
|
methods += new qt_gsi::GenericMethod ("rowHeight", "@brief Method int QTableView::rowHeight(int row)\n", true, &_init_f_rowHeight_c767, &_call_f_rowHeight_c767);
|
|
methods += new qt_gsi::GenericMethod ("rowSpan", "@brief Method int QTableView::rowSpan(int row, int column)\n", true, &_init_f_rowSpan_c1426, &_call_f_rowSpan_c1426);
|
|
methods += new qt_gsi::GenericMethod ("rowViewportPosition", "@brief Method int QTableView::rowViewportPosition(int row)\n", true, &_init_f_rowViewportPosition_c767, &_call_f_rowViewportPosition_c767);
|
|
methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Method (const QModelIndex &, QAbstractItemView::ScrollHint)\nThis is a reimplementation of QAbstractItemView::scrollTo", false, &_init_f_scrollTo_5576, &_call_f_scrollTo_5576);
|
|
methods += new qt_gsi::GenericMethod ("selectColumn", "@brief Method void QTableView::selectColumn(int column)\n", false, &_init_f_selectColumn_767, &_call_f_selectColumn_767);
|
|
methods += new qt_gsi::GenericMethod ("selectRow", "@brief Method void QTableView::selectRow(int row)\n", false, &_init_f_selectRow_767, &_call_f_selectRow_767);
|
|
methods += new qt_gsi::GenericMethod ("setColumnHidden", "@brief Method void QTableView::setColumnHidden(int column, bool hide)\n", false, &_init_f_setColumnHidden_1523, &_call_f_setColumnHidden_1523);
|
|
methods += new qt_gsi::GenericMethod ("setColumnWidth", "@brief Method void QTableView::setColumnWidth(int column, int width)\n", false, &_init_f_setColumnWidth_1426, &_call_f_setColumnWidth_1426);
|
|
methods += new qt_gsi::GenericMethod ("setCornerButtonEnabled|cornerButtonEnabled=", "@brief Method void QTableView::setCornerButtonEnabled(bool enable)\n", false, &_init_f_setCornerButtonEnabled_864, &_call_f_setCornerButtonEnabled_864);
|
|
methods += new qt_gsi::GenericMethod ("setGridStyle|gridStyle=", "@brief Method void QTableView::setGridStyle(Qt::PenStyle style)\n", false, &_init_f_setGridStyle_1569, &_call_f_setGridStyle_1569);
|
|
methods += new qt_gsi::GenericMethod ("setHorizontalHeader|horizontalHeader=", "@brief Method void QTableView::setHorizontalHeader(QHeaderView *header)\n", false, &_init_f_setHorizontalHeader_1699, &_call_f_setHorizontalHeader_1699);
|
|
methods += new qt_gsi::GenericMethod ("setModel|model=", "@brief Method (QAbstractItemModel *)\nThis is a reimplementation of QAbstractItemView::setModel", false, &_init_f_setModel_2419, &_call_f_setModel_2419);
|
|
methods += new qt_gsi::GenericMethod ("setRootIndex|rootIndex=", "@brief Method (const QModelIndex &)\nThis is a reimplementation of QAbstractItemView::setRootIndex", false, &_init_f_setRootIndex_2395, &_call_f_setRootIndex_2395);
|
|
methods += new qt_gsi::GenericMethod ("setRowHeight", "@brief Method void QTableView::setRowHeight(int row, int height)\n", false, &_init_f_setRowHeight_1426, &_call_f_setRowHeight_1426);
|
|
methods += new qt_gsi::GenericMethod ("setRowHidden", "@brief Method void QTableView::setRowHidden(int row, bool hide)\n", false, &_init_f_setRowHidden_1523, &_call_f_setRowHidden_1523);
|
|
methods += new qt_gsi::GenericMethod ("setSelectionModel|selectionModel=", "@brief Method (QItemSelectionModel *)\nThis is a reimplementation of QAbstractItemView::setSelectionModel", false, &_init_f_setSelectionModel_2533, &_call_f_setSelectionModel_2533);
|
|
methods += new qt_gsi::GenericMethod ("setShowGrid|showGrid=", "@brief Method void QTableView::setShowGrid(bool show)\n", false, &_init_f_setShowGrid_864, &_call_f_setShowGrid_864);
|
|
methods += new qt_gsi::GenericMethod ("setSortingEnabled|sortingEnabled=", "@brief Method void QTableView::setSortingEnabled(bool enable)\n", false, &_init_f_setSortingEnabled_864, &_call_f_setSortingEnabled_864);
|
|
methods += new qt_gsi::GenericMethod ("setSpan", "@brief Method void QTableView::setSpan(int row, int column, int rowSpan, int columnSpan)\n", false, &_init_f_setSpan_2744, &_call_f_setSpan_2744);
|
|
methods += new qt_gsi::GenericMethod ("setVerticalHeader|verticalHeader=", "@brief Method void QTableView::setVerticalHeader(QHeaderView *header)\n", false, &_init_f_setVerticalHeader_1699, &_call_f_setVerticalHeader_1699);
|
|
methods += new qt_gsi::GenericMethod ("setWordWrap|wordWrap=", "@brief Method void QTableView::setWordWrap(bool on)\n", false, &_init_f_setWordWrap_864, &_call_f_setWordWrap_864);
|
|
methods += new qt_gsi::GenericMethod ("showColumn", "@brief Method void QTableView::showColumn(int column)\n", false, &_init_f_showColumn_767, &_call_f_showColumn_767);
|
|
methods += new qt_gsi::GenericMethod (":showGrid", "@brief Method bool QTableView::showGrid()\n", true, &_init_f_showGrid_c0, &_call_f_showGrid_c0);
|
|
methods += new qt_gsi::GenericMethod ("showRow", "@brief Method void QTableView::showRow(int row)\n", false, &_init_f_showRow_767, &_call_f_showRow_767);
|
|
methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTableView::sortByColumn(int column, Qt::SortOrder order)\n", false, &_init_f_sortByColumn_2340, &_call_f_sortByColumn_2340);
|
|
methods += new qt_gsi::GenericMethod ("sortByColumn", "@brief Method void QTableView::sortByColumn(int column)\n", false, &_init_f_sortByColumn_767, &_call_f_sortByColumn_767);
|
|
methods += new qt_gsi::GenericMethod (":verticalHeader", "@brief Method QHeaderView *QTableView::verticalHeader()\n", true, &_init_f_verticalHeader_c0, &_call_f_verticalHeader_c0);
|
|
methods += new qt_gsi::GenericMethod ("visualRect", "@brief Method (const QModelIndex &) const\nThis is a reimplementation of QAbstractItemView::visualRect", true, &_init_f_visualRect_c2395, &_call_f_visualRect_c2395);
|
|
methods += new qt_gsi::GenericMethod (":wordWrap", "@brief Method bool QTableView::wordWrap()\n", true, &_init_f_wordWrap_c0, &_call_f_wordWrap_c0);
|
|
methods += gsi::qt_signal<const QModelIndex & > ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QTableView::activated(const QModelIndex &index)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QModelIndex & > ("clicked(const QModelIndex &)", "clicked", gsi::arg("index"), "@brief Signal declaration for QTableView::clicked(const QModelIndex &index)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QPoint & > ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QTableView::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<QObject * > ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QTableView::destroyed(QObject *)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QModelIndex & > ("doubleClicked(const QModelIndex &)", "doubleClicked", gsi::arg("index"), "@brief Signal declaration for QTableView::doubleClicked(const QModelIndex &index)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QModelIndex & > ("entered(const QModelIndex &)", "entered", gsi::arg("index"), "@brief Signal declaration for QTableView::entered(const QModelIndex &index)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QModelIndex & > ("pressed(const QModelIndex &)", "pressed", gsi::arg("index"), "@brief Signal declaration for QTableView::pressed(const QModelIndex &index)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("viewportEntered()", "viewportEntered", "@brief Signal declaration for QTableView::viewportEntered()\nYou can bind a procedure to this signal.");
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTableView::tr(const char *s, const char *c)\nThis 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 QTableView::tr(const char *s, const char *c, int n)\nThis 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 QTableView::trUtf8(const char *s, const char *c)\nThis 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 QTableView::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QAbstractItemView> &qtdecl_QAbstractItemView ();
|
|
|
|
qt_gsi::QtNativeClass<QTableView> decl_QTableView (qtdecl_QAbstractItemView (), "QTableView_Native",
|
|
methods_QTableView (),
|
|
"@hide\n@alias QTableView");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QTableView> &qtdecl_QTableView () { return decl_QTableView; }
|
|
|
|
}
|
|
|
|
|
|
class QTableView_Adaptor : public QTableView, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QTableView_Adaptor();
|
|
|
|
// [adaptor ctor] QTableView::QTableView(QWidget *parent)
|
|
QTableView_Adaptor() : QTableView()
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QTableView::QTableView(QWidget *parent)
|
|
QTableView_Adaptor(QWidget *parent) : QTableView(parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [expose] void QTableView::columnCountChanged(int oldCount, int newCount)
|
|
void fp_QTableView_columnCountChanged_1426 (int oldCount, int newCount) {
|
|
QTableView::columnCountChanged(oldCount, newCount);
|
|
}
|
|
|
|
// [expose] void QTableView::columnMoved(int column, int oldIndex, int newIndex)
|
|
void fp_QTableView_columnMoved_2085 (int column, int oldIndex, int newIndex) {
|
|
QTableView::columnMoved(column, oldIndex, newIndex);
|
|
}
|
|
|
|
// [expose] void QTableView::columnResized(int column, int oldWidth, int newWidth)
|
|
void fp_QTableView_columnResized_2085 (int column, int oldWidth, int newWidth) {
|
|
QTableView::columnResized(column, oldWidth, newWidth);
|
|
}
|
|
|
|
// [expose] void QTableView::create(WId, bool initializeWindow, bool destroyOldWindow)
|
|
void fp_QTableView_create_2208 (const qt_gsi::Converter<WId>::target_type & arg1, bool initializeWindow, bool destroyOldWindow) {
|
|
QTableView::create(qt_gsi::QtToCppAdaptor<WId>(arg1).cref(), initializeWindow, destroyOldWindow);
|
|
}
|
|
|
|
// [expose] void QTableView::destroy(bool destroyWindow, bool destroySubWindows)
|
|
void fp_QTableView_destroy_1620 (bool destroyWindow, bool destroySubWindows) {
|
|
QTableView::destroy(destroyWindow, destroySubWindows);
|
|
}
|
|
|
|
// [expose] QPoint QTableView::dirtyRegionOffset()
|
|
QPoint fp_QTableView_dirtyRegionOffset_c0 () const {
|
|
return QTableView::dirtyRegionOffset();
|
|
}
|
|
|
|
// [expose] void QTableView::doAutoScroll()
|
|
void fp_QTableView_doAutoScroll_0 () {
|
|
QTableView::doAutoScroll();
|
|
}
|
|
|
|
// [expose] void QTableView::drawFrame(QPainter *)
|
|
void fp_QTableView_drawFrame_1426 (QPainter *arg1) {
|
|
QTableView::drawFrame(arg1);
|
|
}
|
|
|
|
// [expose] QAbstractItemView::DropIndicatorPosition QTableView::dropIndicatorPosition()
|
|
unsigned int fp_QTableView_dropIndicatorPosition_c0 () const {
|
|
return (unsigned int)(QTableView::dropIndicatorPosition());
|
|
}
|
|
|
|
// [expose] void QTableView::executeDelayedItemsLayout()
|
|
void fp_QTableView_executeDelayedItemsLayout_0 () {
|
|
QTableView::executeDelayedItemsLayout();
|
|
}
|
|
|
|
// [expose] bool QTableView::focusNextChild()
|
|
bool fp_QTableView_focusNextChild_0 () {
|
|
return QTableView::focusNextChild();
|
|
}
|
|
|
|
// [expose] bool QTableView::focusPreviousChild()
|
|
bool fp_QTableView_focusPreviousChild_0 () {
|
|
return QTableView::focusPreviousChild();
|
|
}
|
|
|
|
// [expose] int QTableView::horizontalStepsPerItem()
|
|
int fp_QTableView_horizontalStepsPerItem_c0 () const {
|
|
return QTableView::horizontalStepsPerItem();
|
|
}
|
|
|
|
// [expose] int QTableView::receivers(const char *signal)
|
|
int fp_QTableView_receivers_c1731 (const char *signal) const {
|
|
return QTableView::receivers(signal);
|
|
}
|
|
|
|
// [expose] void QTableView::resetInputContext()
|
|
void fp_QTableView_resetInputContext_0 () {
|
|
QTableView::resetInputContext();
|
|
}
|
|
|
|
// [expose] void QTableView::rowCountChanged(int oldCount, int newCount)
|
|
void fp_QTableView_rowCountChanged_1426 (int oldCount, int newCount) {
|
|
QTableView::rowCountChanged(oldCount, newCount);
|
|
}
|
|
|
|
// [expose] void QTableView::rowMoved(int row, int oldIndex, int newIndex)
|
|
void fp_QTableView_rowMoved_2085 (int row, int oldIndex, int newIndex) {
|
|
QTableView::rowMoved(row, oldIndex, newIndex);
|
|
}
|
|
|
|
// [expose] void QTableView::rowResized(int row, int oldHeight, int newHeight)
|
|
void fp_QTableView_rowResized_2085 (int row, int oldHeight, int newHeight) {
|
|
QTableView::rowResized(row, oldHeight, newHeight);
|
|
}
|
|
|
|
// [expose] void QTableView::scheduleDelayedItemsLayout()
|
|
void fp_QTableView_scheduleDelayedItemsLayout_0 () {
|
|
QTableView::scheduleDelayedItemsLayout();
|
|
}
|
|
|
|
// [expose] void QTableView::scrollDirtyRegion(int dx, int dy)
|
|
void fp_QTableView_scrollDirtyRegion_1426 (int dx, int dy) {
|
|
QTableView::scrollDirtyRegion(dx, dy);
|
|
}
|
|
|
|
// [expose] QObject *QTableView::sender()
|
|
QObject * fp_QTableView_sender_c0 () const {
|
|
return QTableView::sender();
|
|
}
|
|
|
|
// [expose] void QTableView::setDirtyRegion(const QRegion ®ion)
|
|
void fp_QTableView_setDirtyRegion_2006 (const QRegion ®ion) {
|
|
QTableView::setDirtyRegion(region);
|
|
}
|
|
|
|
// [expose] void QTableView::setHorizontalStepsPerItem(int steps)
|
|
void fp_QTableView_setHorizontalStepsPerItem_767 (int steps) {
|
|
QTableView::setHorizontalStepsPerItem(steps);
|
|
}
|
|
|
|
// [expose] void QTableView::setState(QAbstractItemView::State state)
|
|
void fp_QTableView_setState_2776 (unsigned int state) {
|
|
QTableView::setState(QAbstractItemView::State(state));
|
|
}
|
|
|
|
// [expose] void QTableView::setVerticalStepsPerItem(int steps)
|
|
void fp_QTableView_setVerticalStepsPerItem_767 (int steps) {
|
|
QTableView::setVerticalStepsPerItem(steps);
|
|
}
|
|
|
|
// [expose] void QTableView::setViewportMargins(int left, int top, int right, int bottom)
|
|
void fp_QTableView_setViewportMargins_2744 (int left, int top, int right, int bottom) {
|
|
QTableView::setViewportMargins(left, top, right, bottom);
|
|
}
|
|
|
|
// [expose] void QTableView::setViewportMargins(const QMargins &margins)
|
|
void fp_QTableView_setViewportMargins_2115 (const QMargins &margins) {
|
|
QTableView::setViewportMargins(margins);
|
|
}
|
|
|
|
// [expose] void QTableView::setupViewport(QWidget *viewport)
|
|
void fp_QTableView_setupViewport_1315 (QWidget *viewport) {
|
|
QTableView::setupViewport(viewport);
|
|
}
|
|
|
|
// [expose] void QTableView::startAutoScroll()
|
|
void fp_QTableView_startAutoScroll_0 () {
|
|
QTableView::startAutoScroll();
|
|
}
|
|
|
|
// [expose] QAbstractItemView::State QTableView::state()
|
|
unsigned int fp_QTableView_state_c0 () const {
|
|
return (unsigned int)(QTableView::state());
|
|
}
|
|
|
|
// [expose] void QTableView::stopAutoScroll()
|
|
void fp_QTableView_stopAutoScroll_0 () {
|
|
QTableView::stopAutoScroll();
|
|
}
|
|
|
|
// [expose] void QTableView::updateMicroFocus()
|
|
void fp_QTableView_updateMicroFocus_0 () {
|
|
QTableView::updateMicroFocus();
|
|
}
|
|
|
|
// [expose] int QTableView::verticalStepsPerItem()
|
|
int fp_QTableView_verticalStepsPerItem_c0 () const {
|
|
return QTableView::verticalStepsPerItem();
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::doItemsLayout()
|
|
void cbs_doItemsLayout_0_0()
|
|
{
|
|
QTableView::doItemsLayout();
|
|
}
|
|
|
|
virtual void doItemsLayout()
|
|
{
|
|
if (cb_doItemsLayout_0_0.can_issue()) {
|
|
cb_doItemsLayout_0_0.issue<QTableView_Adaptor>(&QTableView_Adaptor::cbs_doItemsLayout_0_0);
|
|
} else {
|
|
QTableView::doItemsLayout();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QTableView::eventFilter(QObject *, QEvent *)
|
|
bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
|
|
{
|
|
return QTableView::eventFilter(arg1, arg2);
|
|
}
|
|
|
|
virtual bool eventFilter(QObject *arg1, QEvent *arg2)
|
|
{
|
|
if (cb_eventFilter_2411_0.can_issue()) {
|
|
return cb_eventFilter_2411_0.issue<QTableView_Adaptor, bool, QObject *, QEvent *>(&QTableView_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
|
|
} else {
|
|
return QTableView::eventFilter(arg1, arg2);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QTableView::heightForWidth(int)
|
|
int cbs_heightForWidth_c767_0(int arg1) const
|
|
{
|
|
return QTableView::heightForWidth(arg1);
|
|
}
|
|
|
|
virtual int heightForWidth(int arg1) const
|
|
{
|
|
if (cb_heightForWidth_c767_0.can_issue()) {
|
|
return cb_heightForWidth_c767_0.issue<QTableView_Adaptor, int, int>(&QTableView_Adaptor::cbs_heightForWidth_c767_0, arg1);
|
|
} else {
|
|
return QTableView::heightForWidth(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QModelIndex QTableView::indexAt(const QPoint &p)
|
|
QModelIndex cbs_indexAt_c1916_0(const QPoint &p) const
|
|
{
|
|
return QTableView::indexAt(p);
|
|
}
|
|
|
|
virtual QModelIndex indexAt(const QPoint &p) const
|
|
{
|
|
if (cb_indexAt_c1916_0.can_issue()) {
|
|
return cb_indexAt_c1916_0.issue<QTableView_Adaptor, QModelIndex, const QPoint &>(&QTableView_Adaptor::cbs_indexAt_c1916_0, p);
|
|
} else {
|
|
return QTableView::indexAt(p);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QTableView::inputMethodQuery(Qt::InputMethodQuery query)
|
|
QVariant cbs_inputMethodQuery_c2420_0(const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & query) const
|
|
{
|
|
return QTableView::inputMethodQuery(qt_gsi::QtToCppAdaptor<Qt::InputMethodQuery>(query).cref());
|
|
}
|
|
|
|
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const
|
|
{
|
|
if (cb_inputMethodQuery_c2420_0.can_issue()) {
|
|
return cb_inputMethodQuery_c2420_0.issue<QTableView_Adaptor, QVariant, const qt_gsi::Converter<Qt::InputMethodQuery>::target_type &>(&QTableView_Adaptor::cbs_inputMethodQuery_c2420_0, qt_gsi::CppToQtAdaptor<Qt::InputMethodQuery>(query));
|
|
} else {
|
|
return QTableView::inputMethodQuery(query);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::keyboardSearch(const QString &search)
|
|
void cbs_keyboardSearch_2025_0(const QString &search)
|
|
{
|
|
QTableView::keyboardSearch(search);
|
|
}
|
|
|
|
virtual void keyboardSearch(const QString &search)
|
|
{
|
|
if (cb_keyboardSearch_2025_0.can_issue()) {
|
|
cb_keyboardSearch_2025_0.issue<QTableView_Adaptor, const QString &>(&QTableView_Adaptor::cbs_keyboardSearch_2025_0, search);
|
|
} else {
|
|
QTableView::keyboardSearch(search);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QTableView::minimumSizeHint()
|
|
QSize cbs_minimumSizeHint_c0_0() const
|
|
{
|
|
return QTableView::minimumSizeHint();
|
|
}
|
|
|
|
virtual QSize minimumSizeHint() const
|
|
{
|
|
if (cb_minimumSizeHint_c0_0.can_issue()) {
|
|
return cb_minimumSizeHint_c0_0.issue<QTableView_Adaptor, QSize>(&QTableView_Adaptor::cbs_minimumSizeHint_c0_0);
|
|
} else {
|
|
return QTableView::minimumSizeHint();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPaintEngine *QTableView::paintEngine()
|
|
QPaintEngine * cbs_paintEngine_c0_0() const
|
|
{
|
|
return QTableView::paintEngine();
|
|
}
|
|
|
|
virtual QPaintEngine * paintEngine() const
|
|
{
|
|
if (cb_paintEngine_c0_0.can_issue()) {
|
|
return cb_paintEngine_c0_0.issue<QTableView_Adaptor, QPaintEngine *>(&QTableView_Adaptor::cbs_paintEngine_c0_0);
|
|
} else {
|
|
return QTableView::paintEngine();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::reset()
|
|
void cbs_reset_0_0()
|
|
{
|
|
QTableView::reset();
|
|
}
|
|
|
|
virtual void reset()
|
|
{
|
|
if (cb_reset_0_0.can_issue()) {
|
|
cb_reset_0_0.issue<QTableView_Adaptor>(&QTableView_Adaptor::cbs_reset_0_0);
|
|
} else {
|
|
QTableView::reset();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)
|
|
void cbs_scrollTo_5576_1(const QModelIndex &index, const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & hint)
|
|
{
|
|
QTableView::scrollTo(index, qt_gsi::QtToCppAdaptor<QAbstractItemView::ScrollHint>(hint).cref());
|
|
}
|
|
|
|
virtual void scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)
|
|
{
|
|
if (cb_scrollTo_5576_1.can_issue()) {
|
|
cb_scrollTo_5576_1.issue<QTableView_Adaptor, const QModelIndex &, const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type &>(&QTableView_Adaptor::cbs_scrollTo_5576_1, index, qt_gsi::CppToQtAdaptor<QAbstractItemView::ScrollHint>(hint));
|
|
} else {
|
|
QTableView::scrollTo(index, hint);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::selectAll()
|
|
void cbs_selectAll_0_0()
|
|
{
|
|
QTableView::selectAll();
|
|
}
|
|
|
|
virtual void selectAll()
|
|
{
|
|
if (cb_selectAll_0_0.can_issue()) {
|
|
cb_selectAll_0_0.issue<QTableView_Adaptor>(&QTableView_Adaptor::cbs_selectAll_0_0);
|
|
} else {
|
|
QTableView::selectAll();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::setModel(QAbstractItemModel *model)
|
|
void cbs_setModel_2419_0(QAbstractItemModel *model)
|
|
{
|
|
QTableView::setModel(model);
|
|
}
|
|
|
|
virtual void setModel(QAbstractItemModel *model)
|
|
{
|
|
if (cb_setModel_2419_0.can_issue()) {
|
|
cb_setModel_2419_0.issue<QTableView_Adaptor, QAbstractItemModel *>(&QTableView_Adaptor::cbs_setModel_2419_0, model);
|
|
} else {
|
|
QTableView::setModel(model);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::setRootIndex(const QModelIndex &index)
|
|
void cbs_setRootIndex_2395_0(const QModelIndex &index)
|
|
{
|
|
QTableView::setRootIndex(index);
|
|
}
|
|
|
|
virtual void setRootIndex(const QModelIndex &index)
|
|
{
|
|
if (cb_setRootIndex_2395_0.can_issue()) {
|
|
cb_setRootIndex_2395_0.issue<QTableView_Adaptor, const QModelIndex &>(&QTableView_Adaptor::cbs_setRootIndex_2395_0, index);
|
|
} else {
|
|
QTableView::setRootIndex(index);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::setSelectionModel(QItemSelectionModel *selectionModel)
|
|
void cbs_setSelectionModel_2533_0(QItemSelectionModel *selectionModel)
|
|
{
|
|
QTableView::setSelectionModel(selectionModel);
|
|
}
|
|
|
|
virtual void setSelectionModel(QItemSelectionModel *selectionModel)
|
|
{
|
|
if (cb_setSelectionModel_2533_0.can_issue()) {
|
|
cb_setSelectionModel_2533_0.issue<QTableView_Adaptor, QItemSelectionModel *>(&QTableView_Adaptor::cbs_setSelectionModel_2533_0, selectionModel);
|
|
} else {
|
|
QTableView::setSelectionModel(selectionModel);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::setVisible(bool visible)
|
|
void cbs_setVisible_864_0(bool visible)
|
|
{
|
|
QTableView::setVisible(visible);
|
|
}
|
|
|
|
virtual void setVisible(bool visible)
|
|
{
|
|
if (cb_setVisible_864_0.can_issue()) {
|
|
cb_setVisible_864_0.issue<QTableView_Adaptor, bool>(&QTableView_Adaptor::cbs_setVisible_864_0, visible);
|
|
} else {
|
|
QTableView::setVisible(visible);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QTableView::sizeHint()
|
|
QSize cbs_sizeHint_c0_0() const
|
|
{
|
|
return QTableView::sizeHint();
|
|
}
|
|
|
|
virtual QSize sizeHint() const
|
|
{
|
|
if (cb_sizeHint_c0_0.can_issue()) {
|
|
return cb_sizeHint_c0_0.issue<QTableView_Adaptor, QSize>(&QTableView_Adaptor::cbs_sizeHint_c0_0);
|
|
} else {
|
|
return QTableView::sizeHint();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRect QTableView::visualRect(const QModelIndex &index)
|
|
QRect cbs_visualRect_c2395_0(const QModelIndex &index) const
|
|
{
|
|
return QTableView::visualRect(index);
|
|
}
|
|
|
|
virtual QRect visualRect(const QModelIndex &index) const
|
|
{
|
|
if (cb_visualRect_c2395_0.can_issue()) {
|
|
return cb_visualRect_c2395_0.issue<QTableView_Adaptor, QRect, const QModelIndex &>(&QTableView_Adaptor::cbs_visualRect_c2395_0, index);
|
|
} else {
|
|
return QTableView::visualRect(index);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::actionEvent(QActionEvent *)
|
|
void cbs_actionEvent_1823_0(QActionEvent *arg1)
|
|
{
|
|
QTableView::actionEvent(arg1);
|
|
}
|
|
|
|
virtual void actionEvent(QActionEvent *arg1)
|
|
{
|
|
if (cb_actionEvent_1823_0.can_issue()) {
|
|
cb_actionEvent_1823_0.issue<QTableView_Adaptor, QActionEvent *>(&QTableView_Adaptor::cbs_actionEvent_1823_0, arg1);
|
|
} else {
|
|
QTableView::actionEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::activated(const QModelIndex &index)
|
|
void emitter_QTableView_activated_2395(const QModelIndex &index)
|
|
{
|
|
emit QTableView::activated(index);
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::changeEvent(QEvent *)
|
|
void cbs_changeEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QTableView::changeEvent(arg1);
|
|
}
|
|
|
|
virtual void changeEvent(QEvent *arg1)
|
|
{
|
|
if (cb_changeEvent_1217_0.can_issue()) {
|
|
cb_changeEvent_1217_0.issue<QTableView_Adaptor, QEvent *>(&QTableView_Adaptor::cbs_changeEvent_1217_0, arg1);
|
|
} else {
|
|
QTableView::changeEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::childEvent(QChildEvent *)
|
|
void cbs_childEvent_1701_0(QChildEvent *arg1)
|
|
{
|
|
QTableView::childEvent(arg1);
|
|
}
|
|
|
|
virtual void childEvent(QChildEvent *arg1)
|
|
{
|
|
if (cb_childEvent_1701_0.can_issue()) {
|
|
cb_childEvent_1701_0.issue<QTableView_Adaptor, QChildEvent *>(&QTableView_Adaptor::cbs_childEvent_1701_0, arg1);
|
|
} else {
|
|
QTableView::childEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::clicked(const QModelIndex &index)
|
|
void emitter_QTableView_clicked_2395(const QModelIndex &index)
|
|
{
|
|
emit QTableView::clicked(index);
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)
|
|
void cbs_closeEditor_4926_0(QWidget *editor, const qt_gsi::Converter<QAbstractItemDelegate::EndEditHint>::target_type & hint)
|
|
{
|
|
QTableView::closeEditor(editor, qt_gsi::QtToCppAdaptor<QAbstractItemDelegate::EndEditHint>(hint).cref());
|
|
}
|
|
|
|
virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)
|
|
{
|
|
if (cb_closeEditor_4926_0.can_issue()) {
|
|
cb_closeEditor_4926_0.issue<QTableView_Adaptor, QWidget *, const qt_gsi::Converter<QAbstractItemDelegate::EndEditHint>::target_type &>(&QTableView_Adaptor::cbs_closeEditor_4926_0, editor, qt_gsi::CppToQtAdaptor<QAbstractItemDelegate::EndEditHint>(hint));
|
|
} else {
|
|
QTableView::closeEditor(editor, hint);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::closeEvent(QCloseEvent *)
|
|
void cbs_closeEvent_1719_0(QCloseEvent *arg1)
|
|
{
|
|
QTableView::closeEvent(arg1);
|
|
}
|
|
|
|
virtual void closeEvent(QCloseEvent *arg1)
|
|
{
|
|
if (cb_closeEvent_1719_0.can_issue()) {
|
|
cb_closeEvent_1719_0.issue<QTableView_Adaptor, QCloseEvent *>(&QTableView_Adaptor::cbs_closeEvent_1719_0, arg1);
|
|
} else {
|
|
QTableView::closeEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::commitData(QWidget *editor)
|
|
void cbs_commitData_1315_0(QWidget *editor)
|
|
{
|
|
QTableView::commitData(editor);
|
|
}
|
|
|
|
virtual void commitData(QWidget *editor)
|
|
{
|
|
if (cb_commitData_1315_0.can_issue()) {
|
|
cb_commitData_1315_0.issue<QTableView_Adaptor, QWidget *>(&QTableView_Adaptor::cbs_commitData_1315_0, editor);
|
|
} else {
|
|
QTableView::commitData(editor);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::contextMenuEvent(QContextMenuEvent *)
|
|
void cbs_contextMenuEvent_2363_0(QContextMenuEvent *arg1)
|
|
{
|
|
QTableView::contextMenuEvent(arg1);
|
|
}
|
|
|
|
virtual void contextMenuEvent(QContextMenuEvent *arg1)
|
|
{
|
|
if (cb_contextMenuEvent_2363_0.can_issue()) {
|
|
cb_contextMenuEvent_2363_0.issue<QTableView_Adaptor, QContextMenuEvent *>(&QTableView_Adaptor::cbs_contextMenuEvent_2363_0, arg1);
|
|
} else {
|
|
QTableView::contextMenuEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::currentChanged(const QModelIndex ¤t, const QModelIndex &previous)
|
|
void cbs_currentChanged_4682_0(const QModelIndex ¤t, const QModelIndex &previous)
|
|
{
|
|
QTableView::currentChanged(current, previous);
|
|
}
|
|
|
|
virtual void currentChanged(const QModelIndex ¤t, const QModelIndex &previous)
|
|
{
|
|
if (cb_currentChanged_4682_0.can_issue()) {
|
|
cb_currentChanged_4682_0.issue<QTableView_Adaptor, const QModelIndex &, const QModelIndex &>(&QTableView_Adaptor::cbs_currentChanged_4682_0, current, previous);
|
|
} else {
|
|
QTableView::currentChanged(current, previous);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::customContextMenuRequested(const QPoint &pos)
|
|
void emitter_QTableView_customContextMenuRequested_1916(const QPoint &pos)
|
|
{
|
|
emit QTableView::customContextMenuRequested(pos);
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::customEvent(QEvent *)
|
|
void cbs_customEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QTableView::customEvent(arg1);
|
|
}
|
|
|
|
virtual void customEvent(QEvent *arg1)
|
|
{
|
|
if (cb_customEvent_1217_0.can_issue()) {
|
|
cb_customEvent_1217_0.issue<QTableView_Adaptor, QEvent *>(&QTableView_Adaptor::cbs_customEvent_1217_0, arg1);
|
|
} else {
|
|
QTableView::customEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
void cbs_dataChanged_4682_0(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
{
|
|
QTableView::dataChanged(topLeft, bottomRight);
|
|
}
|
|
|
|
virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
{
|
|
if (cb_dataChanged_4682_0.can_issue()) {
|
|
cb_dataChanged_4682_0.issue<QTableView_Adaptor, const QModelIndex &, const QModelIndex &>(&QTableView_Adaptor::cbs_dataChanged_4682_0, topLeft, bottomRight);
|
|
} else {
|
|
QTableView::dataChanged(topLeft, bottomRight);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::destroyed(QObject *)
|
|
void emitter_QTableView_destroyed_1302(QObject *arg1)
|
|
{
|
|
emit QTableView::destroyed(arg1);
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::disconnectNotify(const char *signal)
|
|
void cbs_disconnectNotify_1731_0(const char *signal)
|
|
{
|
|
QTableView::disconnectNotify(signal);
|
|
}
|
|
|
|
virtual void disconnectNotify(const char *signal)
|
|
{
|
|
if (cb_disconnectNotify_1731_0.can_issue()) {
|
|
cb_disconnectNotify_1731_0.issue<QTableView_Adaptor, const char *>(&QTableView_Adaptor::cbs_disconnectNotify_1731_0, signal);
|
|
} else {
|
|
QTableView::disconnectNotify(signal);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::doubleClicked(const QModelIndex &index)
|
|
void emitter_QTableView_doubleClicked_2395(const QModelIndex &index)
|
|
{
|
|
emit QTableView::doubleClicked(index);
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::dragEnterEvent(QDragEnterEvent *event)
|
|
void cbs_dragEnterEvent_2109_0(QDragEnterEvent *event)
|
|
{
|
|
QTableView::dragEnterEvent(event);
|
|
}
|
|
|
|
virtual void dragEnterEvent(QDragEnterEvent *event)
|
|
{
|
|
if (cb_dragEnterEvent_2109_0.can_issue()) {
|
|
cb_dragEnterEvent_2109_0.issue<QTableView_Adaptor, QDragEnterEvent *>(&QTableView_Adaptor::cbs_dragEnterEvent_2109_0, event);
|
|
} else {
|
|
QTableView::dragEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::dragLeaveEvent(QDragLeaveEvent *event)
|
|
void cbs_dragLeaveEvent_2092_0(QDragLeaveEvent *event)
|
|
{
|
|
QTableView::dragLeaveEvent(event);
|
|
}
|
|
|
|
virtual void dragLeaveEvent(QDragLeaveEvent *event)
|
|
{
|
|
if (cb_dragLeaveEvent_2092_0.can_issue()) {
|
|
cb_dragLeaveEvent_2092_0.issue<QTableView_Adaptor, QDragLeaveEvent *>(&QTableView_Adaptor::cbs_dragLeaveEvent_2092_0, event);
|
|
} else {
|
|
QTableView::dragLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::dragMoveEvent(QDragMoveEvent *event)
|
|
void cbs_dragMoveEvent_2006_0(QDragMoveEvent *event)
|
|
{
|
|
QTableView::dragMoveEvent(event);
|
|
}
|
|
|
|
virtual void dragMoveEvent(QDragMoveEvent *event)
|
|
{
|
|
if (cb_dragMoveEvent_2006_0.can_issue()) {
|
|
cb_dragMoveEvent_2006_0.issue<QTableView_Adaptor, QDragMoveEvent *>(&QTableView_Adaptor::cbs_dragMoveEvent_2006_0, event);
|
|
} else {
|
|
QTableView::dragMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::dropEvent(QDropEvent *event)
|
|
void cbs_dropEvent_1622_0(QDropEvent *event)
|
|
{
|
|
QTableView::dropEvent(event);
|
|
}
|
|
|
|
virtual void dropEvent(QDropEvent *event)
|
|
{
|
|
if (cb_dropEvent_1622_0.can_issue()) {
|
|
cb_dropEvent_1622_0.issue<QTableView_Adaptor, QDropEvent *>(&QTableView_Adaptor::cbs_dropEvent_1622_0, event);
|
|
} else {
|
|
QTableView::dropEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QTableView::edit(const QModelIndex &index, QAbstractItemView::EditTrigger trigger, QEvent *event)
|
|
bool cbs_edit_6773_0(const QModelIndex &index, const qt_gsi::Converter<QAbstractItemView::EditTrigger>::target_type & trigger, QEvent *event)
|
|
{
|
|
return QTableView::edit(index, qt_gsi::QtToCppAdaptor<QAbstractItemView::EditTrigger>(trigger).cref(), event);
|
|
}
|
|
|
|
virtual bool edit(const QModelIndex &index, QAbstractItemView::EditTrigger trigger, QEvent *event)
|
|
{
|
|
if (cb_edit_6773_0.can_issue()) {
|
|
return cb_edit_6773_0.issue<QTableView_Adaptor, bool, const QModelIndex &, const qt_gsi::Converter<QAbstractItemView::EditTrigger>::target_type &, QEvent *>(&QTableView_Adaptor::cbs_edit_6773_0, index, qt_gsi::CppToQtAdaptor<QAbstractItemView::EditTrigger>(trigger), event);
|
|
} else {
|
|
return QTableView::edit(index, trigger, event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::editorDestroyed(QObject *editor)
|
|
void cbs_editorDestroyed_1302_0(QObject *editor)
|
|
{
|
|
QTableView::editorDestroyed(editor);
|
|
}
|
|
|
|
virtual void editorDestroyed(QObject *editor)
|
|
{
|
|
if (cb_editorDestroyed_1302_0.can_issue()) {
|
|
cb_editorDestroyed_1302_0.issue<QTableView_Adaptor, QObject *>(&QTableView_Adaptor::cbs_editorDestroyed_1302_0, editor);
|
|
} else {
|
|
QTableView::editorDestroyed(editor);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::enabledChange(bool)
|
|
void cbs_enabledChange_864_0(bool arg1)
|
|
{
|
|
QTableView::enabledChange(arg1);
|
|
}
|
|
|
|
virtual void enabledChange(bool arg1)
|
|
{
|
|
if (cb_enabledChange_864_0.can_issue()) {
|
|
cb_enabledChange_864_0.issue<QTableView_Adaptor, bool>(&QTableView_Adaptor::cbs_enabledChange_864_0, arg1);
|
|
} else {
|
|
QTableView::enabledChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::enterEvent(QEvent *)
|
|
void cbs_enterEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QTableView::enterEvent(arg1);
|
|
}
|
|
|
|
virtual void enterEvent(QEvent *arg1)
|
|
{
|
|
if (cb_enterEvent_1217_0.can_issue()) {
|
|
cb_enterEvent_1217_0.issue<QTableView_Adaptor, QEvent *>(&QTableView_Adaptor::cbs_enterEvent_1217_0, arg1);
|
|
} else {
|
|
QTableView::enterEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::entered(const QModelIndex &index)
|
|
void emitter_QTableView_entered_2395(const QModelIndex &index)
|
|
{
|
|
emit QTableView::entered(index);
|
|
}
|
|
|
|
// [adaptor impl] bool QTableView::event(QEvent *event)
|
|
bool cbs_event_1217_0(QEvent *_event)
|
|
{
|
|
return QTableView::event(_event);
|
|
}
|
|
|
|
virtual bool event(QEvent *_event)
|
|
{
|
|
if (cb_event_1217_0.can_issue()) {
|
|
return cb_event_1217_0.issue<QTableView_Adaptor, bool, QEvent *>(&QTableView_Adaptor::cbs_event_1217_0, _event);
|
|
} else {
|
|
return QTableView::event(_event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::focusInEvent(QFocusEvent *event)
|
|
void cbs_focusInEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QTableView::focusInEvent(event);
|
|
}
|
|
|
|
virtual void focusInEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusInEvent_1729_0.can_issue()) {
|
|
cb_focusInEvent_1729_0.issue<QTableView_Adaptor, QFocusEvent *>(&QTableView_Adaptor::cbs_focusInEvent_1729_0, event);
|
|
} else {
|
|
QTableView::focusInEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QTableView::focusNextPrevChild(bool next)
|
|
bool cbs_focusNextPrevChild_864_0(bool next)
|
|
{
|
|
return QTableView::focusNextPrevChild(next);
|
|
}
|
|
|
|
virtual bool focusNextPrevChild(bool next)
|
|
{
|
|
if (cb_focusNextPrevChild_864_0.can_issue()) {
|
|
return cb_focusNextPrevChild_864_0.issue<QTableView_Adaptor, bool, bool>(&QTableView_Adaptor::cbs_focusNextPrevChild_864_0, next);
|
|
} else {
|
|
return QTableView::focusNextPrevChild(next);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::focusOutEvent(QFocusEvent *event)
|
|
void cbs_focusOutEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QTableView::focusOutEvent(event);
|
|
}
|
|
|
|
virtual void focusOutEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusOutEvent_1729_0.can_issue()) {
|
|
cb_focusOutEvent_1729_0.issue<QTableView_Adaptor, QFocusEvent *>(&QTableView_Adaptor::cbs_focusOutEvent_1729_0, event);
|
|
} else {
|
|
QTableView::focusOutEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::fontChange(const QFont &)
|
|
void cbs_fontChange_1801_0(const QFont &arg1)
|
|
{
|
|
QTableView::fontChange(arg1);
|
|
}
|
|
|
|
virtual void fontChange(const QFont &arg1)
|
|
{
|
|
if (cb_fontChange_1801_0.can_issue()) {
|
|
cb_fontChange_1801_0.issue<QTableView_Adaptor, const QFont &>(&QTableView_Adaptor::cbs_fontChange_1801_0, arg1);
|
|
} else {
|
|
QTableView::fontChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::hideEvent(QHideEvent *)
|
|
void cbs_hideEvent_1595_0(QHideEvent *arg1)
|
|
{
|
|
QTableView::hideEvent(arg1);
|
|
}
|
|
|
|
virtual void hideEvent(QHideEvent *arg1)
|
|
{
|
|
if (cb_hideEvent_1595_0.can_issue()) {
|
|
cb_hideEvent_1595_0.issue<QTableView_Adaptor, QHideEvent *>(&QTableView_Adaptor::cbs_hideEvent_1595_0, arg1);
|
|
} else {
|
|
QTableView::hideEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QTableView::horizontalOffset()
|
|
int cbs_horizontalOffset_c0_0() const
|
|
{
|
|
return QTableView::horizontalOffset();
|
|
}
|
|
|
|
virtual int horizontalOffset() const
|
|
{
|
|
if (cb_horizontalOffset_c0_0.can_issue()) {
|
|
return cb_horizontalOffset_c0_0.issue<QTableView_Adaptor, int>(&QTableView_Adaptor::cbs_horizontalOffset_c0_0);
|
|
} else {
|
|
return QTableView::horizontalOffset();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::horizontalScrollbarAction(int action)
|
|
void cbs_horizontalScrollbarAction_767_0(int action)
|
|
{
|
|
QTableView::horizontalScrollbarAction(action);
|
|
}
|
|
|
|
virtual void horizontalScrollbarAction(int action)
|
|
{
|
|
if (cb_horizontalScrollbarAction_767_0.can_issue()) {
|
|
cb_horizontalScrollbarAction_767_0.issue<QTableView_Adaptor, int>(&QTableView_Adaptor::cbs_horizontalScrollbarAction_767_0, action);
|
|
} else {
|
|
QTableView::horizontalScrollbarAction(action);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::horizontalScrollbarValueChanged(int value)
|
|
void cbs_horizontalScrollbarValueChanged_767_0(int value)
|
|
{
|
|
QTableView::horizontalScrollbarValueChanged(value);
|
|
}
|
|
|
|
virtual void horizontalScrollbarValueChanged(int value)
|
|
{
|
|
if (cb_horizontalScrollbarValueChanged_767_0.can_issue()) {
|
|
cb_horizontalScrollbarValueChanged_767_0.issue<QTableView_Adaptor, int>(&QTableView_Adaptor::cbs_horizontalScrollbarValueChanged_767_0, value);
|
|
} else {
|
|
QTableView::horizontalScrollbarValueChanged(value);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::inputMethodEvent(QInputMethodEvent *event)
|
|
void cbs_inputMethodEvent_2354_0(QInputMethodEvent *event)
|
|
{
|
|
QTableView::inputMethodEvent(event);
|
|
}
|
|
|
|
virtual void inputMethodEvent(QInputMethodEvent *event)
|
|
{
|
|
if (cb_inputMethodEvent_2354_0.can_issue()) {
|
|
cb_inputMethodEvent_2354_0.issue<QTableView_Adaptor, QInputMethodEvent *>(&QTableView_Adaptor::cbs_inputMethodEvent_2354_0, event);
|
|
} else {
|
|
QTableView::inputMethodEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QTableView::isIndexHidden(const QModelIndex &index)
|
|
bool cbs_isIndexHidden_c2395_0(const QModelIndex &index) const
|
|
{
|
|
return QTableView::isIndexHidden(index);
|
|
}
|
|
|
|
virtual bool isIndexHidden(const QModelIndex &index) const
|
|
{
|
|
if (cb_isIndexHidden_c2395_0.can_issue()) {
|
|
return cb_isIndexHidden_c2395_0.issue<QTableView_Adaptor, bool, const QModelIndex &>(&QTableView_Adaptor::cbs_isIndexHidden_c2395_0, index);
|
|
} else {
|
|
return QTableView::isIndexHidden(index);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::keyPressEvent(QKeyEvent *event)
|
|
void cbs_keyPressEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QTableView::keyPressEvent(event);
|
|
}
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyPressEvent_1514_0.can_issue()) {
|
|
cb_keyPressEvent_1514_0.issue<QTableView_Adaptor, QKeyEvent *>(&QTableView_Adaptor::cbs_keyPressEvent_1514_0, event);
|
|
} else {
|
|
QTableView::keyPressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::keyReleaseEvent(QKeyEvent *)
|
|
void cbs_keyReleaseEvent_1514_0(QKeyEvent *arg1)
|
|
{
|
|
QTableView::keyReleaseEvent(arg1);
|
|
}
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *arg1)
|
|
{
|
|
if (cb_keyReleaseEvent_1514_0.can_issue()) {
|
|
cb_keyReleaseEvent_1514_0.issue<QTableView_Adaptor, QKeyEvent *>(&QTableView_Adaptor::cbs_keyReleaseEvent_1514_0, arg1);
|
|
} else {
|
|
QTableView::keyReleaseEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::languageChange()
|
|
void cbs_languageChange_0_0()
|
|
{
|
|
QTableView::languageChange();
|
|
}
|
|
|
|
virtual void languageChange()
|
|
{
|
|
if (cb_languageChange_0_0.can_issue()) {
|
|
cb_languageChange_0_0.issue<QTableView_Adaptor>(&QTableView_Adaptor::cbs_languageChange_0_0);
|
|
} else {
|
|
QTableView::languageChange();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::leaveEvent(QEvent *)
|
|
void cbs_leaveEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QTableView::leaveEvent(arg1);
|
|
}
|
|
|
|
virtual void leaveEvent(QEvent *arg1)
|
|
{
|
|
if (cb_leaveEvent_1217_0.can_issue()) {
|
|
cb_leaveEvent_1217_0.issue<QTableView_Adaptor, QEvent *>(&QTableView_Adaptor::cbs_leaveEvent_1217_0, arg1);
|
|
} else {
|
|
QTableView::leaveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QTableView::metric(QPaintDevice::PaintDeviceMetric)
|
|
int cbs_metric_c3445_0(const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & arg1) const
|
|
{
|
|
return QTableView::metric(qt_gsi::QtToCppAdaptor<QPaintDevice::PaintDeviceMetric>(arg1).cref());
|
|
}
|
|
|
|
virtual int metric(QPaintDevice::PaintDeviceMetric arg1) const
|
|
{
|
|
if (cb_metric_c3445_0.can_issue()) {
|
|
return cb_metric_c3445_0.issue<QTableView_Adaptor, int, const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type &>(&QTableView_Adaptor::cbs_metric_c3445_0, qt_gsi::CppToQtAdaptor<QPaintDevice::PaintDeviceMetric>(arg1));
|
|
} else {
|
|
return QTableView::metric(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::mouseDoubleClickEvent(QMouseEvent *event)
|
|
void cbs_mouseDoubleClickEvent_1738_0(QMouseEvent *event)
|
|
{
|
|
QTableView::mouseDoubleClickEvent(event);
|
|
}
|
|
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *event)
|
|
{
|
|
if (cb_mouseDoubleClickEvent_1738_0.can_issue()) {
|
|
cb_mouseDoubleClickEvent_1738_0.issue<QTableView_Adaptor, QMouseEvent *>(&QTableView_Adaptor::cbs_mouseDoubleClickEvent_1738_0, event);
|
|
} else {
|
|
QTableView::mouseDoubleClickEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::mouseMoveEvent(QMouseEvent *event)
|
|
void cbs_mouseMoveEvent_1738_0(QMouseEvent *event)
|
|
{
|
|
QTableView::mouseMoveEvent(event);
|
|
}
|
|
|
|
virtual void mouseMoveEvent(QMouseEvent *event)
|
|
{
|
|
if (cb_mouseMoveEvent_1738_0.can_issue()) {
|
|
cb_mouseMoveEvent_1738_0.issue<QTableView_Adaptor, QMouseEvent *>(&QTableView_Adaptor::cbs_mouseMoveEvent_1738_0, event);
|
|
} else {
|
|
QTableView::mouseMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::mousePressEvent(QMouseEvent *event)
|
|
void cbs_mousePressEvent_1738_0(QMouseEvent *event)
|
|
{
|
|
QTableView::mousePressEvent(event);
|
|
}
|
|
|
|
virtual void mousePressEvent(QMouseEvent *event)
|
|
{
|
|
if (cb_mousePressEvent_1738_0.can_issue()) {
|
|
cb_mousePressEvent_1738_0.issue<QTableView_Adaptor, QMouseEvent *>(&QTableView_Adaptor::cbs_mousePressEvent_1738_0, event);
|
|
} else {
|
|
QTableView::mousePressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::mouseReleaseEvent(QMouseEvent *event)
|
|
void cbs_mouseReleaseEvent_1738_0(QMouseEvent *event)
|
|
{
|
|
QTableView::mouseReleaseEvent(event);
|
|
}
|
|
|
|
virtual void mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
if (cb_mouseReleaseEvent_1738_0.can_issue()) {
|
|
cb_mouseReleaseEvent_1738_0.issue<QTableView_Adaptor, QMouseEvent *>(&QTableView_Adaptor::cbs_mouseReleaseEvent_1738_0, event);
|
|
} else {
|
|
QTableView::mouseReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QModelIndex QTableView::moveCursor(QAbstractItemView::CursorAction cursorAction, QFlags<Qt::KeyboardModifier> modifiers)
|
|
QModelIndex cbs_moveCursor_6476_0(unsigned int cursorAction, QFlags<Qt::KeyboardModifier> modifiers)
|
|
{
|
|
return QTableView::moveCursor(QAbstractItemView::CursorAction(cursorAction), modifiers);
|
|
}
|
|
|
|
virtual QModelIndex moveCursor(QAbstractItemView::CursorAction cursorAction, QFlags<Qt::KeyboardModifier> modifiers)
|
|
{
|
|
if (cb_moveCursor_6476_0.can_issue()) {
|
|
return cb_moveCursor_6476_0.issue<QTableView_Adaptor, QModelIndex, unsigned int, QFlags<Qt::KeyboardModifier> >(&QTableView_Adaptor::cbs_moveCursor_6476_0, (unsigned int)(cursorAction), modifiers);
|
|
} else {
|
|
return QTableView::moveCursor(cursorAction, modifiers);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::moveEvent(QMoveEvent *)
|
|
void cbs_moveEvent_1624_0(QMoveEvent *arg1)
|
|
{
|
|
QTableView::moveEvent(arg1);
|
|
}
|
|
|
|
virtual void moveEvent(QMoveEvent *arg1)
|
|
{
|
|
if (cb_moveEvent_1624_0.can_issue()) {
|
|
cb_moveEvent_1624_0.issue<QTableView_Adaptor, QMoveEvent *>(&QTableView_Adaptor::cbs_moveEvent_1624_0, arg1);
|
|
} else {
|
|
QTableView::moveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::paintEvent(QPaintEvent *e)
|
|
void cbs_paintEvent_1725_0(QPaintEvent *e)
|
|
{
|
|
QTableView::paintEvent(e);
|
|
}
|
|
|
|
virtual void paintEvent(QPaintEvent *e)
|
|
{
|
|
if (cb_paintEvent_1725_0.can_issue()) {
|
|
cb_paintEvent_1725_0.issue<QTableView_Adaptor, QPaintEvent *>(&QTableView_Adaptor::cbs_paintEvent_1725_0, e);
|
|
} else {
|
|
QTableView::paintEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::paletteChange(const QPalette &)
|
|
void cbs_paletteChange_2113_0(const QPalette &arg1)
|
|
{
|
|
QTableView::paletteChange(arg1);
|
|
}
|
|
|
|
virtual void paletteChange(const QPalette &arg1)
|
|
{
|
|
if (cb_paletteChange_2113_0.can_issue()) {
|
|
cb_paletteChange_2113_0.issue<QTableView_Adaptor, const QPalette &>(&QTableView_Adaptor::cbs_paletteChange_2113_0, arg1);
|
|
} else {
|
|
QTableView::paletteChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::pressed(const QModelIndex &index)
|
|
void emitter_QTableView_pressed_2395(const QModelIndex &index)
|
|
{
|
|
emit QTableView::pressed(index);
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::resizeEvent(QResizeEvent *event)
|
|
void cbs_resizeEvent_1843_0(QResizeEvent *event)
|
|
{
|
|
QTableView::resizeEvent(event);
|
|
}
|
|
|
|
virtual void resizeEvent(QResizeEvent *event)
|
|
{
|
|
if (cb_resizeEvent_1843_0.can_issue()) {
|
|
cb_resizeEvent_1843_0.issue<QTableView_Adaptor, QResizeEvent *>(&QTableView_Adaptor::cbs_resizeEvent_1843_0, event);
|
|
} else {
|
|
QTableView::resizeEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
|
|
void cbs_rowsAboutToBeRemoved_3713_0(const QModelIndex &parent, int start, int end)
|
|
{
|
|
QTableView::rowsAboutToBeRemoved(parent, start, end);
|
|
}
|
|
|
|
virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
|
|
{
|
|
if (cb_rowsAboutToBeRemoved_3713_0.can_issue()) {
|
|
cb_rowsAboutToBeRemoved_3713_0.issue<QTableView_Adaptor, const QModelIndex &, int, int>(&QTableView_Adaptor::cbs_rowsAboutToBeRemoved_3713_0, parent, start, end);
|
|
} else {
|
|
QTableView::rowsAboutToBeRemoved(parent, start, end);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::rowsInserted(const QModelIndex &parent, int start, int end)
|
|
void cbs_rowsInserted_3713_0(const QModelIndex &parent, int start, int end)
|
|
{
|
|
QTableView::rowsInserted(parent, start, end);
|
|
}
|
|
|
|
virtual void rowsInserted(const QModelIndex &parent, int start, int end)
|
|
{
|
|
if (cb_rowsInserted_3713_0.can_issue()) {
|
|
cb_rowsInserted_3713_0.issue<QTableView_Adaptor, const QModelIndex &, int, int>(&QTableView_Adaptor::cbs_rowsInserted_3713_0, parent, start, end);
|
|
} else {
|
|
QTableView::rowsInserted(parent, start, end);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::scrollContentsBy(int dx, int dy)
|
|
void cbs_scrollContentsBy_1426_0(int dx, int dy)
|
|
{
|
|
QTableView::scrollContentsBy(dx, dy);
|
|
}
|
|
|
|
virtual void scrollContentsBy(int dx, int dy)
|
|
{
|
|
if (cb_scrollContentsBy_1426_0.can_issue()) {
|
|
cb_scrollContentsBy_1426_0.issue<QTableView_Adaptor, int, int>(&QTableView_Adaptor::cbs_scrollContentsBy_1426_0, dx, dy);
|
|
} else {
|
|
QTableView::scrollContentsBy(dx, dy);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QList<QModelIndex> QTableView::selectedIndexes()
|
|
QList<QModelIndex> cbs_selectedIndexes_c0_0() const
|
|
{
|
|
return QTableView::selectedIndexes();
|
|
}
|
|
|
|
virtual QList<QModelIndex> selectedIndexes() const
|
|
{
|
|
if (cb_selectedIndexes_c0_0.can_issue()) {
|
|
return cb_selectedIndexes_c0_0.issue<QTableView_Adaptor, QList<QModelIndex> >(&QTableView_Adaptor::cbs_selectedIndexes_c0_0);
|
|
} else {
|
|
return QTableView::selectedIndexes();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
|
|
void cbs_selectionChanged_5346_0(const QItemSelection &selected, const QItemSelection &deselected)
|
|
{
|
|
QTableView::selectionChanged(selected, deselected);
|
|
}
|
|
|
|
virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
|
|
{
|
|
if (cb_selectionChanged_5346_0.can_issue()) {
|
|
cb_selectionChanged_5346_0.issue<QTableView_Adaptor, const QItemSelection &, const QItemSelection &>(&QTableView_Adaptor::cbs_selectionChanged_5346_0, selected, deselected);
|
|
} else {
|
|
QTableView::selectionChanged(selected, deselected);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QFlags<QItemSelectionModel::SelectionFlag> QTableView::selectionCommand(const QModelIndex &index, const QEvent *event)
|
|
QFlags<QItemSelectionModel::SelectionFlag> cbs_selectionCommand_c4199_1(const QModelIndex &index, const QEvent *event) const
|
|
{
|
|
return QTableView::selectionCommand(index, event);
|
|
}
|
|
|
|
virtual QFlags<QItemSelectionModel::SelectionFlag> selectionCommand(const QModelIndex &index, const QEvent *event) const
|
|
{
|
|
if (cb_selectionCommand_c4199_1.can_issue()) {
|
|
return cb_selectionCommand_c4199_1.issue<QTableView_Adaptor, QFlags<QItemSelectionModel::SelectionFlag>, const QModelIndex &, const QEvent *>(&QTableView_Adaptor::cbs_selectionCommand_c4199_1, index, event);
|
|
} else {
|
|
return QTableView::selectionCommand(index, event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command)
|
|
void cbs_setSelection_6155_0(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command)
|
|
{
|
|
QTableView::setSelection(rect, command);
|
|
}
|
|
|
|
virtual void setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command)
|
|
{
|
|
if (cb_setSelection_6155_0.can_issue()) {
|
|
cb_setSelection_6155_0.issue<QTableView_Adaptor, const QRect &, QFlags<QItemSelectionModel::SelectionFlag> >(&QTableView_Adaptor::cbs_setSelection_6155_0, rect, command);
|
|
} else {
|
|
QTableView::setSelection(rect, command);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::showEvent(QShowEvent *)
|
|
void cbs_showEvent_1634_0(QShowEvent *arg1)
|
|
{
|
|
QTableView::showEvent(arg1);
|
|
}
|
|
|
|
virtual void showEvent(QShowEvent *arg1)
|
|
{
|
|
if (cb_showEvent_1634_0.can_issue()) {
|
|
cb_showEvent_1634_0.issue<QTableView_Adaptor, QShowEvent *>(&QTableView_Adaptor::cbs_showEvent_1634_0, arg1);
|
|
} else {
|
|
QTableView::showEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QTableView::sizeHintForColumn(int column)
|
|
int cbs_sizeHintForColumn_c767_0(int column) const
|
|
{
|
|
return QTableView::sizeHintForColumn(column);
|
|
}
|
|
|
|
virtual int sizeHintForColumn(int column) const
|
|
{
|
|
if (cb_sizeHintForColumn_c767_0.can_issue()) {
|
|
return cb_sizeHintForColumn_c767_0.issue<QTableView_Adaptor, int, int>(&QTableView_Adaptor::cbs_sizeHintForColumn_c767_0, column);
|
|
} else {
|
|
return QTableView::sizeHintForColumn(column);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QTableView::sizeHintForRow(int row)
|
|
int cbs_sizeHintForRow_c767_0(int row) const
|
|
{
|
|
return QTableView::sizeHintForRow(row);
|
|
}
|
|
|
|
virtual int sizeHintForRow(int row) const
|
|
{
|
|
if (cb_sizeHintForRow_c767_0.can_issue()) {
|
|
return cb_sizeHintForRow_c767_0.issue<QTableView_Adaptor, int, int>(&QTableView_Adaptor::cbs_sizeHintForRow_c767_0, row);
|
|
} else {
|
|
return QTableView::sizeHintForRow(row);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::startDrag(QFlags<Qt::DropAction> supportedActions)
|
|
void cbs_startDrag_2456_0(QFlags<Qt::DropAction> supportedActions)
|
|
{
|
|
QTableView::startDrag(supportedActions);
|
|
}
|
|
|
|
virtual void startDrag(QFlags<Qt::DropAction> supportedActions)
|
|
{
|
|
if (cb_startDrag_2456_0.can_issue()) {
|
|
cb_startDrag_2456_0.issue<QTableView_Adaptor, QFlags<Qt::DropAction> >(&QTableView_Adaptor::cbs_startDrag_2456_0, supportedActions);
|
|
} else {
|
|
QTableView::startDrag(supportedActions);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::styleChange(QStyle &)
|
|
void cbs_styleChange_1228_0(QStyle &arg1)
|
|
{
|
|
QTableView::styleChange(arg1);
|
|
}
|
|
|
|
virtual void styleChange(QStyle &arg1)
|
|
{
|
|
if (cb_styleChange_1228_0.can_issue()) {
|
|
cb_styleChange_1228_0.issue<QTableView_Adaptor, QStyle &>(&QTableView_Adaptor::cbs_styleChange_1228_0, arg1);
|
|
} else {
|
|
QTableView::styleChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::tabletEvent(QTabletEvent *)
|
|
void cbs_tabletEvent_1821_0(QTabletEvent *arg1)
|
|
{
|
|
QTableView::tabletEvent(arg1);
|
|
}
|
|
|
|
virtual void tabletEvent(QTabletEvent *arg1)
|
|
{
|
|
if (cb_tabletEvent_1821_0.can_issue()) {
|
|
cb_tabletEvent_1821_0.issue<QTableView_Adaptor, QTabletEvent *>(&QTableView_Adaptor::cbs_tabletEvent_1821_0, arg1);
|
|
} else {
|
|
QTableView::tabletEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::timerEvent(QTimerEvent *event)
|
|
void cbs_timerEvent_1730_0(QTimerEvent *event)
|
|
{
|
|
QTableView::timerEvent(event);
|
|
}
|
|
|
|
virtual void timerEvent(QTimerEvent *event)
|
|
{
|
|
if (cb_timerEvent_1730_0.can_issue()) {
|
|
cb_timerEvent_1730_0.issue<QTableView_Adaptor, QTimerEvent *>(&QTableView_Adaptor::cbs_timerEvent_1730_0, event);
|
|
} else {
|
|
QTableView::timerEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::updateEditorData()
|
|
void cbs_updateEditorData_0_0()
|
|
{
|
|
QTableView::updateEditorData();
|
|
}
|
|
|
|
virtual void updateEditorData()
|
|
{
|
|
if (cb_updateEditorData_0_0.can_issue()) {
|
|
cb_updateEditorData_0_0.issue<QTableView_Adaptor>(&QTableView_Adaptor::cbs_updateEditorData_0_0);
|
|
} else {
|
|
QTableView::updateEditorData();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::updateEditorGeometries()
|
|
void cbs_updateEditorGeometries_0_0()
|
|
{
|
|
QTableView::updateEditorGeometries();
|
|
}
|
|
|
|
virtual void updateEditorGeometries()
|
|
{
|
|
if (cb_updateEditorGeometries_0_0.can_issue()) {
|
|
cb_updateEditorGeometries_0_0.issue<QTableView_Adaptor>(&QTableView_Adaptor::cbs_updateEditorGeometries_0_0);
|
|
} else {
|
|
QTableView::updateEditorGeometries();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::updateGeometries()
|
|
void cbs_updateGeometries_0_0()
|
|
{
|
|
QTableView::updateGeometries();
|
|
}
|
|
|
|
virtual void updateGeometries()
|
|
{
|
|
if (cb_updateGeometries_0_0.can_issue()) {
|
|
cb_updateGeometries_0_0.issue<QTableView_Adaptor>(&QTableView_Adaptor::cbs_updateGeometries_0_0);
|
|
} else {
|
|
QTableView::updateGeometries();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QTableView::verticalOffset()
|
|
int cbs_verticalOffset_c0_0() const
|
|
{
|
|
return QTableView::verticalOffset();
|
|
}
|
|
|
|
virtual int verticalOffset() const
|
|
{
|
|
if (cb_verticalOffset_c0_0.can_issue()) {
|
|
return cb_verticalOffset_c0_0.issue<QTableView_Adaptor, int>(&QTableView_Adaptor::cbs_verticalOffset_c0_0);
|
|
} else {
|
|
return QTableView::verticalOffset();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::verticalScrollbarAction(int action)
|
|
void cbs_verticalScrollbarAction_767_0(int action)
|
|
{
|
|
QTableView::verticalScrollbarAction(action);
|
|
}
|
|
|
|
virtual void verticalScrollbarAction(int action)
|
|
{
|
|
if (cb_verticalScrollbarAction_767_0.can_issue()) {
|
|
cb_verticalScrollbarAction_767_0.issue<QTableView_Adaptor, int>(&QTableView_Adaptor::cbs_verticalScrollbarAction_767_0, action);
|
|
} else {
|
|
QTableView::verticalScrollbarAction(action);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::verticalScrollbarValueChanged(int value)
|
|
void cbs_verticalScrollbarValueChanged_767_0(int value)
|
|
{
|
|
QTableView::verticalScrollbarValueChanged(value);
|
|
}
|
|
|
|
virtual void verticalScrollbarValueChanged(int value)
|
|
{
|
|
if (cb_verticalScrollbarValueChanged_767_0.can_issue()) {
|
|
cb_verticalScrollbarValueChanged_767_0.issue<QTableView_Adaptor, int>(&QTableView_Adaptor::cbs_verticalScrollbarValueChanged_767_0, value);
|
|
} else {
|
|
QTableView::verticalScrollbarValueChanged(value);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QStyleOptionViewItem QTableView::viewOptions()
|
|
QStyleOptionViewItem cbs_viewOptions_c0_0() const
|
|
{
|
|
return QTableView::viewOptions();
|
|
}
|
|
|
|
virtual QStyleOptionViewItem viewOptions() const
|
|
{
|
|
if (cb_viewOptions_c0_0.can_issue()) {
|
|
return cb_viewOptions_c0_0.issue<QTableView_Adaptor, QStyleOptionViewItem>(&QTableView_Adaptor::cbs_viewOptions_c0_0);
|
|
} else {
|
|
return QTableView::viewOptions();
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QTableView::viewportEntered()
|
|
void emitter_QTableView_viewportEntered_0()
|
|
{
|
|
emit QTableView::viewportEntered();
|
|
}
|
|
|
|
// [adaptor impl] bool QTableView::viewportEvent(QEvent *event)
|
|
bool cbs_viewportEvent_1217_0(QEvent *event)
|
|
{
|
|
return QTableView::viewportEvent(event);
|
|
}
|
|
|
|
virtual bool viewportEvent(QEvent *event)
|
|
{
|
|
if (cb_viewportEvent_1217_0.can_issue()) {
|
|
return cb_viewportEvent_1217_0.issue<QTableView_Adaptor, bool, QEvent *>(&QTableView_Adaptor::cbs_viewportEvent_1217_0, event);
|
|
} else {
|
|
return QTableView::viewportEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRegion QTableView::visualRegionForSelection(const QItemSelection &selection)
|
|
QRegion cbs_visualRegionForSelection_c2727_0(const QItemSelection &selection) const
|
|
{
|
|
return QTableView::visualRegionForSelection(selection);
|
|
}
|
|
|
|
virtual QRegion visualRegionForSelection(const QItemSelection &selection) const
|
|
{
|
|
if (cb_visualRegionForSelection_c2727_0.can_issue()) {
|
|
return cb_visualRegionForSelection_c2727_0.issue<QTableView_Adaptor, QRegion, const QItemSelection &>(&QTableView_Adaptor::cbs_visualRegionForSelection_c2727_0, selection);
|
|
} else {
|
|
return QTableView::visualRegionForSelection(selection);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::wheelEvent(QWheelEvent *)
|
|
void cbs_wheelEvent_1718_0(QWheelEvent *arg1)
|
|
{
|
|
QTableView::wheelEvent(arg1);
|
|
}
|
|
|
|
virtual void wheelEvent(QWheelEvent *arg1)
|
|
{
|
|
if (cb_wheelEvent_1718_0.can_issue()) {
|
|
cb_wheelEvent_1718_0.issue<QTableView_Adaptor, QWheelEvent *>(&QTableView_Adaptor::cbs_wheelEvent_1718_0, arg1);
|
|
} else {
|
|
QTableView::wheelEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QTableView::windowActivationChange(bool)
|
|
void cbs_windowActivationChange_864_0(bool arg1)
|
|
{
|
|
QTableView::windowActivationChange(arg1);
|
|
}
|
|
|
|
virtual void windowActivationChange(bool arg1)
|
|
{
|
|
if (cb_windowActivationChange_864_0.can_issue()) {
|
|
cb_windowActivationChange_864_0.issue<QTableView_Adaptor, bool>(&QTableView_Adaptor::cbs_windowActivationChange_864_0, arg1);
|
|
} else {
|
|
QTableView::windowActivationChange(arg1);
|
|
}
|
|
}
|
|
|
|
gsi::Callback cb_doItemsLayout_0_0;
|
|
gsi::Callback cb_eventFilter_2411_0;
|
|
gsi::Callback cb_heightForWidth_c767_0;
|
|
gsi::Callback cb_indexAt_c1916_0;
|
|
gsi::Callback cb_inputMethodQuery_c2420_0;
|
|
gsi::Callback cb_keyboardSearch_2025_0;
|
|
gsi::Callback cb_minimumSizeHint_c0_0;
|
|
gsi::Callback cb_paintEngine_c0_0;
|
|
gsi::Callback cb_reset_0_0;
|
|
gsi::Callback cb_scrollTo_5576_1;
|
|
gsi::Callback cb_selectAll_0_0;
|
|
gsi::Callback cb_setModel_2419_0;
|
|
gsi::Callback cb_setRootIndex_2395_0;
|
|
gsi::Callback cb_setSelectionModel_2533_0;
|
|
gsi::Callback cb_setVisible_864_0;
|
|
gsi::Callback cb_sizeHint_c0_0;
|
|
gsi::Callback cb_visualRect_c2395_0;
|
|
gsi::Callback cb_actionEvent_1823_0;
|
|
gsi::Callback cb_changeEvent_1217_0;
|
|
gsi::Callback cb_childEvent_1701_0;
|
|
gsi::Callback cb_closeEditor_4926_0;
|
|
gsi::Callback cb_closeEvent_1719_0;
|
|
gsi::Callback cb_commitData_1315_0;
|
|
gsi::Callback cb_contextMenuEvent_2363_0;
|
|
gsi::Callback cb_currentChanged_4682_0;
|
|
gsi::Callback cb_customEvent_1217_0;
|
|
gsi::Callback cb_dataChanged_4682_0;
|
|
gsi::Callback cb_disconnectNotify_1731_0;
|
|
gsi::Callback cb_dragEnterEvent_2109_0;
|
|
gsi::Callback cb_dragLeaveEvent_2092_0;
|
|
gsi::Callback cb_dragMoveEvent_2006_0;
|
|
gsi::Callback cb_dropEvent_1622_0;
|
|
gsi::Callback cb_edit_6773_0;
|
|
gsi::Callback cb_editorDestroyed_1302_0;
|
|
gsi::Callback cb_enabledChange_864_0;
|
|
gsi::Callback cb_enterEvent_1217_0;
|
|
gsi::Callback cb_event_1217_0;
|
|
gsi::Callback cb_focusInEvent_1729_0;
|
|
gsi::Callback cb_focusNextPrevChild_864_0;
|
|
gsi::Callback cb_focusOutEvent_1729_0;
|
|
gsi::Callback cb_fontChange_1801_0;
|
|
gsi::Callback cb_hideEvent_1595_0;
|
|
gsi::Callback cb_horizontalOffset_c0_0;
|
|
gsi::Callback cb_horizontalScrollbarAction_767_0;
|
|
gsi::Callback cb_horizontalScrollbarValueChanged_767_0;
|
|
gsi::Callback cb_inputMethodEvent_2354_0;
|
|
gsi::Callback cb_isIndexHidden_c2395_0;
|
|
gsi::Callback cb_keyPressEvent_1514_0;
|
|
gsi::Callback cb_keyReleaseEvent_1514_0;
|
|
gsi::Callback cb_languageChange_0_0;
|
|
gsi::Callback cb_leaveEvent_1217_0;
|
|
gsi::Callback cb_metric_c3445_0;
|
|
gsi::Callback cb_mouseDoubleClickEvent_1738_0;
|
|
gsi::Callback cb_mouseMoveEvent_1738_0;
|
|
gsi::Callback cb_mousePressEvent_1738_0;
|
|
gsi::Callback cb_mouseReleaseEvent_1738_0;
|
|
gsi::Callback cb_moveCursor_6476_0;
|
|
gsi::Callback cb_moveEvent_1624_0;
|
|
gsi::Callback cb_paintEvent_1725_0;
|
|
gsi::Callback cb_paletteChange_2113_0;
|
|
gsi::Callback cb_resizeEvent_1843_0;
|
|
gsi::Callback cb_rowsAboutToBeRemoved_3713_0;
|
|
gsi::Callback cb_rowsInserted_3713_0;
|
|
gsi::Callback cb_scrollContentsBy_1426_0;
|
|
gsi::Callback cb_selectedIndexes_c0_0;
|
|
gsi::Callback cb_selectionChanged_5346_0;
|
|
gsi::Callback cb_selectionCommand_c4199_1;
|
|
gsi::Callback cb_setSelection_6155_0;
|
|
gsi::Callback cb_showEvent_1634_0;
|
|
gsi::Callback cb_sizeHintForColumn_c767_0;
|
|
gsi::Callback cb_sizeHintForRow_c767_0;
|
|
gsi::Callback cb_startDrag_2456_0;
|
|
gsi::Callback cb_styleChange_1228_0;
|
|
gsi::Callback cb_tabletEvent_1821_0;
|
|
gsi::Callback cb_timerEvent_1730_0;
|
|
gsi::Callback cb_updateEditorData_0_0;
|
|
gsi::Callback cb_updateEditorGeometries_0_0;
|
|
gsi::Callback cb_updateGeometries_0_0;
|
|
gsi::Callback cb_verticalOffset_c0_0;
|
|
gsi::Callback cb_verticalScrollbarAction_767_0;
|
|
gsi::Callback cb_verticalScrollbarValueChanged_767_0;
|
|
gsi::Callback cb_viewOptions_c0_0;
|
|
gsi::Callback cb_viewportEvent_1217_0;
|
|
gsi::Callback cb_visualRegionForSelection_c2727_0;
|
|
gsi::Callback cb_wheelEvent_1718_0;
|
|
gsi::Callback cb_windowActivationChange_864_0;
|
|
};
|
|
|
|
QTableView_Adaptor::~QTableView_Adaptor() { }
|
|
|
|
// Constructor QTableView::QTableView(QWidget *parent) (adaptor class)
|
|
|
|
static void _init_ctor_QTableView_Adaptor_1315 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return_new<QTableView_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QTableView_Adaptor_1315 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWidget *arg1 = args ? args.read<QWidget * > (heap) : (QWidget *)(0);
|
|
ret.write<QTableView_Adaptor *> (new QTableView_Adaptor (arg1));
|
|
}
|
|
|
|
|
|
// void QTableView::actionEvent(QActionEvent *)
|
|
|
|
static void _init_cbs_actionEvent_1823_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QActionEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QActionEvent *arg1 = args.read<QActionEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_actionEvent_1823_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_actionEvent_1823_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QTableView::activated(const QModelIndex &index)
|
|
|
|
static void _init_emitter_activated_2395 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_activated_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);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_activated_2395 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::changeEvent(QEvent *)
|
|
|
|
static void _init_cbs_changeEvent_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_changeEvent_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);
|
|
((QTableView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_changeEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_changeEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::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);
|
|
((QTableView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_childEvent_1701_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QTableView::clicked(const QModelIndex &index)
|
|
|
|
static void _init_emitter_clicked_2395 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_clicked_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);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_clicked_2395 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)
|
|
|
|
static void _init_cbs_closeEditor_4926_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("editor");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("hint");
|
|
decl->add_arg<const qt_gsi::Converter<QAbstractItemDelegate::EndEditHint>::target_type & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWidget *arg1 = args.read<QWidget * > (heap);
|
|
const qt_gsi::Converter<QAbstractItemDelegate::EndEditHint>::target_type & arg2 = args.read<const qt_gsi::Converter<QAbstractItemDelegate::EndEditHint>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_closeEditor_4926_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_closeEditor_4926_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::closeEvent(QCloseEvent *)
|
|
|
|
static void _init_cbs_closeEvent_1719_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QCloseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QCloseEvent *arg1 = args.read<QCloseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_closeEvent_1719_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_closeEvent_1719_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::columnCountChanged(int oldCount, int newCount)
|
|
|
|
static void _init_fp_columnCountChanged_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("oldCount");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("newCount");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_columnCountChanged_1426 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_columnCountChanged_1426 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::columnMoved(int column, int oldIndex, int newIndex)
|
|
|
|
static void _init_fp_columnMoved_2085 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("oldIndex");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("newIndex");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_columnMoved_2085 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_columnMoved_2085 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::columnResized(int column, int oldWidth, int newWidth)
|
|
|
|
static void _init_fp_columnResized_2085 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("oldWidth");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("newWidth");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_columnResized_2085 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_columnResized_2085 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// void QTableView::commitData(QWidget *editor)
|
|
|
|
static void _init_cbs_commitData_1315_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("editor");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWidget *arg1 = args.read<QWidget * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_commitData_1315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_commitData_1315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::contextMenuEvent(QContextMenuEvent *)
|
|
|
|
static void _init_cbs_contextMenuEvent_2363_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QContextMenuEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QContextMenuEvent *arg1 = args.read<QContextMenuEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_contextMenuEvent_2363_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_contextMenuEvent_2363_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::create(WId, bool initializeWindow, bool destroyOldWindow)
|
|
|
|
static void _init_fp_create_2208 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1", true, "0");
|
|
decl->add_arg<const qt_gsi::Converter<WId>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("initializeWindow", true, "true");
|
|
decl->add_arg<bool > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("destroyOldWindow", true, "true");
|
|
decl->add_arg<bool > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<WId>::target_type & arg1 = args ? args.read<const qt_gsi::Converter<WId>::target_type & > (heap) : (const qt_gsi::Converter<WId>::target_type &)(qt_gsi::CppToQtReadAdaptor<WId>(heap, 0));
|
|
bool arg2 = args ? args.read<bool > (heap) : (bool)(true);
|
|
bool arg3 = args ? args.read<bool > (heap) : (bool)(true);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_create_2208 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// void QTableView::currentChanged(const QModelIndex ¤t, const QModelIndex &previous)
|
|
|
|
static void _init_cbs_currentChanged_4682_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("current");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("previous");
|
|
decl->add_arg<const QModelIndex & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_currentChanged_4682_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 QModelIndex &arg2 = args.read<const QModelIndex & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_currentChanged_4682_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_currentChanged_4682_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QTableView::customContextMenuRequested(const QPoint &pos)
|
|
|
|
static void _init_emitter_customContextMenuRequested_1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pos");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_customContextMenuRequested_1916 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::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);
|
|
((QTableView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_customEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
|
|
static void _init_cbs_dataChanged_4682_0 (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_cbs_dataChanged_4682_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 QModelIndex &arg2 = args.read<const QModelIndex & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_dataChanged_4682_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_dataChanged_4682_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::destroy(bool destroyWindow, bool destroySubWindows)
|
|
|
|
static void _init_fp_destroy_1620 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("destroyWindow", true, "true");
|
|
decl->add_arg<bool > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("destroySubWindows", true, "true");
|
|
decl->add_arg<bool > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args ? args.read<bool > (heap) : (bool)(true);
|
|
bool arg2 = args ? args.read<bool > (heap) : (bool)(true);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_destroy_1620 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// emitter void QTableView::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);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_destroyed_1302 (arg1);
|
|
}
|
|
|
|
|
|
// exposed QPoint QTableView::dirtyRegionOffset()
|
|
|
|
static void _init_fp_dirtyRegionOffset_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPoint > ();
|
|
}
|
|
|
|
static void _call_fp_dirtyRegionOffset_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPoint > ((QPoint)((QTableView_Adaptor *)cls)->fp_QTableView_dirtyRegionOffset_c0 ());
|
|
}
|
|
|
|
|
|
// void QTableView::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);
|
|
((QTableView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_disconnectNotify_1731_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_disconnectNotify_1731_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::doAutoScroll()
|
|
|
|
static void _init_fp_doAutoScroll_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_doAutoScroll_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_doAutoScroll_0 ();
|
|
}
|
|
|
|
|
|
// void QTableView::doItemsLayout()
|
|
|
|
static void _init_cbs_doItemsLayout_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_doItemsLayout_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_doItemsLayout_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_doItemsLayout_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_doItemsLayout_0_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QTableView::doubleClicked(const QModelIndex &index)
|
|
|
|
static void _init_emitter_doubleClicked_2395 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_doubleClicked_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);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_doubleClicked_2395 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::dragEnterEvent(QDragEnterEvent *event)
|
|
|
|
static void _init_cbs_dragEnterEvent_2109_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QDragEnterEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDragEnterEvent *arg1 = args.read<QDragEnterEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragEnterEvent_2109_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_dragEnterEvent_2109_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::dragLeaveEvent(QDragLeaveEvent *event)
|
|
|
|
static void _init_cbs_dragLeaveEvent_2092_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QDragLeaveEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDragLeaveEvent *arg1 = args.read<QDragLeaveEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragLeaveEvent_2092_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_dragLeaveEvent_2092_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::dragMoveEvent(QDragMoveEvent *event)
|
|
|
|
static void _init_cbs_dragMoveEvent_2006_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QDragMoveEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDragMoveEvent *arg1 = args.read<QDragMoveEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragMoveEvent_2006_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_dragMoveEvent_2006_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::drawFrame(QPainter *)
|
|
|
|
static void _init_fp_drawFrame_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QPainter * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QPainter *arg1 = args.read<QPainter * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_drawFrame_1426 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::dropEvent(QDropEvent *event)
|
|
|
|
static void _init_cbs_dropEvent_1622_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QDropEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDropEvent *arg1 = args.read<QDropEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dropEvent_1622_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_dropEvent_1622_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed QAbstractItemView::DropIndicatorPosition QTableView::dropIndicatorPosition()
|
|
|
|
static void _init_fp_dropIndicatorPosition_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<unsigned int > ();
|
|
}
|
|
|
|
static void _call_fp_dropIndicatorPosition_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<unsigned int > ((unsigned int)((QTableView_Adaptor *)cls)->fp_QTableView_dropIndicatorPosition_c0 ());
|
|
}
|
|
|
|
|
|
// bool QTableView::edit(const QModelIndex &index, QAbstractItemView::EditTrigger trigger, QEvent *event)
|
|
|
|
static void _init_cbs_edit_6773_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("trigger");
|
|
decl->add_arg<const qt_gsi::Converter<QAbstractItemView::EditTrigger>::target_type & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("event");
|
|
decl->add_arg<QEvent * > (argspec_2);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_edit_6773_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 qt_gsi::Converter<QAbstractItemView::EditTrigger>::target_type & arg2 = args.read<const qt_gsi::Converter<QAbstractItemView::EditTrigger>::target_type & > (heap);
|
|
QEvent *arg3 = args.read<QEvent * > (heap);
|
|
ret.write<bool > ((bool)((QTableView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3));
|
|
}
|
|
|
|
static void _set_callback_cbs_edit_6773_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_edit_6773_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::editorDestroyed(QObject *editor)
|
|
|
|
static void _init_cbs_editorDestroyed_1302_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("editor");
|
|
decl->add_arg<QObject * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_editorDestroyed_1302_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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_editorDestroyed_1302_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_editorDestroyed_1302_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::enabledChange(bool)
|
|
|
|
static void _init_cbs_enabledChange_864_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_enabledChange_864_0 (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);
|
|
((QTableView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_enabledChange_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_enabledChange_864_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::enterEvent(QEvent *)
|
|
|
|
static void _init_cbs_enterEvent_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_enterEvent_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);
|
|
((QTableView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_enterEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_enterEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QTableView::entered(const QModelIndex &index)
|
|
|
|
static void _init_emitter_entered_2395 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_entered_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);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_entered_2395 (arg1);
|
|
}
|
|
|
|
|
|
// bool QTableView::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)((QTableView_Adaptor *)cls)->cbs_event_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_event_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QTableView::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)((QTableView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_eventFilter_2411_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::executeDelayedItemsLayout()
|
|
|
|
static void _init_fp_executeDelayedItemsLayout_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_executeDelayedItemsLayout_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_executeDelayedItemsLayout_0 ();
|
|
}
|
|
|
|
|
|
// void QTableView::focusInEvent(QFocusEvent *event)
|
|
|
|
static void _init_cbs_focusInEvent_1729_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QFocusEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFocusEvent *arg1 = args.read<QFocusEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusInEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_focusInEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QTableView::focusNextChild()
|
|
|
|
static void _init_fp_focusNextChild_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_fp_focusNextChild_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QTableView_Adaptor *)cls)->fp_QTableView_focusNextChild_0 ());
|
|
}
|
|
|
|
|
|
// bool QTableView::focusNextPrevChild(bool next)
|
|
|
|
static void _init_cbs_focusNextPrevChild_864_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("next");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_focusNextPrevChild_864_0 (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);
|
|
ret.write<bool > ((bool)((QTableView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_focusNextPrevChild_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_focusNextPrevChild_864_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::focusOutEvent(QFocusEvent *event)
|
|
|
|
static void _init_cbs_focusOutEvent_1729_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QFocusEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFocusEvent *arg1 = args.read<QFocusEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusOutEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_focusOutEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QTableView::focusPreviousChild()
|
|
|
|
static void _init_fp_focusPreviousChild_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_fp_focusPreviousChild_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QTableView_Adaptor *)cls)->fp_QTableView_focusPreviousChild_0 ());
|
|
}
|
|
|
|
|
|
// void QTableView::fontChange(const QFont &)
|
|
|
|
static void _init_cbs_fontChange_1801_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QFont & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QFont &arg1 = args.read<const QFont & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_fontChange_1801_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_fontChange_1801_0 = cb;
|
|
}
|
|
|
|
|
|
// int QTableView::heightForWidth(int)
|
|
|
|
static void _init_cbs_heightForWidth_c767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_heightForWidth_c767_0 (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);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_heightForWidth_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_heightForWidth_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::hideEvent(QHideEvent *)
|
|
|
|
static void _init_cbs_hideEvent_1595_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QHideEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QHideEvent *arg1 = args.read<QHideEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hideEvent_1595_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_hideEvent_1595_0 = cb;
|
|
}
|
|
|
|
|
|
// int QTableView::horizontalOffset()
|
|
|
|
static void _init_cbs_horizontalOffset_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_horizontalOffset_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->cbs_horizontalOffset_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_horizontalOffset_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_horizontalOffset_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::horizontalScrollbarAction(int action)
|
|
|
|
static void _init_cbs_horizontalScrollbarAction_767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("action");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_horizontalScrollbarAction_767_0 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_horizontalScrollbarAction_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_horizontalScrollbarAction_767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::horizontalScrollbarValueChanged(int value)
|
|
|
|
static void _init_cbs_horizontalScrollbarValueChanged_767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("value");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_horizontalScrollbarValueChanged_767_0 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_horizontalScrollbarValueChanged_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_horizontalScrollbarValueChanged_767_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed int QTableView::horizontalStepsPerItem()
|
|
|
|
static void _init_fp_horizontalStepsPerItem_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_fp_horizontalStepsPerItem_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->fp_QTableView_horizontalStepsPerItem_c0 ());
|
|
}
|
|
|
|
|
|
// QModelIndex QTableView::indexAt(const QPoint &p)
|
|
|
|
static void _init_cbs_indexAt_c1916_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("p");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<QModelIndex > ();
|
|
}
|
|
|
|
static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
ret.write<QModelIndex > ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_indexAt_c1916_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_indexAt_c1916_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::inputMethodEvent(QInputMethodEvent *event)
|
|
|
|
static void _init_cbs_inputMethodEvent_2354_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QInputMethodEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QInputMethodEvent *arg1 = args.read<QInputMethodEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodEvent_2354_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_inputMethodEvent_2354_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QTableView::inputMethodQuery(Qt::InputMethodQuery query)
|
|
|
|
static void _init_cbs_inputMethodQuery_c2420_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("query");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & > (argspec_0);
|
|
decl->set_return<QVariant > ();
|
|
}
|
|
|
|
static void _call_cbs_inputMethodQuery_c2420_0 (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::InputMethodQuery>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & > (heap);
|
|
ret.write<QVariant > ((QVariant)((QTableView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodQuery_c2420_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_inputMethodQuery_c2420_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QTableView::isIndexHidden(const QModelIndex &index)
|
|
|
|
static void _init_cbs_isIndexHidden_c2395_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_isIndexHidden_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)((QTableView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_isIndexHidden_c2395_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_isIndexHidden_c2395_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::keyPressEvent(QKeyEvent *event)
|
|
|
|
static void _init_cbs_keyPressEvent_1514_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QKeyEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QKeyEvent *arg1 = args.read<QKeyEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyPressEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_keyPressEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::keyReleaseEvent(QKeyEvent *)
|
|
|
|
static void _init_cbs_keyReleaseEvent_1514_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QKeyEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QKeyEvent *arg1 = args.read<QKeyEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyReleaseEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_keyReleaseEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::keyboardSearch(const QString &search)
|
|
|
|
static void _init_cbs_keyboardSearch_2025_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("search");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_keyboardSearch_2025_0 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyboardSearch_2025_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_keyboardSearch_2025_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::languageChange()
|
|
|
|
static void _init_cbs_languageChange_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_languageChange_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_languageChange_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_languageChange_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_languageChange_0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::leaveEvent(QEvent *)
|
|
|
|
static void _init_cbs_leaveEvent_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_leaveEvent_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);
|
|
((QTableView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_leaveEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_leaveEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// int QTableView::metric(QPaintDevice::PaintDeviceMetric)
|
|
|
|
static void _init_cbs_metric_c3445_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & arg1 = args.read<const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & > (heap);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_metric_c3445_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_metric_c3445_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QTableView::minimumSizeHint()
|
|
|
|
static void _init_cbs_minimumSizeHint_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_cbs_minimumSizeHint_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QTableView_Adaptor *)cls)->cbs_minimumSizeHint_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_minimumSizeHint_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_minimumSizeHint_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::mouseDoubleClickEvent(QMouseEvent *event)
|
|
|
|
static void _init_cbs_mouseDoubleClickEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseDoubleClickEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_mouseDoubleClickEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::mouseMoveEvent(QMouseEvent *event)
|
|
|
|
static void _init_cbs_mouseMoveEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseMoveEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_mouseMoveEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::mousePressEvent(QMouseEvent *event)
|
|
|
|
static void _init_cbs_mousePressEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mousePressEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_mousePressEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::mouseReleaseEvent(QMouseEvent *event)
|
|
|
|
static void _init_cbs_mouseReleaseEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseReleaseEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_mouseReleaseEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// QModelIndex QTableView::moveCursor(QAbstractItemView::CursorAction cursorAction, QFlags<Qt::KeyboardModifier> modifiers)
|
|
|
|
static void _init_cbs_moveCursor_6476_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("cursorAction");
|
|
decl->add_arg<unsigned int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("modifiers");
|
|
decl->add_arg<QFlags<Qt::KeyboardModifier> > (argspec_1);
|
|
decl->set_return<QModelIndex > ();
|
|
}
|
|
|
|
static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
unsigned int arg1 = args.read<unsigned int > (heap);
|
|
QFlags<Qt::KeyboardModifier> arg2 = args.read<QFlags<Qt::KeyboardModifier> > (heap);
|
|
ret.write<QModelIndex > ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_moveCursor_6476_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_moveCursor_6476_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::moveEvent(QMoveEvent *)
|
|
|
|
static void _init_cbs_moveEvent_1624_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QMoveEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMoveEvent *arg1 = args.read<QMoveEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_moveEvent_1624_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_moveEvent_1624_0 = cb;
|
|
}
|
|
|
|
|
|
// QPaintEngine *QTableView::paintEngine()
|
|
|
|
static void _init_cbs_paintEngine_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPaintEngine * > ();
|
|
}
|
|
|
|
static void _call_cbs_paintEngine_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPaintEngine * > ((QPaintEngine *)((QTableView_Adaptor *)cls)->cbs_paintEngine_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_paintEngine_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_paintEngine_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::paintEvent(QPaintEvent *e)
|
|
|
|
static void _init_cbs_paintEvent_1725_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
decl->add_arg<QPaintEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QPaintEvent *arg1 = args.read<QPaintEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_paintEvent_1725_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_paintEvent_1725_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::paletteChange(const QPalette &)
|
|
|
|
static void _init_cbs_paletteChange_2113_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QPalette & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPalette &arg1 = args.read<const QPalette & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_paletteChange_2113_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_paletteChange_2113_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QTableView::pressed(const QModelIndex &index)
|
|
|
|
static void _init_emitter_pressed_2395 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_pressed_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);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_pressed_2395 (arg1);
|
|
}
|
|
|
|
|
|
// exposed int QTableView::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)((QTableView_Adaptor *)cls)->fp_QTableView_receivers_c1731 (arg1));
|
|
}
|
|
|
|
|
|
// void QTableView::reset()
|
|
|
|
static void _init_cbs_reset_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_reset_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_reset_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_reset_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_reset_0_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::resetInputContext()
|
|
|
|
static void _init_fp_resetInputContext_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_resetInputContext_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_resetInputContext_0 ();
|
|
}
|
|
|
|
|
|
// void QTableView::resizeEvent(QResizeEvent *event)
|
|
|
|
static void _init_cbs_resizeEvent_1843_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QResizeEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QResizeEvent *arg1 = args.read<QResizeEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_resizeEvent_1843_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_resizeEvent_1843_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::rowCountChanged(int oldCount, int newCount)
|
|
|
|
static void _init_fp_rowCountChanged_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("oldCount");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("newCount");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_rowCountChanged_1426 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_rowCountChanged_1426 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::rowMoved(int row, int oldIndex, int newIndex)
|
|
|
|
static void _init_fp_rowMoved_2085 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("oldIndex");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("newIndex");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_rowMoved_2085 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_rowMoved_2085 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::rowResized(int row, int oldHeight, int newHeight)
|
|
|
|
static void _init_fp_rowResized_2085 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("oldHeight");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("newHeight");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_rowResized_2085 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_rowResized_2085 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// void QTableView::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
|
|
|
|
static void _init_cbs_rowsAboutToBeRemoved_3713_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("start");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("end");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_rowsAboutToBeRemoved_3713_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);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_rowsAboutToBeRemoved_3713_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_rowsAboutToBeRemoved_3713_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::rowsInserted(const QModelIndex &parent, int start, int end)
|
|
|
|
static void _init_cbs_rowsInserted_3713_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("start");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("end");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_rowsInserted_3713_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);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_rowsInserted_3713_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_rowsInserted_3713_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::scheduleDelayedItemsLayout()
|
|
|
|
static void _init_fp_scheduleDelayedItemsLayout_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_scheduleDelayedItemsLayout_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_scheduleDelayedItemsLayout_0 ();
|
|
}
|
|
|
|
|
|
// void QTableView::scrollContentsBy(int dx, int dy)
|
|
|
|
static void _init_cbs_scrollContentsBy_1426_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("dx");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("dy");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_scrollContentsBy_1426_0 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_scrollContentsBy_1426_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_scrollContentsBy_1426_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::scrollDirtyRegion(int dx, int dy)
|
|
|
|
static void _init_fp_scrollDirtyRegion_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("dx");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("dy");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_scrollDirtyRegion_1426 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_scrollDirtyRegion_1426 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QTableView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)
|
|
|
|
static void _init_cbs_scrollTo_5576_1 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("hint");
|
|
decl->add_arg<const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_scrollTo_5576_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 qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & arg2 = args.read<const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_scrollTo_5576_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_scrollTo_5576_1 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::selectAll()
|
|
|
|
static void _init_cbs_selectAll_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_selectAll_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_selectAll_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_selectAll_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_selectAll_0_0 = cb;
|
|
}
|
|
|
|
|
|
// QList<QModelIndex> QTableView::selectedIndexes()
|
|
|
|
static void _init_cbs_selectedIndexes_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QList<QModelIndex> > ();
|
|
}
|
|
|
|
static void _call_cbs_selectedIndexes_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QList<QModelIndex> > ((QList<QModelIndex>)((QTableView_Adaptor *)cls)->cbs_selectedIndexes_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_selectedIndexes_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_selectedIndexes_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
|
|
|
|
static void _init_cbs_selectionChanged_5346_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("selected");
|
|
decl->add_arg<const QItemSelection & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("deselected");
|
|
decl->add_arg<const QItemSelection & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QItemSelection &arg1 = args.read<const QItemSelection & > (heap);
|
|
const QItemSelection &arg2 = args.read<const QItemSelection & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_selectionChanged_5346_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_selectionChanged_5346_0 = cb;
|
|
}
|
|
|
|
|
|
// QFlags<QItemSelectionModel::SelectionFlag> QTableView::selectionCommand(const QModelIndex &index, const QEvent *event)
|
|
|
|
static void _init_cbs_selectionCommand_c4199_1 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("event");
|
|
decl->add_arg<const QEvent * > (argspec_1);
|
|
decl->set_return<QFlags<QItemSelectionModel::SelectionFlag> > ();
|
|
}
|
|
|
|
static void _call_cbs_selectionCommand_c4199_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 QEvent *arg2 = args.read<const QEvent * > (heap);
|
|
ret.write<QFlags<QItemSelectionModel::SelectionFlag> > ((QFlags<QItemSelectionModel::SelectionFlag>)((QTableView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_selectionCommand_c4199_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_selectionCommand_c4199_1 = cb;
|
|
}
|
|
|
|
|
|
// exposed QObject *QTableView::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 *)((QTableView_Adaptor *)cls)->fp_QTableView_sender_c0 ());
|
|
}
|
|
|
|
|
|
// exposed void QTableView::setDirtyRegion(const QRegion ®ion)
|
|
|
|
static void _init_fp_setDirtyRegion_2006 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("region");
|
|
decl->add_arg<const QRegion & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QRegion &arg1 = args.read<const QRegion & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_setDirtyRegion_2006 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::setHorizontalStepsPerItem(int steps)
|
|
|
|
static void _init_fp_setHorizontalStepsPerItem_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("steps");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_setHorizontalStepsPerItem_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_setHorizontalStepsPerItem_767 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setModel(QAbstractItemModel *model)
|
|
|
|
static void _init_cbs_setModel_2419_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("model");
|
|
decl->add_arg<QAbstractItemModel * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAbstractItemModel *arg1 = args.read<QAbstractItemModel * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setModel_2419_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_setModel_2419_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::setRootIndex(const QModelIndex &index)
|
|
|
|
static void _init_cbs_setRootIndex_2395_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setRootIndex_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);
|
|
((QTableView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setRootIndex_2395_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_setRootIndex_2395_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command)
|
|
|
|
static void _init_cbs_setSelection_6155_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("rect");
|
|
decl->add_arg<const QRect & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("command");
|
|
decl->add_arg<QFlags<QItemSelectionModel::SelectionFlag> > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QRect &arg1 = args.read<const QRect & > (heap);
|
|
QFlags<QItemSelectionModel::SelectionFlag> arg2 = args.read<QFlags<QItemSelectionModel::SelectionFlag> > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_setSelection_6155_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_setSelection_6155_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::setSelectionModel(QItemSelectionModel *selectionModel)
|
|
|
|
static void _init_cbs_setSelectionModel_2533_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("selectionModel");
|
|
decl->add_arg<QItemSelectionModel * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QItemSelectionModel *arg1 = args.read<QItemSelectionModel * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setSelectionModel_2533_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_setSelectionModel_2533_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::setState(QAbstractItemView::State state)
|
|
|
|
static void _init_fp_setState_2776 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("state");
|
|
decl->add_arg<unsigned int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
unsigned int arg1 = args.read<unsigned int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_setState_2776 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::setVerticalStepsPerItem(int steps)
|
|
|
|
static void _init_fp_setVerticalStepsPerItem_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("steps");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_setVerticalStepsPerItem_767 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_setVerticalStepsPerItem_767 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::setViewportMargins(int left, int top, int right, int bottom)
|
|
|
|
static void _init_fp_setViewportMargins_2744 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("left");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("top");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("right");
|
|
decl->add_arg<int > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("bottom");
|
|
decl->add_arg<int > (argspec_3);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_setViewportMargins_2744 (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);
|
|
int arg4 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_setViewportMargins_2744 (arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
|
|
// exposed void QTableView::setViewportMargins(const QMargins &margins)
|
|
|
|
static void _init_fp_setViewportMargins_2115 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("margins");
|
|
decl->add_arg<const QMargins & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QMargins &arg1 = args.read<const QMargins & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_setViewportMargins_2115 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::setVisible(bool visible)
|
|
|
|
static void _init_cbs_setVisible_864_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("visible");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setVisible_864_0 (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);
|
|
((QTableView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setVisible_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_setVisible_864_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::setupViewport(QWidget *viewport)
|
|
|
|
static void _init_fp_setupViewport_1315 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("viewport");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWidget *arg1 = args.read<QWidget * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_setupViewport_1315 (arg1);
|
|
}
|
|
|
|
|
|
// void QTableView::showEvent(QShowEvent *)
|
|
|
|
static void _init_cbs_showEvent_1634_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QShowEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QShowEvent *arg1 = args.read<QShowEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_showEvent_1634_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_showEvent_1634_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QTableView::sizeHint()
|
|
|
|
static void _init_cbs_sizeHint_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_cbs_sizeHint_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QTableView_Adaptor *)cls)->cbs_sizeHint_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHint_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_sizeHint_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// int QTableView::sizeHintForColumn(int column)
|
|
|
|
static void _init_cbs_sizeHintForColumn_c767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("column");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_sizeHintForColumn_c767_0 (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);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHintForColumn_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_sizeHintForColumn_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// int QTableView::sizeHintForRow(int row)
|
|
|
|
static void _init_cbs_sizeHintForRow_c767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("row");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_sizeHintForRow_c767_0 (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);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHintForRow_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_sizeHintForRow_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::startAutoScroll()
|
|
|
|
static void _init_fp_startAutoScroll_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_startAutoScroll_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_startAutoScroll_0 ();
|
|
}
|
|
|
|
|
|
// void QTableView::startDrag(QFlags<Qt::DropAction> supportedActions)
|
|
|
|
static void _init_cbs_startDrag_2456_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("supportedActions");
|
|
decl->add_arg<QFlags<Qt::DropAction> > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFlags<Qt::DropAction> arg1 = args.read<QFlags<Qt::DropAction> > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_startDrag_2456_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_startDrag_2456_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed QAbstractItemView::State QTableView::state()
|
|
|
|
static void _init_fp_state_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<unsigned int > ();
|
|
}
|
|
|
|
static void _call_fp_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<unsigned int > ((unsigned int)((QTableView_Adaptor *)cls)->fp_QTableView_state_c0 ());
|
|
}
|
|
|
|
|
|
// exposed void QTableView::stopAutoScroll()
|
|
|
|
static void _init_fp_stopAutoScroll_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_stopAutoScroll_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_stopAutoScroll_0 ();
|
|
}
|
|
|
|
|
|
// void QTableView::styleChange(QStyle &)
|
|
|
|
static void _init_cbs_styleChange_1228_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QStyle & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QStyle &arg1 = args.read<QStyle & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_styleChange_1228_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_styleChange_1228_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::tabletEvent(QTabletEvent *)
|
|
|
|
static void _init_cbs_tabletEvent_1821_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QTabletEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QTabletEvent *arg1 = args.read<QTabletEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_tabletEvent_1821_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_tabletEvent_1821_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::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);
|
|
((QTableView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_timerEvent_1730_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::updateEditorData()
|
|
|
|
static void _init_cbs_updateEditorData_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_updateEditorData_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_updateEditorData_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_updateEditorData_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_updateEditorData_0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::updateEditorGeometries()
|
|
|
|
static void _init_cbs_updateEditorGeometries_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_updateEditorGeometries_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_updateEditorGeometries_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_updateEditorGeometries_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_updateEditorGeometries_0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::updateGeometries()
|
|
|
|
static void _init_cbs_updateGeometries_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_updateGeometries_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_updateGeometries_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_updateGeometries_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_updateGeometries_0_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QTableView::updateMicroFocus()
|
|
|
|
static void _init_fp_updateMicroFocus_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_updateMicroFocus_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->fp_QTableView_updateMicroFocus_0 ();
|
|
}
|
|
|
|
|
|
// int QTableView::verticalOffset()
|
|
|
|
static void _init_cbs_verticalOffset_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_verticalOffset_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->cbs_verticalOffset_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_verticalOffset_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_verticalOffset_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::verticalScrollbarAction(int action)
|
|
|
|
static void _init_cbs_verticalScrollbarAction_767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("action");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_verticalScrollbarAction_767_0 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_verticalScrollbarAction_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_verticalScrollbarAction_767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::verticalScrollbarValueChanged(int value)
|
|
|
|
static void _init_cbs_verticalScrollbarValueChanged_767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("value");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_verticalScrollbarValueChanged_767_0 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_verticalScrollbarValueChanged_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_verticalScrollbarValueChanged_767_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed int QTableView::verticalStepsPerItem()
|
|
|
|
static void _init_fp_verticalStepsPerItem_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_fp_verticalStepsPerItem_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QTableView_Adaptor *)cls)->fp_QTableView_verticalStepsPerItem_c0 ());
|
|
}
|
|
|
|
|
|
// QStyleOptionViewItem QTableView::viewOptions()
|
|
|
|
static void _init_cbs_viewOptions_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QStyleOptionViewItem > ();
|
|
}
|
|
|
|
static void _call_cbs_viewOptions_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QStyleOptionViewItem > ((QStyleOptionViewItem)((QTableView_Adaptor *)cls)->cbs_viewOptions_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_viewOptions_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_viewOptions_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QTableView::viewportEntered()
|
|
|
|
static void _init_emitter_viewportEntered_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_viewportEntered_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QTableView_Adaptor *)cls)->emitter_QTableView_viewportEntered_0 ();
|
|
}
|
|
|
|
|
|
// bool QTableView::viewportEvent(QEvent *event)
|
|
|
|
static void _init_cbs_viewportEvent_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_viewportEvent_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)((QTableView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_viewportEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_viewportEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// QRect QTableView::visualRect(const QModelIndex &index)
|
|
|
|
static void _init_cbs_visualRect_c2395_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
static void _call_cbs_visualRect_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<QRect > ((QRect)((QTableView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_visualRect_c2395_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_visualRect_c2395_0 = cb;
|
|
}
|
|
|
|
|
|
// QRegion QTableView::visualRegionForSelection(const QItemSelection &selection)
|
|
|
|
static void _init_cbs_visualRegionForSelection_c2727_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("selection");
|
|
decl->add_arg<const QItemSelection & > (argspec_0);
|
|
decl->set_return<QRegion > ();
|
|
}
|
|
|
|
static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QItemSelection &arg1 = args.read<const QItemSelection & > (heap);
|
|
ret.write<QRegion > ((QRegion)((QTableView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_visualRegionForSelection_c2727_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_visualRegionForSelection_c2727_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::wheelEvent(QWheelEvent *)
|
|
|
|
static void _init_cbs_wheelEvent_1718_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QWheelEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWheelEvent *arg1 = args.read<QWheelEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QTableView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_wheelEvent_1718_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_wheelEvent_1718_0 = cb;
|
|
}
|
|
|
|
|
|
// void QTableView::windowActivationChange(bool)
|
|
|
|
static void _init_cbs_windowActivationChange_864_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_windowActivationChange_864_0 (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);
|
|
((QTableView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_windowActivationChange_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QTableView_Adaptor *)cls)->cb_windowActivationChange_864_0 = cb;
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QTableView> &qtdecl_QTableView ();
|
|
|
|
static gsi::Methods methods_QTableView_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTableView::QTableView(QWidget *parent)\nThis method creates an object of class QTableView.", &_init_ctor_QTableView_Adaptor_1315, &_call_ctor_QTableView_Adaptor_1315);
|
|
methods += new qt_gsi::GenericMethod ("*actionEvent", "@hide", false, &_init_cbs_actionEvent_1823_0, &_call_cbs_actionEvent_1823_0);
|
|
methods += new qt_gsi::GenericMethod ("*actionEvent", "@brief Virtual method void QTableView::actionEvent(QActionEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_actionEvent_1823_0, &_call_cbs_actionEvent_1823_0, &_set_callback_cbs_actionEvent_1823_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_activated", "@brief Emitter for signal void QTableView::activated(const QModelIndex &index)\nCall this method to emit this signal.", false, &_init_emitter_activated_2395, &_call_emitter_activated_2395);
|
|
methods += new qt_gsi::GenericMethod ("*changeEvent", "@hide", false, &_init_cbs_changeEvent_1217_0, &_call_cbs_changeEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*changeEvent", "@brief Virtual method void QTableView::changeEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_changeEvent_1217_0, &_call_cbs_changeEvent_1217_0, &_set_callback_cbs_changeEvent_1217_0);
|
|
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 QTableView::childEvent(QChildEvent *)\nThis 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 ("emit_clicked", "@brief Emitter for signal void QTableView::clicked(const QModelIndex &index)\nCall this method to emit this signal.", false, &_init_emitter_clicked_2395, &_call_emitter_clicked_2395);
|
|
methods += new qt_gsi::GenericMethod ("*closeEditor", "@hide", false, &_init_cbs_closeEditor_4926_0, &_call_cbs_closeEditor_4926_0);
|
|
methods += new qt_gsi::GenericMethod ("*closeEditor", "@brief Virtual method void QTableView::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_closeEditor_4926_0, &_call_cbs_closeEditor_4926_0, &_set_callback_cbs_closeEditor_4926_0);
|
|
methods += new qt_gsi::GenericMethod ("*closeEvent", "@hide", false, &_init_cbs_closeEvent_1719_0, &_call_cbs_closeEvent_1719_0);
|
|
methods += new qt_gsi::GenericMethod ("*closeEvent", "@brief Virtual method void QTableView::closeEvent(QCloseEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_closeEvent_1719_0, &_call_cbs_closeEvent_1719_0, &_set_callback_cbs_closeEvent_1719_0);
|
|
methods += new qt_gsi::GenericMethod ("*columnCountChanged", "@brief Method void QTableView::columnCountChanged(int oldCount, int newCount)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_columnCountChanged_1426, &_call_fp_columnCountChanged_1426);
|
|
methods += new qt_gsi::GenericMethod ("*columnMoved", "@brief Method void QTableView::columnMoved(int column, int oldIndex, int newIndex)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_columnMoved_2085, &_call_fp_columnMoved_2085);
|
|
methods += new qt_gsi::GenericMethod ("*columnResized", "@brief Method void QTableView::columnResized(int column, int oldWidth, int newWidth)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_columnResized_2085, &_call_fp_columnResized_2085);
|
|
methods += new qt_gsi::GenericMethod ("*commitData", "@hide", false, &_init_cbs_commitData_1315_0, &_call_cbs_commitData_1315_0);
|
|
methods += new qt_gsi::GenericMethod ("*commitData", "@brief Virtual method void QTableView::commitData(QWidget *editor)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_commitData_1315_0, &_call_cbs_commitData_1315_0, &_set_callback_cbs_commitData_1315_0);
|
|
methods += new qt_gsi::GenericMethod ("*contextMenuEvent", "@hide", false, &_init_cbs_contextMenuEvent_2363_0, &_call_cbs_contextMenuEvent_2363_0);
|
|
methods += new qt_gsi::GenericMethod ("*contextMenuEvent", "@brief Virtual method void QTableView::contextMenuEvent(QContextMenuEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_contextMenuEvent_2363_0, &_call_cbs_contextMenuEvent_2363_0, &_set_callback_cbs_contextMenuEvent_2363_0);
|
|
methods += new qt_gsi::GenericMethod ("*qt_create", "@brief Method void QTableView::create(WId, bool initializeWindow, bool destroyOldWindow)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_create_2208, &_call_fp_create_2208);
|
|
methods += new qt_gsi::GenericMethod ("*currentChanged", "@hide", false, &_init_cbs_currentChanged_4682_0, &_call_cbs_currentChanged_4682_0);
|
|
methods += new qt_gsi::GenericMethod ("*currentChanged", "@brief Virtual method void QTableView::currentChanged(const QModelIndex ¤t, const QModelIndex &previous)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_currentChanged_4682_0, &_call_cbs_currentChanged_4682_0, &_set_callback_cbs_currentChanged_4682_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_customContextMenuRequested", "@brief Emitter for signal void QTableView::customContextMenuRequested(const QPoint &pos)\nCall this method to emit this signal.", false, &_init_emitter_customContextMenuRequested_1916, &_call_emitter_customContextMenuRequested_1916);
|
|
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 QTableView::customEvent(QEvent *)\nThis 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 ("*dataChanged", "@hide", false, &_init_cbs_dataChanged_4682_0, &_call_cbs_dataChanged_4682_0);
|
|
methods += new qt_gsi::GenericMethod ("*dataChanged", "@brief Virtual method void QTableView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dataChanged_4682_0, &_call_cbs_dataChanged_4682_0, &_set_callback_cbs_dataChanged_4682_0);
|
|
methods += new qt_gsi::GenericMethod ("*qt_destroy", "@brief Method void QTableView::destroy(bool destroyWindow, bool destroySubWindows)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_destroy_1620, &_call_fp_destroy_1620);
|
|
methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QTableView::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302);
|
|
methods += new qt_gsi::GenericMethod ("*dirtyRegionOffset", "@brief Method QPoint QTableView::dirtyRegionOffset()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_dirtyRegionOffset_c0, &_call_fp_dirtyRegionOffset_c0);
|
|
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 QTableView::disconnectNotify(const char *signal)\nThis 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 ("*doAutoScroll", "@brief Method void QTableView::doAutoScroll()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_doAutoScroll_0, &_call_fp_doAutoScroll_0);
|
|
methods += new qt_gsi::GenericMethod ("doItemsLayout", "@hide", false, &_init_cbs_doItemsLayout_0_0, &_call_cbs_doItemsLayout_0_0);
|
|
methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Virtual method void QTableView::doItemsLayout()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_doItemsLayout_0_0, &_call_cbs_doItemsLayout_0_0, &_set_callback_cbs_doItemsLayout_0_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_doubleClicked", "@brief Emitter for signal void QTableView::doubleClicked(const QModelIndex &index)\nCall this method to emit this signal.", false, &_init_emitter_doubleClicked_2395, &_call_emitter_doubleClicked_2395);
|
|
methods += new qt_gsi::GenericMethod ("*dragEnterEvent", "@hide", false, &_init_cbs_dragEnterEvent_2109_0, &_call_cbs_dragEnterEvent_2109_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragEnterEvent", "@brief Virtual method void QTableView::dragEnterEvent(QDragEnterEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragEnterEvent_2109_0, &_call_cbs_dragEnterEvent_2109_0, &_set_callback_cbs_dragEnterEvent_2109_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragLeaveEvent", "@hide", false, &_init_cbs_dragLeaveEvent_2092_0, &_call_cbs_dragLeaveEvent_2092_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragLeaveEvent", "@brief Virtual method void QTableView::dragLeaveEvent(QDragLeaveEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragLeaveEvent_2092_0, &_call_cbs_dragLeaveEvent_2092_0, &_set_callback_cbs_dragLeaveEvent_2092_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragMoveEvent", "@hide", false, &_init_cbs_dragMoveEvent_2006_0, &_call_cbs_dragMoveEvent_2006_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragMoveEvent", "@brief Virtual method void QTableView::dragMoveEvent(QDragMoveEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragMoveEvent_2006_0, &_call_cbs_dragMoveEvent_2006_0, &_set_callback_cbs_dragMoveEvent_2006_0);
|
|
methods += new qt_gsi::GenericMethod ("*drawFrame", "@brief Method void QTableView::drawFrame(QPainter *)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_drawFrame_1426, &_call_fp_drawFrame_1426);
|
|
methods += new qt_gsi::GenericMethod ("*dropEvent", "@hide", false, &_init_cbs_dropEvent_1622_0, &_call_cbs_dropEvent_1622_0);
|
|
methods += new qt_gsi::GenericMethod ("*dropEvent", "@brief Virtual method void QTableView::dropEvent(QDropEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dropEvent_1622_0, &_call_cbs_dropEvent_1622_0, &_set_callback_cbs_dropEvent_1622_0);
|
|
methods += new qt_gsi::GenericMethod ("*dropIndicatorPosition", "@brief Method QAbstractItemView::DropIndicatorPosition QTableView::dropIndicatorPosition()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_dropIndicatorPosition_c0, &_call_fp_dropIndicatorPosition_c0);
|
|
methods += new qt_gsi::GenericMethod ("*edit", "@hide", false, &_init_cbs_edit_6773_0, &_call_cbs_edit_6773_0);
|
|
methods += new qt_gsi::GenericMethod ("*edit", "@brief Virtual method bool QTableView::edit(const QModelIndex &index, QAbstractItemView::EditTrigger trigger, QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_edit_6773_0, &_call_cbs_edit_6773_0, &_set_callback_cbs_edit_6773_0);
|
|
methods += new qt_gsi::GenericMethod ("*editorDestroyed", "@hide", false, &_init_cbs_editorDestroyed_1302_0, &_call_cbs_editorDestroyed_1302_0);
|
|
methods += new qt_gsi::GenericMethod ("*editorDestroyed", "@brief Virtual method void QTableView::editorDestroyed(QObject *editor)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_editorDestroyed_1302_0, &_call_cbs_editorDestroyed_1302_0, &_set_callback_cbs_editorDestroyed_1302_0);
|
|
methods += new qt_gsi::GenericMethod ("*enabledChange", "@hide", false, &_init_cbs_enabledChange_864_0, &_call_cbs_enabledChange_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*enabledChange", "@brief Virtual method void QTableView::enabledChange(bool)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_enabledChange_864_0, &_call_cbs_enabledChange_864_0, &_set_callback_cbs_enabledChange_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*enterEvent", "@hide", false, &_init_cbs_enterEvent_1217_0, &_call_cbs_enterEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*enterEvent", "@brief Virtual method void QTableView::enterEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_enterEvent_1217_0, &_call_cbs_enterEvent_1217_0, &_set_callback_cbs_enterEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_entered", "@brief Emitter for signal void QTableView::entered(const QModelIndex &index)\nCall this method to emit this signal.", false, &_init_emitter_entered_2395, &_call_emitter_entered_2395);
|
|
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 QTableView::event(QEvent *event)\nThis 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 QTableView::eventFilter(QObject *, QEvent *)\nThis 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 ("*executeDelayedItemsLayout", "@brief Method void QTableView::executeDelayedItemsLayout()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_executeDelayedItemsLayout_0, &_call_fp_executeDelayedItemsLayout_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusInEvent", "@hide", false, &_init_cbs_focusInEvent_1729_0, &_call_cbs_focusInEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusInEvent", "@brief Virtual method void QTableView::focusInEvent(QFocusEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusInEvent_1729_0, &_call_cbs_focusInEvent_1729_0, &_set_callback_cbs_focusInEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusNextChild", "@brief Method bool QTableView::focusNextChild()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_focusNextChild_0, &_call_fp_focusNextChild_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusNextPrevChild", "@hide", false, &_init_cbs_focusNextPrevChild_864_0, &_call_cbs_focusNextPrevChild_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusNextPrevChild", "@brief Virtual method bool QTableView::focusNextPrevChild(bool next)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusNextPrevChild_864_0, &_call_cbs_focusNextPrevChild_864_0, &_set_callback_cbs_focusNextPrevChild_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusOutEvent", "@hide", false, &_init_cbs_focusOutEvent_1729_0, &_call_cbs_focusOutEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusOutEvent", "@brief Virtual method void QTableView::focusOutEvent(QFocusEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusOutEvent_1729_0, &_call_cbs_focusOutEvent_1729_0, &_set_callback_cbs_focusOutEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusPreviousChild", "@brief Method bool QTableView::focusPreviousChild()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_focusPreviousChild_0, &_call_fp_focusPreviousChild_0);
|
|
methods += new qt_gsi::GenericMethod ("*fontChange", "@hide", false, &_init_cbs_fontChange_1801_0, &_call_cbs_fontChange_1801_0);
|
|
methods += new qt_gsi::GenericMethod ("*fontChange", "@brief Virtual method void QTableView::fontChange(const QFont &)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_fontChange_1801_0, &_call_cbs_fontChange_1801_0, &_set_callback_cbs_fontChange_1801_0);
|
|
methods += new qt_gsi::GenericMethod ("heightForWidth", "@hide", true, &_init_cbs_heightForWidth_c767_0, &_call_cbs_heightForWidth_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Virtual method int QTableView::heightForWidth(int)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_heightForWidth_c767_0, &_call_cbs_heightForWidth_c767_0, &_set_callback_cbs_heightForWidth_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*hideEvent", "@hide", false, &_init_cbs_hideEvent_1595_0, &_call_cbs_hideEvent_1595_0);
|
|
methods += new qt_gsi::GenericMethod ("*hideEvent", "@brief Virtual method void QTableView::hideEvent(QHideEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_hideEvent_1595_0, &_call_cbs_hideEvent_1595_0, &_set_callback_cbs_hideEvent_1595_0);
|
|
methods += new qt_gsi::GenericMethod ("*horizontalOffset", "@hide", true, &_init_cbs_horizontalOffset_c0_0, &_call_cbs_horizontalOffset_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*horizontalOffset", "@brief Virtual method int QTableView::horizontalOffset()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_horizontalOffset_c0_0, &_call_cbs_horizontalOffset_c0_0, &_set_callback_cbs_horizontalOffset_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*horizontalScrollbarAction", "@hide", false, &_init_cbs_horizontalScrollbarAction_767_0, &_call_cbs_horizontalScrollbarAction_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*horizontalScrollbarAction", "@brief Virtual method void QTableView::horizontalScrollbarAction(int action)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_horizontalScrollbarAction_767_0, &_call_cbs_horizontalScrollbarAction_767_0, &_set_callback_cbs_horizontalScrollbarAction_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*horizontalScrollbarValueChanged", "@hide", false, &_init_cbs_horizontalScrollbarValueChanged_767_0, &_call_cbs_horizontalScrollbarValueChanged_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*horizontalScrollbarValueChanged", "@brief Virtual method void QTableView::horizontalScrollbarValueChanged(int value)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_horizontalScrollbarValueChanged_767_0, &_call_cbs_horizontalScrollbarValueChanged_767_0, &_set_callback_cbs_horizontalScrollbarValueChanged_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*horizontalStepsPerItem", "@brief Method int QTableView::horizontalStepsPerItem()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_horizontalStepsPerItem_c0, &_call_fp_horizontalStepsPerItem_c0);
|
|
methods += new qt_gsi::GenericMethod ("indexAt", "@hide", true, &_init_cbs_indexAt_c1916_0, &_call_cbs_indexAt_c1916_0);
|
|
methods += new qt_gsi::GenericMethod ("indexAt", "@brief Virtual method QModelIndex QTableView::indexAt(const QPoint &p)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_indexAt_c1916_0, &_call_cbs_indexAt_c1916_0, &_set_callback_cbs_indexAt_c1916_0);
|
|
methods += new qt_gsi::GenericMethod ("*inputMethodEvent", "@hide", false, &_init_cbs_inputMethodEvent_2354_0, &_call_cbs_inputMethodEvent_2354_0);
|
|
methods += new qt_gsi::GenericMethod ("*inputMethodEvent", "@brief Virtual method void QTableView::inputMethodEvent(QInputMethodEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_inputMethodEvent_2354_0, &_call_cbs_inputMethodEvent_2354_0, &_set_callback_cbs_inputMethodEvent_2354_0);
|
|
methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@hide", true, &_init_cbs_inputMethodQuery_c2420_0, &_call_cbs_inputMethodQuery_c2420_0);
|
|
methods += new qt_gsi::GenericMethod ("inputMethodQuery", "@brief Virtual method QVariant QTableView::inputMethodQuery(Qt::InputMethodQuery query)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_inputMethodQuery_c2420_0, &_call_cbs_inputMethodQuery_c2420_0, &_set_callback_cbs_inputMethodQuery_c2420_0);
|
|
methods += new qt_gsi::GenericMethod ("*isIndexHidden", "@hide", true, &_init_cbs_isIndexHidden_c2395_0, &_call_cbs_isIndexHidden_c2395_0);
|
|
methods += new qt_gsi::GenericMethod ("*isIndexHidden", "@brief Virtual method bool QTableView::isIndexHidden(const QModelIndex &index)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_isIndexHidden_c2395_0, &_call_cbs_isIndexHidden_c2395_0, &_set_callback_cbs_isIndexHidden_c2395_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyPressEvent", "@hide", false, &_init_cbs_keyPressEvent_1514_0, &_call_cbs_keyPressEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyPressEvent", "@brief Virtual method void QTableView::keyPressEvent(QKeyEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_keyPressEvent_1514_0, &_call_cbs_keyPressEvent_1514_0, &_set_callback_cbs_keyPressEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyReleaseEvent", "@hide", false, &_init_cbs_keyReleaseEvent_1514_0, &_call_cbs_keyReleaseEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyReleaseEvent", "@brief Virtual method void QTableView::keyReleaseEvent(QKeyEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_keyReleaseEvent_1514_0, &_call_cbs_keyReleaseEvent_1514_0, &_set_callback_cbs_keyReleaseEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("keyboardSearch", "@hide", false, &_init_cbs_keyboardSearch_2025_0, &_call_cbs_keyboardSearch_2025_0);
|
|
methods += new qt_gsi::GenericMethod ("keyboardSearch", "@brief Virtual method void QTableView::keyboardSearch(const QString &search)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_keyboardSearch_2025_0, &_call_cbs_keyboardSearch_2025_0, &_set_callback_cbs_keyboardSearch_2025_0);
|
|
methods += new qt_gsi::GenericMethod ("*languageChange", "@hide", false, &_init_cbs_languageChange_0_0, &_call_cbs_languageChange_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*languageChange", "@brief Virtual method void QTableView::languageChange()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_languageChange_0_0, &_call_cbs_languageChange_0_0, &_set_callback_cbs_languageChange_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*leaveEvent", "@hide", false, &_init_cbs_leaveEvent_1217_0, &_call_cbs_leaveEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*leaveEvent", "@brief Virtual method void QTableView::leaveEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_leaveEvent_1217_0, &_call_cbs_leaveEvent_1217_0, &_set_callback_cbs_leaveEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*metric", "@hide", true, &_init_cbs_metric_c3445_0, &_call_cbs_metric_c3445_0);
|
|
methods += new qt_gsi::GenericMethod ("*metric", "@brief Virtual method int QTableView::metric(QPaintDevice::PaintDeviceMetric)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_metric_c3445_0, &_call_cbs_metric_c3445_0, &_set_callback_cbs_metric_c3445_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumSizeHint", "@hide", true, &_init_cbs_minimumSizeHint_c0_0, &_call_cbs_minimumSizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumSizeHint", "@brief Virtual method QSize QTableView::minimumSizeHint()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_minimumSizeHint_c0_0, &_call_cbs_minimumSizeHint_c0_0, &_set_callback_cbs_minimumSizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseDoubleClickEvent", "@hide", false, &_init_cbs_mouseDoubleClickEvent_1738_0, &_call_cbs_mouseDoubleClickEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseDoubleClickEvent", "@brief Virtual method void QTableView::mouseDoubleClickEvent(QMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseDoubleClickEvent_1738_0, &_call_cbs_mouseDoubleClickEvent_1738_0, &_set_callback_cbs_mouseDoubleClickEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseMoveEvent", "@hide", false, &_init_cbs_mouseMoveEvent_1738_0, &_call_cbs_mouseMoveEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseMoveEvent", "@brief Virtual method void QTableView::mouseMoveEvent(QMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseMoveEvent_1738_0, &_call_cbs_mouseMoveEvent_1738_0, &_set_callback_cbs_mouseMoveEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mousePressEvent", "@hide", false, &_init_cbs_mousePressEvent_1738_0, &_call_cbs_mousePressEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mousePressEvent", "@brief Virtual method void QTableView::mousePressEvent(QMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mousePressEvent_1738_0, &_call_cbs_mousePressEvent_1738_0, &_set_callback_cbs_mousePressEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseReleaseEvent", "@hide", false, &_init_cbs_mouseReleaseEvent_1738_0, &_call_cbs_mouseReleaseEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseReleaseEvent", "@brief Virtual method void QTableView::mouseReleaseEvent(QMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseReleaseEvent_1738_0, &_call_cbs_mouseReleaseEvent_1738_0, &_set_callback_cbs_mouseReleaseEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*moveCursor", "@hide", false, &_init_cbs_moveCursor_6476_0, &_call_cbs_moveCursor_6476_0);
|
|
methods += new qt_gsi::GenericMethod ("*moveCursor", "@brief Virtual method QModelIndex QTableView::moveCursor(QAbstractItemView::CursorAction cursorAction, QFlags<Qt::KeyboardModifier> modifiers)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_moveCursor_6476_0, &_call_cbs_moveCursor_6476_0, &_set_callback_cbs_moveCursor_6476_0);
|
|
methods += new qt_gsi::GenericMethod ("*moveEvent", "@hide", false, &_init_cbs_moveEvent_1624_0, &_call_cbs_moveEvent_1624_0);
|
|
methods += new qt_gsi::GenericMethod ("*moveEvent", "@brief Virtual method void QTableView::moveEvent(QMoveEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_moveEvent_1624_0, &_call_cbs_moveEvent_1624_0, &_set_callback_cbs_moveEvent_1624_0);
|
|
methods += new qt_gsi::GenericMethod ("paintEngine", "@hide", true, &_init_cbs_paintEngine_c0_0, &_call_cbs_paintEngine_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Virtual method QPaintEngine *QTableView::paintEngine()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_paintEngine_c0_0, &_call_cbs_paintEngine_c0_0, &_set_callback_cbs_paintEngine_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*paintEvent", "@hide", false, &_init_cbs_paintEvent_1725_0, &_call_cbs_paintEvent_1725_0);
|
|
methods += new qt_gsi::GenericMethod ("*paintEvent", "@brief Virtual method void QTableView::paintEvent(QPaintEvent *e)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_paintEvent_1725_0, &_call_cbs_paintEvent_1725_0, &_set_callback_cbs_paintEvent_1725_0);
|
|
methods += new qt_gsi::GenericMethod ("*paletteChange", "@hide", false, &_init_cbs_paletteChange_2113_0, &_call_cbs_paletteChange_2113_0);
|
|
methods += new qt_gsi::GenericMethod ("*paletteChange", "@brief Virtual method void QTableView::paletteChange(const QPalette &)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_paletteChange_2113_0, &_call_cbs_paletteChange_2113_0, &_set_callback_cbs_paletteChange_2113_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_pressed", "@brief Emitter for signal void QTableView::pressed(const QModelIndex &index)\nCall this method to emit this signal.", false, &_init_emitter_pressed_2395, &_call_emitter_pressed_2395);
|
|
methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QTableView::receivers(const char *signal)\nThis 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 ("reset", "@hide", false, &_init_cbs_reset_0_0, &_call_cbs_reset_0_0);
|
|
methods += new qt_gsi::GenericMethod ("reset", "@brief Virtual method void QTableView::reset()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_reset_0_0, &_call_cbs_reset_0_0, &_set_callback_cbs_reset_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*resetInputContext", "@brief Method void QTableView::resetInputContext()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_resetInputContext_0, &_call_fp_resetInputContext_0);
|
|
methods += new qt_gsi::GenericMethod ("*resizeEvent", "@hide", false, &_init_cbs_resizeEvent_1843_0, &_call_cbs_resizeEvent_1843_0);
|
|
methods += new qt_gsi::GenericMethod ("*resizeEvent", "@brief Virtual method void QTableView::resizeEvent(QResizeEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_resizeEvent_1843_0, &_call_cbs_resizeEvent_1843_0, &_set_callback_cbs_resizeEvent_1843_0);
|
|
methods += new qt_gsi::GenericMethod ("*rowCountChanged", "@brief Method void QTableView::rowCountChanged(int oldCount, int newCount)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_rowCountChanged_1426, &_call_fp_rowCountChanged_1426);
|
|
methods += new qt_gsi::GenericMethod ("*rowMoved", "@brief Method void QTableView::rowMoved(int row, int oldIndex, int newIndex)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_rowMoved_2085, &_call_fp_rowMoved_2085);
|
|
methods += new qt_gsi::GenericMethod ("*rowResized", "@brief Method void QTableView::rowResized(int row, int oldHeight, int newHeight)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_rowResized_2085, &_call_fp_rowResized_2085);
|
|
methods += new qt_gsi::GenericMethod ("*rowsAboutToBeRemoved", "@hide", false, &_init_cbs_rowsAboutToBeRemoved_3713_0, &_call_cbs_rowsAboutToBeRemoved_3713_0);
|
|
methods += new qt_gsi::GenericMethod ("*rowsAboutToBeRemoved", "@brief Virtual method void QTableView::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_rowsAboutToBeRemoved_3713_0, &_call_cbs_rowsAboutToBeRemoved_3713_0, &_set_callback_cbs_rowsAboutToBeRemoved_3713_0);
|
|
methods += new qt_gsi::GenericMethod ("*rowsInserted", "@hide", false, &_init_cbs_rowsInserted_3713_0, &_call_cbs_rowsInserted_3713_0);
|
|
methods += new qt_gsi::GenericMethod ("*rowsInserted", "@brief Virtual method void QTableView::rowsInserted(const QModelIndex &parent, int start, int end)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_rowsInserted_3713_0, &_call_cbs_rowsInserted_3713_0, &_set_callback_cbs_rowsInserted_3713_0);
|
|
methods += new qt_gsi::GenericMethod ("*scheduleDelayedItemsLayout", "@brief Method void QTableView::scheduleDelayedItemsLayout()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_scheduleDelayedItemsLayout_0, &_call_fp_scheduleDelayedItemsLayout_0);
|
|
methods += new qt_gsi::GenericMethod ("*scrollContentsBy", "@hide", false, &_init_cbs_scrollContentsBy_1426_0, &_call_cbs_scrollContentsBy_1426_0);
|
|
methods += new qt_gsi::GenericMethod ("*scrollContentsBy", "@brief Virtual method void QTableView::scrollContentsBy(int dx, int dy)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_scrollContentsBy_1426_0, &_call_cbs_scrollContentsBy_1426_0, &_set_callback_cbs_scrollContentsBy_1426_0);
|
|
methods += new qt_gsi::GenericMethod ("*scrollDirtyRegion", "@brief Method void QTableView::scrollDirtyRegion(int dx, int dy)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_scrollDirtyRegion_1426, &_call_fp_scrollDirtyRegion_1426);
|
|
methods += new qt_gsi::GenericMethod ("scrollTo", "@hide", false, &_init_cbs_scrollTo_5576_1, &_call_cbs_scrollTo_5576_1);
|
|
methods += new qt_gsi::GenericMethod ("scrollTo", "@brief Virtual method void QTableView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_scrollTo_5576_1, &_call_cbs_scrollTo_5576_1, &_set_callback_cbs_scrollTo_5576_1);
|
|
methods += new qt_gsi::GenericMethod ("selectAll", "@hide", false, &_init_cbs_selectAll_0_0, &_call_cbs_selectAll_0_0);
|
|
methods += new qt_gsi::GenericMethod ("selectAll", "@brief Virtual method void QTableView::selectAll()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_selectAll_0_0, &_call_cbs_selectAll_0_0, &_set_callback_cbs_selectAll_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*selectedIndexes", "@hide", true, &_init_cbs_selectedIndexes_c0_0, &_call_cbs_selectedIndexes_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*selectedIndexes", "@brief Virtual method QList<QModelIndex> QTableView::selectedIndexes()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_selectedIndexes_c0_0, &_call_cbs_selectedIndexes_c0_0, &_set_callback_cbs_selectedIndexes_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*selectionChanged", "@hide", false, &_init_cbs_selectionChanged_5346_0, &_call_cbs_selectionChanged_5346_0);
|
|
methods += new qt_gsi::GenericMethod ("*selectionChanged", "@brief Virtual method void QTableView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_selectionChanged_5346_0, &_call_cbs_selectionChanged_5346_0, &_set_callback_cbs_selectionChanged_5346_0);
|
|
methods += new qt_gsi::GenericMethod ("*selectionCommand", "@hide", true, &_init_cbs_selectionCommand_c4199_1, &_call_cbs_selectionCommand_c4199_1);
|
|
methods += new qt_gsi::GenericMethod ("*selectionCommand", "@brief Virtual method QFlags<QItemSelectionModel::SelectionFlag> QTableView::selectionCommand(const QModelIndex &index, const QEvent *event)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_selectionCommand_c4199_1, &_call_cbs_selectionCommand_c4199_1, &_set_callback_cbs_selectionCommand_c4199_1);
|
|
methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QTableView::sender()\nThis 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 ("*setDirtyRegion", "@brief Method void QTableView::setDirtyRegion(const QRegion ®ion)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setDirtyRegion_2006, &_call_fp_setDirtyRegion_2006);
|
|
methods += new qt_gsi::GenericMethod ("*setHorizontalStepsPerItem", "@brief Method void QTableView::setHorizontalStepsPerItem(int steps)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setHorizontalStepsPerItem_767, &_call_fp_setHorizontalStepsPerItem_767);
|
|
methods += new qt_gsi::GenericMethod ("setModel", "@hide", false, &_init_cbs_setModel_2419_0, &_call_cbs_setModel_2419_0);
|
|
methods += new qt_gsi::GenericMethod ("setModel", "@brief Virtual method void QTableView::setModel(QAbstractItemModel *model)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setModel_2419_0, &_call_cbs_setModel_2419_0, &_set_callback_cbs_setModel_2419_0);
|
|
methods += new qt_gsi::GenericMethod ("setRootIndex", "@hide", false, &_init_cbs_setRootIndex_2395_0, &_call_cbs_setRootIndex_2395_0);
|
|
methods += new qt_gsi::GenericMethod ("setRootIndex", "@brief Virtual method void QTableView::setRootIndex(const QModelIndex &index)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setRootIndex_2395_0, &_call_cbs_setRootIndex_2395_0, &_set_callback_cbs_setRootIndex_2395_0);
|
|
methods += new qt_gsi::GenericMethod ("*setSelection", "@hide", false, &_init_cbs_setSelection_6155_0, &_call_cbs_setSelection_6155_0);
|
|
methods += new qt_gsi::GenericMethod ("*setSelection", "@brief Virtual method void QTableView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setSelection_6155_0, &_call_cbs_setSelection_6155_0, &_set_callback_cbs_setSelection_6155_0);
|
|
methods += new qt_gsi::GenericMethod ("setSelectionModel", "@hide", false, &_init_cbs_setSelectionModel_2533_0, &_call_cbs_setSelectionModel_2533_0);
|
|
methods += new qt_gsi::GenericMethod ("setSelectionModel", "@brief Virtual method void QTableView::setSelectionModel(QItemSelectionModel *selectionModel)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setSelectionModel_2533_0, &_call_cbs_setSelectionModel_2533_0, &_set_callback_cbs_setSelectionModel_2533_0);
|
|
methods += new qt_gsi::GenericMethod ("*setState", "@brief Method void QTableView::setState(QAbstractItemView::State state)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setState_2776, &_call_fp_setState_2776);
|
|
methods += new qt_gsi::GenericMethod ("*setVerticalStepsPerItem", "@brief Method void QTableView::setVerticalStepsPerItem(int steps)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setVerticalStepsPerItem_767, &_call_fp_setVerticalStepsPerItem_767);
|
|
methods += new qt_gsi::GenericMethod ("*setViewportMargins", "@brief Method void QTableView::setViewportMargins(int left, int top, int right, int bottom)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setViewportMargins_2744, &_call_fp_setViewportMargins_2744);
|
|
methods += new qt_gsi::GenericMethod ("*setViewportMargins", "@brief Method void QTableView::setViewportMargins(const QMargins &margins)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setViewportMargins_2115, &_call_fp_setViewportMargins_2115);
|
|
methods += new qt_gsi::GenericMethod ("setVisible", "@hide", false, &_init_cbs_setVisible_864_0, &_call_cbs_setVisible_864_0);
|
|
methods += new qt_gsi::GenericMethod ("setVisible", "@brief Virtual method void QTableView::setVisible(bool visible)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setVisible_864_0, &_call_cbs_setVisible_864_0, &_set_callback_cbs_setVisible_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*setupViewport", "@brief Method void QTableView::setupViewport(QWidget *viewport)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setupViewport_1315, &_call_fp_setupViewport_1315);
|
|
methods += new qt_gsi::GenericMethod ("*showEvent", "@hide", false, &_init_cbs_showEvent_1634_0, &_call_cbs_showEvent_1634_0);
|
|
methods += new qt_gsi::GenericMethod ("*showEvent", "@brief Virtual method void QTableView::showEvent(QShowEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_showEvent_1634_0, &_call_cbs_showEvent_1634_0, &_set_callback_cbs_showEvent_1634_0);
|
|
methods += new qt_gsi::GenericMethod ("sizeHint", "@hide", true, &_init_cbs_sizeHint_c0_0, &_call_cbs_sizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Virtual method QSize QTableView::sizeHint()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_sizeHint_c0_0, &_call_cbs_sizeHint_c0_0, &_set_callback_cbs_sizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*sizeHintForColumn", "@hide", true, &_init_cbs_sizeHintForColumn_c767_0, &_call_cbs_sizeHintForColumn_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*sizeHintForColumn", "@brief Virtual method int QTableView::sizeHintForColumn(int column)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_sizeHintForColumn_c767_0, &_call_cbs_sizeHintForColumn_c767_0, &_set_callback_cbs_sizeHintForColumn_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*sizeHintForRow", "@hide", true, &_init_cbs_sizeHintForRow_c767_0, &_call_cbs_sizeHintForRow_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*sizeHintForRow", "@brief Virtual method int QTableView::sizeHintForRow(int row)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_sizeHintForRow_c767_0, &_call_cbs_sizeHintForRow_c767_0, &_set_callback_cbs_sizeHintForRow_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*startAutoScroll", "@brief Method void QTableView::startAutoScroll()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_startAutoScroll_0, &_call_fp_startAutoScroll_0);
|
|
methods += new qt_gsi::GenericMethod ("*startDrag", "@hide", false, &_init_cbs_startDrag_2456_0, &_call_cbs_startDrag_2456_0);
|
|
methods += new qt_gsi::GenericMethod ("*startDrag", "@brief Virtual method void QTableView::startDrag(QFlags<Qt::DropAction> supportedActions)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_startDrag_2456_0, &_call_cbs_startDrag_2456_0, &_set_callback_cbs_startDrag_2456_0);
|
|
methods += new qt_gsi::GenericMethod ("*state", "@brief Method QAbstractItemView::State QTableView::state()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_state_c0, &_call_fp_state_c0);
|
|
methods += new qt_gsi::GenericMethod ("*stopAutoScroll", "@brief Method void QTableView::stopAutoScroll()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_stopAutoScroll_0, &_call_fp_stopAutoScroll_0);
|
|
methods += new qt_gsi::GenericMethod ("*styleChange", "@hide", false, &_init_cbs_styleChange_1228_0, &_call_cbs_styleChange_1228_0);
|
|
methods += new qt_gsi::GenericMethod ("*styleChange", "@brief Virtual method void QTableView::styleChange(QStyle &)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_styleChange_1228_0, &_call_cbs_styleChange_1228_0, &_set_callback_cbs_styleChange_1228_0);
|
|
methods += new qt_gsi::GenericMethod ("*tabletEvent", "@hide", false, &_init_cbs_tabletEvent_1821_0, &_call_cbs_tabletEvent_1821_0);
|
|
methods += new qt_gsi::GenericMethod ("*tabletEvent", "@brief Virtual method void QTableView::tabletEvent(QTabletEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_tabletEvent_1821_0, &_call_cbs_tabletEvent_1821_0, &_set_callback_cbs_tabletEvent_1821_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 QTableView::timerEvent(QTimerEvent *event)\nThis 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);
|
|
methods += new qt_gsi::GenericMethod ("*updateEditorData", "@hide", false, &_init_cbs_updateEditorData_0_0, &_call_cbs_updateEditorData_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*updateEditorData", "@brief Virtual method void QTableView::updateEditorData()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_updateEditorData_0_0, &_call_cbs_updateEditorData_0_0, &_set_callback_cbs_updateEditorData_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*updateEditorGeometries", "@hide", false, &_init_cbs_updateEditorGeometries_0_0, &_call_cbs_updateEditorGeometries_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*updateEditorGeometries", "@brief Virtual method void QTableView::updateEditorGeometries()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_updateEditorGeometries_0_0, &_call_cbs_updateEditorGeometries_0_0, &_set_callback_cbs_updateEditorGeometries_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*updateGeometries", "@hide", false, &_init_cbs_updateGeometries_0_0, &_call_cbs_updateGeometries_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*updateGeometries", "@brief Virtual method void QTableView::updateGeometries()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_updateGeometries_0_0, &_call_cbs_updateGeometries_0_0, &_set_callback_cbs_updateGeometries_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*updateMicroFocus", "@brief Method void QTableView::updateMicroFocus()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_updateMicroFocus_0, &_call_fp_updateMicroFocus_0);
|
|
methods += new qt_gsi::GenericMethod ("*verticalOffset", "@hide", true, &_init_cbs_verticalOffset_c0_0, &_call_cbs_verticalOffset_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*verticalOffset", "@brief Virtual method int QTableView::verticalOffset()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_verticalOffset_c0_0, &_call_cbs_verticalOffset_c0_0, &_set_callback_cbs_verticalOffset_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*verticalScrollbarAction", "@hide", false, &_init_cbs_verticalScrollbarAction_767_0, &_call_cbs_verticalScrollbarAction_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*verticalScrollbarAction", "@brief Virtual method void QTableView::verticalScrollbarAction(int action)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_verticalScrollbarAction_767_0, &_call_cbs_verticalScrollbarAction_767_0, &_set_callback_cbs_verticalScrollbarAction_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*verticalScrollbarValueChanged", "@hide", false, &_init_cbs_verticalScrollbarValueChanged_767_0, &_call_cbs_verticalScrollbarValueChanged_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*verticalScrollbarValueChanged", "@brief Virtual method void QTableView::verticalScrollbarValueChanged(int value)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_verticalScrollbarValueChanged_767_0, &_call_cbs_verticalScrollbarValueChanged_767_0, &_set_callback_cbs_verticalScrollbarValueChanged_767_0);
|
|
methods += new qt_gsi::GenericMethod ("*verticalStepsPerItem", "@brief Method int QTableView::verticalStepsPerItem()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_verticalStepsPerItem_c0, &_call_fp_verticalStepsPerItem_c0);
|
|
methods += new qt_gsi::GenericMethod ("*viewOptions", "@hide", true, &_init_cbs_viewOptions_c0_0, &_call_cbs_viewOptions_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*viewOptions", "@brief Virtual method QStyleOptionViewItem QTableView::viewOptions()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_viewOptions_c0_0, &_call_cbs_viewOptions_c0_0, &_set_callback_cbs_viewOptions_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_viewportEntered", "@brief Emitter for signal void QTableView::viewportEntered()\nCall this method to emit this signal.", false, &_init_emitter_viewportEntered_0, &_call_emitter_viewportEntered_0);
|
|
methods += new qt_gsi::GenericMethod ("*viewportEvent", "@hide", false, &_init_cbs_viewportEvent_1217_0, &_call_cbs_viewportEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*viewportEvent", "@brief Virtual method bool QTableView::viewportEvent(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_viewportEvent_1217_0, &_call_cbs_viewportEvent_1217_0, &_set_callback_cbs_viewportEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("visualRect", "@hide", true, &_init_cbs_visualRect_c2395_0, &_call_cbs_visualRect_c2395_0);
|
|
methods += new qt_gsi::GenericMethod ("visualRect", "@brief Virtual method QRect QTableView::visualRect(const QModelIndex &index)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_visualRect_c2395_0, &_call_cbs_visualRect_c2395_0, &_set_callback_cbs_visualRect_c2395_0);
|
|
methods += new qt_gsi::GenericMethod ("*visualRegionForSelection", "@hide", true, &_init_cbs_visualRegionForSelection_c2727_0, &_call_cbs_visualRegionForSelection_c2727_0);
|
|
methods += new qt_gsi::GenericMethod ("*visualRegionForSelection", "@brief Virtual method QRegion QTableView::visualRegionForSelection(const QItemSelection &selection)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_visualRegionForSelection_c2727_0, &_call_cbs_visualRegionForSelection_c2727_0, &_set_callback_cbs_visualRegionForSelection_c2727_0);
|
|
methods += new qt_gsi::GenericMethod ("*wheelEvent", "@hide", false, &_init_cbs_wheelEvent_1718_0, &_call_cbs_wheelEvent_1718_0);
|
|
methods += new qt_gsi::GenericMethod ("*wheelEvent", "@brief Virtual method void QTableView::wheelEvent(QWheelEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_wheelEvent_1718_0, &_call_cbs_wheelEvent_1718_0, &_set_callback_cbs_wheelEvent_1718_0);
|
|
methods += new qt_gsi::GenericMethod ("*windowActivationChange", "@hide", false, &_init_cbs_windowActivationChange_864_0, &_call_cbs_windowActivationChange_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*windowActivationChange", "@brief Virtual method void QTableView::windowActivationChange(bool)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_windowActivationChange_864_0, &_call_cbs_windowActivationChange_864_0, &_set_callback_cbs_windowActivationChange_864_0);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QTableView_Adaptor> decl_QTableView_Adaptor (qtdecl_QTableView (), "QTableView",
|
|
methods_QTableView_Adaptor (),
|
|
"@qt\n@brief Binding of QTableView");
|
|
|
|
}
|
|
|