mirror of https://github.com/KLayout/klayout.git
6473 lines
268 KiB
C++
6473 lines
268 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 gsiDeclQHeaderView.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QHeaderView>
|
|
#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 <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 <QStyleOptionHeader>
|
|
#include <QStyleOptionViewItem>
|
|
#include <QTabletEvent>
|
|
#include <QThread>
|
|
#include <QTimerEvent>
|
|
#include <QWheelEvent>
|
|
#include <QWidget>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QHeaderView
|
|
|
|
// 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 &> (QHeaderView::staticMetaObject);
|
|
}
|
|
|
|
|
|
// bool QHeaderView::cascadingSectionResizes()
|
|
|
|
|
|
static void _init_f_cascadingSectionResizes_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_cascadingSectionResizes_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->cascadingSectionResizes ());
|
|
}
|
|
|
|
|
|
// int QHeaderView::count()
|
|
|
|
|
|
static void _init_f_count_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_count_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->count ());
|
|
}
|
|
|
|
|
|
// QFlags<Qt::AlignmentFlag> QHeaderView::defaultAlignment()
|
|
|
|
|
|
static void _init_f_defaultAlignment_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QFlags<Qt::AlignmentFlag> > ();
|
|
}
|
|
|
|
static void _call_f_defaultAlignment_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QFlags<Qt::AlignmentFlag> > ((QFlags<Qt::AlignmentFlag>)((QHeaderView *)cls)->defaultAlignment ());
|
|
}
|
|
|
|
|
|
// int QHeaderView::defaultSectionSize()
|
|
|
|
|
|
static void _init_f_defaultSectionSize_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_defaultSectionSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->defaultSectionSize ());
|
|
}
|
|
|
|
|
|
// ()
|
|
|
|
|
|
static void _init_f_doItemsLayout_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_doItemsLayout_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->doItemsLayout ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::headerDataChanged(Qt::Orientation orientation, int logicalFirst, int logicalLast)
|
|
|
|
|
|
static void _init_f_headerDataChanged_3231 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("orientation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::Orientation>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("logicalFirst");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("logicalLast");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_headerDataChanged_3231 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<Qt::Orientation>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::Orientation>::target_type & > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->headerDataChanged (qt_gsi::QtToCppAdaptor<Qt::Orientation>(arg1).cref(), arg2, arg3);
|
|
}
|
|
|
|
|
|
// int QHeaderView::hiddenSectionCount()
|
|
|
|
|
|
static void _init_f_hiddenSectionCount_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_hiddenSectionCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->hiddenSectionCount ());
|
|
}
|
|
|
|
|
|
// void QHeaderView::hideSection(int logicalIndex)
|
|
|
|
|
|
static void _init_f_hideSection_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_hideSection_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);
|
|
((QHeaderView *)cls)->hideSection (arg1);
|
|
}
|
|
|
|
|
|
// bool QHeaderView::highlightSections()
|
|
|
|
|
|
static void _init_f_highlightSections_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_highlightSections_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->highlightSections ());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::isClickable()
|
|
|
|
|
|
static void _init_f_isClickable_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isClickable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->isClickable ());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::isMovable()
|
|
|
|
|
|
static void _init_f_isMovable_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isMovable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->isMovable ());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::isSectionHidden(int logicalIndex)
|
|
|
|
|
|
static void _init_f_isSectionHidden_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isSectionHidden_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)((QHeaderView *)cls)->isSectionHidden (arg1));
|
|
}
|
|
|
|
|
|
// bool QHeaderView::isSortIndicatorShown()
|
|
|
|
|
|
static void _init_f_isSortIndicatorShown_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isSortIndicatorShown_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->isSortIndicatorShown ());
|
|
}
|
|
|
|
|
|
// int QHeaderView::length()
|
|
|
|
|
|
static void _init_f_length_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_length_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->length ());
|
|
}
|
|
|
|
|
|
// int QHeaderView::logicalIndex(int visualIndex)
|
|
|
|
|
|
static void _init_f_logicalIndex_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("visualIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_logicalIndex_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)((QHeaderView *)cls)->logicalIndex (arg1));
|
|
}
|
|
|
|
|
|
// int QHeaderView::logicalIndexAt(int position)
|
|
|
|
|
|
static void _init_f_logicalIndexAt_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("position");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_logicalIndexAt_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)((QHeaderView *)cls)->logicalIndexAt (arg1));
|
|
}
|
|
|
|
|
|
// int QHeaderView::logicalIndexAt(int x, int y)
|
|
|
|
|
|
static void _init_f_logicalIndexAt_c1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("y");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_logicalIndexAt_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)((QHeaderView *)cls)->logicalIndexAt (arg1, arg2));
|
|
}
|
|
|
|
|
|
// int QHeaderView::logicalIndexAt(const QPoint &pos)
|
|
|
|
|
|
static void _init_f_logicalIndexAt_c1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pos");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_logicalIndexAt_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<int > ((int)((QHeaderView *)cls)->logicalIndexAt (arg1));
|
|
}
|
|
|
|
|
|
// int QHeaderView::minimumSectionSize()
|
|
|
|
|
|
static void _init_f_minimumSectionSize_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_minimumSectionSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->minimumSectionSize ());
|
|
}
|
|
|
|
|
|
// void QHeaderView::moveSection(int from, int to)
|
|
|
|
|
|
static void _init_f_moveSection_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("from");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("to");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_moveSection_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);
|
|
((QHeaderView *)cls)->moveSection (arg1, arg2);
|
|
}
|
|
|
|
|
|
// int QHeaderView::offset()
|
|
|
|
|
|
static void _init_f_offset_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_offset_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->offset ());
|
|
}
|
|
|
|
|
|
// Qt::Orientation QHeaderView::orientation()
|
|
|
|
|
|
static void _init_f_orientation_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qt_gsi::Converter<Qt::Orientation>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_orientation_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qt_gsi::Converter<Qt::Orientation>::target_type > ((qt_gsi::Converter<Qt::Orientation>::target_type)qt_gsi::CppToQtAdaptor<Qt::Orientation>(((QHeaderView *)cls)->orientation ()));
|
|
}
|
|
|
|
|
|
// ()
|
|
|
|
|
|
static void _init_f_reset_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_reset_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->reset ();
|
|
}
|
|
|
|
|
|
// QHeaderView::ResizeMode QHeaderView::resizeMode(int logicalIndex)
|
|
|
|
|
|
static void _init_f_resizeMode_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<qt_gsi::Converter<QHeaderView::ResizeMode>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_resizeMode_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<qt_gsi::Converter<QHeaderView::ResizeMode>::target_type > ((qt_gsi::Converter<QHeaderView::ResizeMode>::target_type)qt_gsi::CppToQtAdaptor<QHeaderView::ResizeMode>(((QHeaderView *)cls)->resizeMode (arg1)));
|
|
}
|
|
|
|
|
|
// void QHeaderView::resizeSection(int logicalIndex, int size)
|
|
|
|
|
|
static void _init_f_resizeSection_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("size");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_resizeSection_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);
|
|
((QHeaderView *)cls)->resizeSection (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QHeaderView::resizeSections(QHeaderView::ResizeMode mode)
|
|
|
|
|
|
static void _init_f_resizeSections_2644 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_resizeSections_2644 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & arg1 = args.read<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->resizeSections (qt_gsi::QtToCppAdaptor<QHeaderView::ResizeMode>(arg1).cref());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::restoreState(const QByteArray &state)
|
|
|
|
|
|
static void _init_f_restoreState_2309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("state");
|
|
decl->add_arg<const QByteArray & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_restoreState_2309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QByteArray &arg1 = args.read<const QByteArray & > (heap);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->restoreState (arg1));
|
|
}
|
|
|
|
|
|
// QByteArray QHeaderView::saveState()
|
|
|
|
|
|
static void _init_f_saveState_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QByteArray > ();
|
|
}
|
|
|
|
static void _call_f_saveState_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QByteArray > ((QByteArray)((QHeaderView *)cls)->saveState ());
|
|
}
|
|
|
|
|
|
// int QHeaderView::sectionPosition(int logicalIndex)
|
|
|
|
|
|
static void _init_f_sectionPosition_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_sectionPosition_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)((QHeaderView *)cls)->sectionPosition (arg1));
|
|
}
|
|
|
|
|
|
// int QHeaderView::sectionSize(int logicalIndex)
|
|
|
|
|
|
static void _init_f_sectionSize_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_sectionSize_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)((QHeaderView *)cls)->sectionSize (arg1));
|
|
}
|
|
|
|
|
|
// int QHeaderView::sectionSizeHint(int logicalIndex)
|
|
|
|
|
|
static void _init_f_sectionSizeHint_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_sectionSizeHint_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)((QHeaderView *)cls)->sectionSizeHint (arg1));
|
|
}
|
|
|
|
|
|
// int QHeaderView::sectionViewportPosition(int logicalIndex)
|
|
|
|
|
|
static void _init_f_sectionViewportPosition_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_sectionViewportPosition_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)((QHeaderView *)cls)->sectionViewportPosition (arg1));
|
|
}
|
|
|
|
|
|
// bool QHeaderView::sectionsHidden()
|
|
|
|
|
|
static void _init_f_sectionsHidden_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_sectionsHidden_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->sectionsHidden ());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::sectionsMoved()
|
|
|
|
|
|
static void _init_f_sectionsMoved_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_sectionsMoved_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->sectionsMoved ());
|
|
}
|
|
|
|
|
|
// void QHeaderView::setCascadingSectionResizes(bool enable)
|
|
|
|
|
|
static void _init_f_setCascadingSectionResizes_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_setCascadingSectionResizes_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);
|
|
((QHeaderView *)cls)->setCascadingSectionResizes (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setClickable(bool clickable)
|
|
|
|
|
|
static void _init_f_setClickable_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("clickable");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setClickable_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);
|
|
((QHeaderView *)cls)->setClickable (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setDefaultAlignment(QFlags<Qt::AlignmentFlag> alignment)
|
|
|
|
|
|
static void _init_f_setDefaultAlignment_2750 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("alignment");
|
|
decl->add_arg<QFlags<Qt::AlignmentFlag> > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setDefaultAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFlags<Qt::AlignmentFlag> arg1 = args.read<QFlags<Qt::AlignmentFlag> > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->setDefaultAlignment (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setDefaultSectionSize(int size)
|
|
|
|
|
|
static void _init_f_setDefaultSectionSize_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("size");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setDefaultSectionSize_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);
|
|
((QHeaderView *)cls)->setDefaultSectionSize (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setHighlightSections(bool highlight)
|
|
|
|
|
|
static void _init_f_setHighlightSections_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("highlight");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setHighlightSections_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);
|
|
((QHeaderView *)cls)->setHighlightSections (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setMinimumSectionSize(int size)
|
|
|
|
|
|
static void _init_f_setMinimumSectionSize_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("size");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setMinimumSectionSize_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);
|
|
((QHeaderView *)cls)->setMinimumSectionSize (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);
|
|
((QHeaderView *)cls)->setModel (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setMovable(bool movable)
|
|
|
|
|
|
static void _init_f_setMovable_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("movable");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setMovable_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);
|
|
((QHeaderView *)cls)->setMovable (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setOffset(int offset)
|
|
|
|
|
|
static void _init_f_setOffset_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("offset");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setOffset_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);
|
|
((QHeaderView *)cls)->setOffset (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setOffsetToLastSection()
|
|
|
|
|
|
static void _init_f_setOffsetToLastSection_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setOffsetToLastSection_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->setOffsetToLastSection ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::setOffsetToSectionPosition(int visualIndex)
|
|
|
|
|
|
static void _init_f_setOffsetToSectionPosition_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("visualIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setOffsetToSectionPosition_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);
|
|
((QHeaderView *)cls)->setOffsetToSectionPosition (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setResizeMode(QHeaderView::ResizeMode mode)
|
|
|
|
|
|
static void _init_f_setResizeMode_2644 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setResizeMode_2644 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & arg1 = args.read<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->setResizeMode (qt_gsi::QtToCppAdaptor<QHeaderView::ResizeMode>(arg1).cref());
|
|
}
|
|
|
|
|
|
// void QHeaderView::setResizeMode(int logicalIndex, QHeaderView::ResizeMode mode)
|
|
|
|
|
|
static void _init_f_setResizeMode_3303 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setResizeMode_3303 (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<QHeaderView::ResizeMode>::target_type & arg2 = args.read<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView *)cls)->setResizeMode (arg1, qt_gsi::QtToCppAdaptor<QHeaderView::ResizeMode>(arg2).cref());
|
|
}
|
|
|
|
|
|
// void QHeaderView::setSectionHidden(int logicalIndex, bool hide)
|
|
|
|
|
|
static void _init_f_setSectionHidden_1523 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
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_setSectionHidden_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);
|
|
((QHeaderView *)cls)->setSectionHidden (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setSortIndicator(int logicalIndex, Qt::SortOrder order)
|
|
|
|
|
|
static void _init_f_setSortIndicator_2340 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
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_setSortIndicator_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);
|
|
((QHeaderView *)cls)->setSortIndicator (arg1, qt_gsi::QtToCppAdaptor<Qt::SortOrder>(arg2).cref());
|
|
}
|
|
|
|
|
|
// void QHeaderView::setSortIndicatorShown(bool show)
|
|
|
|
|
|
static void _init_f_setSortIndicatorShown_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_setSortIndicatorShown_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);
|
|
((QHeaderView *)cls)->setSortIndicatorShown (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::setStretchLastSection(bool stretch)
|
|
|
|
|
|
static void _init_f_setStretchLastSection_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("stretch");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setStretchLastSection_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);
|
|
((QHeaderView *)cls)->setStretchLastSection (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::showSection(int logicalIndex)
|
|
|
|
|
|
static void _init_f_showSection_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_showSection_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);
|
|
((QHeaderView *)cls)->showSection (arg1);
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QHeaderView *)cls)->sizeHint ());
|
|
}
|
|
|
|
|
|
// Qt::SortOrder QHeaderView::sortIndicatorOrder()
|
|
|
|
|
|
static void _init_f_sortIndicatorOrder_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qt_gsi::Converter<Qt::SortOrder>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_sortIndicatorOrder_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qt_gsi::Converter<Qt::SortOrder>::target_type > ((qt_gsi::Converter<Qt::SortOrder>::target_type)qt_gsi::CppToQtAdaptor<Qt::SortOrder>(((QHeaderView *)cls)->sortIndicatorOrder ()));
|
|
}
|
|
|
|
|
|
// int QHeaderView::sortIndicatorSection()
|
|
|
|
|
|
static void _init_f_sortIndicatorSection_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_sortIndicatorSection_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->sortIndicatorSection ());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::stretchLastSection()
|
|
|
|
|
|
static void _init_f_stretchLastSection_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_stretchLastSection_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QHeaderView *)cls)->stretchLastSection ());
|
|
}
|
|
|
|
|
|
// int QHeaderView::stretchSectionCount()
|
|
|
|
|
|
static void _init_f_stretchSectionCount_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_stretchSectionCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QHeaderView *)cls)->stretchSectionCount ());
|
|
}
|
|
|
|
|
|
// void QHeaderView::swapSections(int first, int second)
|
|
|
|
|
|
static void _init_f_swapSections_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("first");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("second");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_swapSections_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);
|
|
((QHeaderView *)cls)->swapSections (arg1, arg2);
|
|
}
|
|
|
|
|
|
// int QHeaderView::visualIndex(int logicalIndex)
|
|
|
|
|
|
static void _init_f_visualIndex_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_visualIndex_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)((QHeaderView *)cls)->visualIndex (arg1));
|
|
}
|
|
|
|
|
|
// int QHeaderView::visualIndexAt(int position)
|
|
|
|
|
|
static void _init_f_visualIndexAt_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("position");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_visualIndexAt_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)((QHeaderView *)cls)->visualIndexAt (arg1));
|
|
}
|
|
|
|
|
|
// static QString QHeaderView::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)QHeaderView::tr (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QHeaderView::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)QHeaderView::tr (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QString QHeaderView::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)QHeaderView::trUtf8 (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QHeaderView::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)QHeaderView::trUtf8 (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QHeaderView () {
|
|
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 (":cascadingSectionResizes", "@brief Method bool QHeaderView::cascadingSectionResizes()\n", true, &_init_f_cascadingSectionResizes_c0, &_call_f_cascadingSectionResizes_c0);
|
|
methods += new qt_gsi::GenericMethod ("count", "@brief Method int QHeaderView::count()\n", true, &_init_f_count_c0, &_call_f_count_c0);
|
|
methods += new qt_gsi::GenericMethod (":defaultAlignment", "@brief Method QFlags<Qt::AlignmentFlag> QHeaderView::defaultAlignment()\n", true, &_init_f_defaultAlignment_c0, &_call_f_defaultAlignment_c0);
|
|
methods += new qt_gsi::GenericMethod (":defaultSectionSize", "@brief Method int QHeaderView::defaultSectionSize()\n", true, &_init_f_defaultSectionSize_c0, &_call_f_defaultSectionSize_c0);
|
|
methods += new qt_gsi::GenericMethod ("doItemsLayout", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::doItemsLayout", false, &_init_f_doItemsLayout_0, &_call_f_doItemsLayout_0);
|
|
methods += new qt_gsi::GenericMethod ("headerDataChanged", "@brief Method void QHeaderView::headerDataChanged(Qt::Orientation orientation, int logicalFirst, int logicalLast)\n", false, &_init_f_headerDataChanged_3231, &_call_f_headerDataChanged_3231);
|
|
methods += new qt_gsi::GenericMethod ("hiddenSectionCount", "@brief Method int QHeaderView::hiddenSectionCount()\n", true, &_init_f_hiddenSectionCount_c0, &_call_f_hiddenSectionCount_c0);
|
|
methods += new qt_gsi::GenericMethod ("hideSection", "@brief Method void QHeaderView::hideSection(int logicalIndex)\n", false, &_init_f_hideSection_767, &_call_f_hideSection_767);
|
|
methods += new qt_gsi::GenericMethod (":highlightSections", "@brief Method bool QHeaderView::highlightSections()\n", true, &_init_f_highlightSections_c0, &_call_f_highlightSections_c0);
|
|
methods += new qt_gsi::GenericMethod ("isClickable?|:clickable", "@brief Method bool QHeaderView::isClickable()\n", true, &_init_f_isClickable_c0, &_call_f_isClickable_c0);
|
|
methods += new qt_gsi::GenericMethod ("isMovable?|:movable", "@brief Method bool QHeaderView::isMovable()\n", true, &_init_f_isMovable_c0, &_call_f_isMovable_c0);
|
|
methods += new qt_gsi::GenericMethod ("isSectionHidden?", "@brief Method bool QHeaderView::isSectionHidden(int logicalIndex)\n", true, &_init_f_isSectionHidden_c767, &_call_f_isSectionHidden_c767);
|
|
methods += new qt_gsi::GenericMethod ("isSortIndicatorShown?|:sortIndicatorShown", "@brief Method bool QHeaderView::isSortIndicatorShown()\n", true, &_init_f_isSortIndicatorShown_c0, &_call_f_isSortIndicatorShown_c0);
|
|
methods += new qt_gsi::GenericMethod ("length", "@brief Method int QHeaderView::length()\n", true, &_init_f_length_c0, &_call_f_length_c0);
|
|
methods += new qt_gsi::GenericMethod ("logicalIndex", "@brief Method int QHeaderView::logicalIndex(int visualIndex)\n", true, &_init_f_logicalIndex_c767, &_call_f_logicalIndex_c767);
|
|
methods += new qt_gsi::GenericMethod ("logicalIndexAt", "@brief Method int QHeaderView::logicalIndexAt(int position)\n", true, &_init_f_logicalIndexAt_c767, &_call_f_logicalIndexAt_c767);
|
|
methods += new qt_gsi::GenericMethod ("logicalIndexAt", "@brief Method int QHeaderView::logicalIndexAt(int x, int y)\n", true, &_init_f_logicalIndexAt_c1426, &_call_f_logicalIndexAt_c1426);
|
|
methods += new qt_gsi::GenericMethod ("logicalIndexAt", "@brief Method int QHeaderView::logicalIndexAt(const QPoint &pos)\n", true, &_init_f_logicalIndexAt_c1916, &_call_f_logicalIndexAt_c1916);
|
|
methods += new qt_gsi::GenericMethod (":minimumSectionSize", "@brief Method int QHeaderView::minimumSectionSize()\n", true, &_init_f_minimumSectionSize_c0, &_call_f_minimumSectionSize_c0);
|
|
methods += new qt_gsi::GenericMethod ("moveSection", "@brief Method void QHeaderView::moveSection(int from, int to)\n", false, &_init_f_moveSection_1426, &_call_f_moveSection_1426);
|
|
methods += new qt_gsi::GenericMethod (":offset", "@brief Method int QHeaderView::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0);
|
|
methods += new qt_gsi::GenericMethod ("orientation", "@brief Method Qt::Orientation QHeaderView::orientation()\n", true, &_init_f_orientation_c0, &_call_f_orientation_c0);
|
|
methods += new qt_gsi::GenericMethod ("reset", "@brief Method ()\nThis is a reimplementation of QAbstractItemView::reset", false, &_init_f_reset_0, &_call_f_reset_0);
|
|
methods += new qt_gsi::GenericMethod ("resizeMode", "@brief Method QHeaderView::ResizeMode QHeaderView::resizeMode(int logicalIndex)\n", true, &_init_f_resizeMode_c767, &_call_f_resizeMode_c767);
|
|
methods += new qt_gsi::GenericMethod ("resizeSection", "@brief Method void QHeaderView::resizeSection(int logicalIndex, int size)\n", false, &_init_f_resizeSection_1426, &_call_f_resizeSection_1426);
|
|
methods += new qt_gsi::GenericMethod ("resizeSections", "@brief Method void QHeaderView::resizeSections(QHeaderView::ResizeMode mode)\n", false, &_init_f_resizeSections_2644, &_call_f_resizeSections_2644);
|
|
methods += new qt_gsi::GenericMethod ("restoreState", "@brief Method bool QHeaderView::restoreState(const QByteArray &state)\n", false, &_init_f_restoreState_2309, &_call_f_restoreState_2309);
|
|
methods += new qt_gsi::GenericMethod ("saveState", "@brief Method QByteArray QHeaderView::saveState()\n", true, &_init_f_saveState_c0, &_call_f_saveState_c0);
|
|
methods += new qt_gsi::GenericMethod ("sectionPosition", "@brief Method int QHeaderView::sectionPosition(int logicalIndex)\n", true, &_init_f_sectionPosition_c767, &_call_f_sectionPosition_c767);
|
|
methods += new qt_gsi::GenericMethod ("sectionSize", "@brief Method int QHeaderView::sectionSize(int logicalIndex)\n", true, &_init_f_sectionSize_c767, &_call_f_sectionSize_c767);
|
|
methods += new qt_gsi::GenericMethod ("sectionSizeHint", "@brief Method int QHeaderView::sectionSizeHint(int logicalIndex)\n", true, &_init_f_sectionSizeHint_c767, &_call_f_sectionSizeHint_c767);
|
|
methods += new qt_gsi::GenericMethod ("sectionViewportPosition", "@brief Method int QHeaderView::sectionViewportPosition(int logicalIndex)\n", true, &_init_f_sectionViewportPosition_c767, &_call_f_sectionViewportPosition_c767);
|
|
methods += new qt_gsi::GenericMethod ("sectionsHidden", "@brief Method bool QHeaderView::sectionsHidden()\n", true, &_init_f_sectionsHidden_c0, &_call_f_sectionsHidden_c0);
|
|
methods += new qt_gsi::GenericMethod ("sectionsMoved", "@brief Method bool QHeaderView::sectionsMoved()\n", true, &_init_f_sectionsMoved_c0, &_call_f_sectionsMoved_c0);
|
|
methods += new qt_gsi::GenericMethod ("setCascadingSectionResizes|cascadingSectionResizes=", "@brief Method void QHeaderView::setCascadingSectionResizes(bool enable)\n", false, &_init_f_setCascadingSectionResizes_864, &_call_f_setCascadingSectionResizes_864);
|
|
methods += new qt_gsi::GenericMethod ("setClickable|clickable=", "@brief Method void QHeaderView::setClickable(bool clickable)\n", false, &_init_f_setClickable_864, &_call_f_setClickable_864);
|
|
methods += new qt_gsi::GenericMethod ("setDefaultAlignment|defaultAlignment=", "@brief Method void QHeaderView::setDefaultAlignment(QFlags<Qt::AlignmentFlag> alignment)\n", false, &_init_f_setDefaultAlignment_2750, &_call_f_setDefaultAlignment_2750);
|
|
methods += new qt_gsi::GenericMethod ("setDefaultSectionSize|defaultSectionSize=", "@brief Method void QHeaderView::setDefaultSectionSize(int size)\n", false, &_init_f_setDefaultSectionSize_767, &_call_f_setDefaultSectionSize_767);
|
|
methods += new qt_gsi::GenericMethod ("setHighlightSections|highlightSections=", "@brief Method void QHeaderView::setHighlightSections(bool highlight)\n", false, &_init_f_setHighlightSections_864, &_call_f_setHighlightSections_864);
|
|
methods += new qt_gsi::GenericMethod ("setMinimumSectionSize|minimumSectionSize=", "@brief Method void QHeaderView::setMinimumSectionSize(int size)\n", false, &_init_f_setMinimumSectionSize_767, &_call_f_setMinimumSectionSize_767);
|
|
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 ("setMovable|movable=", "@brief Method void QHeaderView::setMovable(bool movable)\n", false, &_init_f_setMovable_864, &_call_f_setMovable_864);
|
|
methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QHeaderView::setOffset(int offset)\n", false, &_init_f_setOffset_767, &_call_f_setOffset_767);
|
|
methods += new qt_gsi::GenericMethod ("setOffsetToLastSection", "@brief Method void QHeaderView::setOffsetToLastSection()\n", false, &_init_f_setOffsetToLastSection_0, &_call_f_setOffsetToLastSection_0);
|
|
methods += new qt_gsi::GenericMethod ("setOffsetToSectionPosition", "@brief Method void QHeaderView::setOffsetToSectionPosition(int visualIndex)\n", false, &_init_f_setOffsetToSectionPosition_767, &_call_f_setOffsetToSectionPosition_767);
|
|
methods += new qt_gsi::GenericMethod ("setResizeMode", "@brief Method void QHeaderView::setResizeMode(QHeaderView::ResizeMode mode)\n", false, &_init_f_setResizeMode_2644, &_call_f_setResizeMode_2644);
|
|
methods += new qt_gsi::GenericMethod ("setResizeMode", "@brief Method void QHeaderView::setResizeMode(int logicalIndex, QHeaderView::ResizeMode mode)\n", false, &_init_f_setResizeMode_3303, &_call_f_setResizeMode_3303);
|
|
methods += new qt_gsi::GenericMethod ("setSectionHidden", "@brief Method void QHeaderView::setSectionHidden(int logicalIndex, bool hide)\n", false, &_init_f_setSectionHidden_1523, &_call_f_setSectionHidden_1523);
|
|
methods += new qt_gsi::GenericMethod ("setSortIndicator", "@brief Method void QHeaderView::setSortIndicator(int logicalIndex, Qt::SortOrder order)\n", false, &_init_f_setSortIndicator_2340, &_call_f_setSortIndicator_2340);
|
|
methods += new qt_gsi::GenericMethod ("setSortIndicatorShown|sortIndicatorShown=", "@brief Method void QHeaderView::setSortIndicatorShown(bool show)\n", false, &_init_f_setSortIndicatorShown_864, &_call_f_setSortIndicatorShown_864);
|
|
methods += new qt_gsi::GenericMethod ("setStretchLastSection|stretchLastSection=", "@brief Method void QHeaderView::setStretchLastSection(bool stretch)\n", false, &_init_f_setStretchLastSection_864, &_call_f_setStretchLastSection_864);
|
|
methods += new qt_gsi::GenericMethod ("showSection", "@brief Method void QHeaderView::showSection(int logicalIndex)\n", false, &_init_f_showSection_767, &_call_f_showSection_767);
|
|
methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QAbstractScrollArea::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0);
|
|
methods += new qt_gsi::GenericMethod ("sortIndicatorOrder", "@brief Method Qt::SortOrder QHeaderView::sortIndicatorOrder()\n", true, &_init_f_sortIndicatorOrder_c0, &_call_f_sortIndicatorOrder_c0);
|
|
methods += new qt_gsi::GenericMethod ("sortIndicatorSection", "@brief Method int QHeaderView::sortIndicatorSection()\n", true, &_init_f_sortIndicatorSection_c0, &_call_f_sortIndicatorSection_c0);
|
|
methods += new qt_gsi::GenericMethod (":stretchLastSection", "@brief Method bool QHeaderView::stretchLastSection()\n", true, &_init_f_stretchLastSection_c0, &_call_f_stretchLastSection_c0);
|
|
methods += new qt_gsi::GenericMethod ("stretchSectionCount", "@brief Method int QHeaderView::stretchSectionCount()\n", true, &_init_f_stretchSectionCount_c0, &_call_f_stretchSectionCount_c0);
|
|
methods += new qt_gsi::GenericMethod ("swapSections", "@brief Method void QHeaderView::swapSections(int first, int second)\n", false, &_init_f_swapSections_1426, &_call_f_swapSections_1426);
|
|
methods += new qt_gsi::GenericMethod ("visualIndex", "@brief Method int QHeaderView::visualIndex(int logicalIndex)\n", true, &_init_f_visualIndex_c767, &_call_f_visualIndex_c767);
|
|
methods += new qt_gsi::GenericMethod ("visualIndexAt", "@brief Method int QHeaderView::visualIndexAt(int position)\n", true, &_init_f_visualIndexAt_c767, &_call_f_visualIndexAt_c767);
|
|
methods += gsi::qt_signal<const QModelIndex & > ("activated(const QModelIndex &)", "activated", gsi::arg("index"), "@brief Signal declaration for QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::entered(const QModelIndex &index)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("geometriesChanged()", "geometriesChanged", "@brief Signal declaration for QHeaderView::geometriesChanged()\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 QHeaderView::pressed(const QModelIndex &index)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int, const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > ("sectionAutoResize(int, QHeaderView::ResizeMode)", "sectionAutoResize", gsi::arg("logicalIndex"), gsi::arg("mode"), "@brief Signal declaration for QHeaderView::sectionAutoResize(int logicalIndex, QHeaderView::ResizeMode mode)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int > ("sectionClicked(int)", "sectionClicked", gsi::arg("logicalIndex"), "@brief Signal declaration for QHeaderView::sectionClicked(int logicalIndex)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int, int > ("sectionCountChanged(int, int)", "sectionCountChanged", gsi::arg("oldCount"), gsi::arg("newCount"), "@brief Signal declaration for QHeaderView::sectionCountChanged(int oldCount, int newCount)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int > ("sectionDoubleClicked(int)", "sectionDoubleClicked", gsi::arg("logicalIndex"), "@brief Signal declaration for QHeaderView::sectionDoubleClicked(int logicalIndex)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int > ("sectionEntered(int)", "sectionEntered", gsi::arg("logicalIndex"), "@brief Signal declaration for QHeaderView::sectionEntered(int logicalIndex)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int > ("sectionHandleDoubleClicked(int)", "sectionHandleDoubleClicked", gsi::arg("logicalIndex"), "@brief Signal declaration for QHeaderView::sectionHandleDoubleClicked(int logicalIndex)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int, int, int > ("sectionMoved(int, int, int)", "sectionMoved", gsi::arg("logicalIndex"), gsi::arg("oldVisualIndex"), gsi::arg("newVisualIndex"), "@brief Signal declaration for QHeaderView::sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int > ("sectionPressed(int)", "sectionPressed", gsi::arg("logicalIndex"), "@brief Signal declaration for QHeaderView::sectionPressed(int logicalIndex)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int, int, int > ("sectionResized(int, int, int)", "sectionResized", gsi::arg("logicalIndex"), gsi::arg("oldSize"), gsi::arg("newSize"), "@brief Signal declaration for QHeaderView::sectionResized(int logicalIndex, int oldSize, int newSize)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<int, const qt_gsi::Converter<Qt::SortOrder>::target_type & > ("sortIndicatorChanged(int, Qt::SortOrder)", "sortIndicatorChanged", gsi::arg("logicalIndex"), gsi::arg("order"), "@brief Signal declaration for QHeaderView::sortIndicatorChanged(int logicalIndex, Qt::SortOrder order)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("viewportEntered()", "viewportEntered", "@brief Signal declaration for QHeaderView::viewportEntered()\nYou can bind a procedure to this signal.");
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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<QHeaderView> decl_QHeaderView (qtdecl_QAbstractItemView (), "QHeaderView_Native",
|
|
methods_QHeaderView (),
|
|
"@hide\n@alias QHeaderView");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QHeaderView> &qtdecl_QHeaderView () { return decl_QHeaderView; }
|
|
|
|
}
|
|
|
|
|
|
class QHeaderView_Adaptor : public QHeaderView, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QHeaderView_Adaptor();
|
|
|
|
// [adaptor ctor] QHeaderView::QHeaderView(Qt::Orientation orientation, QWidget *parent)
|
|
QHeaderView_Adaptor(Qt::Orientation orientation) : QHeaderView(orientation)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QHeaderView::QHeaderView(Qt::Orientation orientation, QWidget *parent)
|
|
QHeaderView_Adaptor(Qt::Orientation orientation, QWidget *parent) : QHeaderView(orientation, parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [expose] void QHeaderView::create(WId, bool initializeWindow, bool destroyOldWindow)
|
|
void fp_QHeaderView_create_2208 (const qt_gsi::Converter<WId>::target_type & arg1, bool initializeWindow, bool destroyOldWindow) {
|
|
QHeaderView::create(qt_gsi::QtToCppAdaptor<WId>(arg1).cref(), initializeWindow, destroyOldWindow);
|
|
}
|
|
|
|
// [expose] void QHeaderView::destroy(bool destroyWindow, bool destroySubWindows)
|
|
void fp_QHeaderView_destroy_1620 (bool destroyWindow, bool destroySubWindows) {
|
|
QHeaderView::destroy(destroyWindow, destroySubWindows);
|
|
}
|
|
|
|
// [expose] QPoint QHeaderView::dirtyRegionOffset()
|
|
QPoint fp_QHeaderView_dirtyRegionOffset_c0 () const {
|
|
return QHeaderView::dirtyRegionOffset();
|
|
}
|
|
|
|
// [expose] void QHeaderView::doAutoScroll()
|
|
void fp_QHeaderView_doAutoScroll_0 () {
|
|
QHeaderView::doAutoScroll();
|
|
}
|
|
|
|
// [expose] void QHeaderView::drawFrame(QPainter *)
|
|
void fp_QHeaderView_drawFrame_1426 (QPainter *arg1) {
|
|
QHeaderView::drawFrame(arg1);
|
|
}
|
|
|
|
// [expose] QAbstractItemView::DropIndicatorPosition QHeaderView::dropIndicatorPosition()
|
|
unsigned int fp_QHeaderView_dropIndicatorPosition_c0 () const {
|
|
return (unsigned int)(QHeaderView::dropIndicatorPosition());
|
|
}
|
|
|
|
// [expose] void QHeaderView::executeDelayedItemsLayout()
|
|
void fp_QHeaderView_executeDelayedItemsLayout_0 () {
|
|
QHeaderView::executeDelayedItemsLayout();
|
|
}
|
|
|
|
// [expose] bool QHeaderView::focusNextChild()
|
|
bool fp_QHeaderView_focusNextChild_0 () {
|
|
return QHeaderView::focusNextChild();
|
|
}
|
|
|
|
// [expose] bool QHeaderView::focusPreviousChild()
|
|
bool fp_QHeaderView_focusPreviousChild_0 () {
|
|
return QHeaderView::focusPreviousChild();
|
|
}
|
|
|
|
// [expose] int QHeaderView::horizontalStepsPerItem()
|
|
int fp_QHeaderView_horizontalStepsPerItem_c0 () const {
|
|
return QHeaderView::horizontalStepsPerItem();
|
|
}
|
|
|
|
// [expose] void QHeaderView::initStyleOption(QStyleOptionHeader *option)
|
|
void fp_QHeaderView_initStyleOption_c2450 (QStyleOptionHeader *option) const {
|
|
QHeaderView::initStyleOption(option);
|
|
}
|
|
|
|
// [expose] void QHeaderView::initialize()
|
|
void fp_QHeaderView_initialize_0 () {
|
|
QHeaderView::initialize();
|
|
}
|
|
|
|
// [expose] void QHeaderView::initializeSections()
|
|
void fp_QHeaderView_initializeSections_0 () {
|
|
QHeaderView::initializeSections();
|
|
}
|
|
|
|
// [expose] void QHeaderView::initializeSections(int start, int end)
|
|
void fp_QHeaderView_initializeSections_1426 (int start, int end) {
|
|
QHeaderView::initializeSections(start, end);
|
|
}
|
|
|
|
// [expose] int QHeaderView::receivers(const char *signal)
|
|
int fp_QHeaderView_receivers_c1731 (const char *signal) const {
|
|
return QHeaderView::receivers(signal);
|
|
}
|
|
|
|
// [expose] void QHeaderView::resetInputContext()
|
|
void fp_QHeaderView_resetInputContext_0 () {
|
|
QHeaderView::resetInputContext();
|
|
}
|
|
|
|
// [expose] void QHeaderView::resizeSections()
|
|
void fp_QHeaderView_resizeSections_0 () {
|
|
QHeaderView::resizeSections();
|
|
}
|
|
|
|
// [expose] void QHeaderView::scheduleDelayedItemsLayout()
|
|
void fp_QHeaderView_scheduleDelayedItemsLayout_0 () {
|
|
QHeaderView::scheduleDelayedItemsLayout();
|
|
}
|
|
|
|
// [expose] void QHeaderView::scrollDirtyRegion(int dx, int dy)
|
|
void fp_QHeaderView_scrollDirtyRegion_1426 (int dx, int dy) {
|
|
QHeaderView::scrollDirtyRegion(dx, dy);
|
|
}
|
|
|
|
// [expose] void QHeaderView::sectionsAboutToBeRemoved(const QModelIndex &parent, int logicalFirst, int logicalLast)
|
|
void fp_QHeaderView_sectionsAboutToBeRemoved_3713 (const QModelIndex &parent, int logicalFirst, int logicalLast) {
|
|
QHeaderView::sectionsAboutToBeRemoved(parent, logicalFirst, logicalLast);
|
|
}
|
|
|
|
// [expose] void QHeaderView::sectionsInserted(const QModelIndex &parent, int logicalFirst, int logicalLast)
|
|
void fp_QHeaderView_sectionsInserted_3713 (const QModelIndex &parent, int logicalFirst, int logicalLast) {
|
|
QHeaderView::sectionsInserted(parent, logicalFirst, logicalLast);
|
|
}
|
|
|
|
// [expose] QObject *QHeaderView::sender()
|
|
QObject * fp_QHeaderView_sender_c0 () const {
|
|
return QHeaderView::sender();
|
|
}
|
|
|
|
// [expose] void QHeaderView::setDirtyRegion(const QRegion ®ion)
|
|
void fp_QHeaderView_setDirtyRegion_2006 (const QRegion ®ion) {
|
|
QHeaderView::setDirtyRegion(region);
|
|
}
|
|
|
|
// [expose] void QHeaderView::setHorizontalStepsPerItem(int steps)
|
|
void fp_QHeaderView_setHorizontalStepsPerItem_767 (int steps) {
|
|
QHeaderView::setHorizontalStepsPerItem(steps);
|
|
}
|
|
|
|
// [expose] void QHeaderView::setState(QAbstractItemView::State state)
|
|
void fp_QHeaderView_setState_2776 (unsigned int state) {
|
|
QHeaderView::setState(QAbstractItemView::State(state));
|
|
}
|
|
|
|
// [expose] void QHeaderView::setVerticalStepsPerItem(int steps)
|
|
void fp_QHeaderView_setVerticalStepsPerItem_767 (int steps) {
|
|
QHeaderView::setVerticalStepsPerItem(steps);
|
|
}
|
|
|
|
// [expose] void QHeaderView::setViewportMargins(int left, int top, int right, int bottom)
|
|
void fp_QHeaderView_setViewportMargins_2744 (int left, int top, int right, int bottom) {
|
|
QHeaderView::setViewportMargins(left, top, right, bottom);
|
|
}
|
|
|
|
// [expose] void QHeaderView::setViewportMargins(const QMargins &margins)
|
|
void fp_QHeaderView_setViewportMargins_2115 (const QMargins &margins) {
|
|
QHeaderView::setViewportMargins(margins);
|
|
}
|
|
|
|
// [expose] void QHeaderView::setupViewport(QWidget *viewport)
|
|
void fp_QHeaderView_setupViewport_1315 (QWidget *viewport) {
|
|
QHeaderView::setupViewport(viewport);
|
|
}
|
|
|
|
// [expose] void QHeaderView::startAutoScroll()
|
|
void fp_QHeaderView_startAutoScroll_0 () {
|
|
QHeaderView::startAutoScroll();
|
|
}
|
|
|
|
// [expose] QAbstractItemView::State QHeaderView::state()
|
|
unsigned int fp_QHeaderView_state_c0 () const {
|
|
return (unsigned int)(QHeaderView::state());
|
|
}
|
|
|
|
// [expose] void QHeaderView::stopAutoScroll()
|
|
void fp_QHeaderView_stopAutoScroll_0 () {
|
|
QHeaderView::stopAutoScroll();
|
|
}
|
|
|
|
// [expose] void QHeaderView::updateMicroFocus()
|
|
void fp_QHeaderView_updateMicroFocus_0 () {
|
|
QHeaderView::updateMicroFocus();
|
|
}
|
|
|
|
// [expose] void QHeaderView::updateSection(int logicalIndex)
|
|
void fp_QHeaderView_updateSection_767 (int logicalIndex) {
|
|
QHeaderView::updateSection(logicalIndex);
|
|
}
|
|
|
|
// [expose] int QHeaderView::verticalStepsPerItem()
|
|
int fp_QHeaderView_verticalStepsPerItem_c0 () const {
|
|
return QHeaderView::verticalStepsPerItem();
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::doItemsLayout()
|
|
void cbs_doItemsLayout_0_0()
|
|
{
|
|
QHeaderView::doItemsLayout();
|
|
}
|
|
|
|
virtual void doItemsLayout()
|
|
{
|
|
if (cb_doItemsLayout_0_0.can_issue()) {
|
|
cb_doItemsLayout_0_0.issue<QHeaderView_Adaptor>(&QHeaderView_Adaptor::cbs_doItemsLayout_0_0);
|
|
} else {
|
|
QHeaderView::doItemsLayout();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QHeaderView::eventFilter(QObject *, QEvent *)
|
|
bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
|
|
{
|
|
return QHeaderView::eventFilter(arg1, arg2);
|
|
}
|
|
|
|
virtual bool eventFilter(QObject *arg1, QEvent *arg2)
|
|
{
|
|
if (cb_eventFilter_2411_0.can_issue()) {
|
|
return cb_eventFilter_2411_0.issue<QHeaderView_Adaptor, bool, QObject *, QEvent *>(&QHeaderView_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
|
|
} else {
|
|
return QHeaderView::eventFilter(arg1, arg2);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QHeaderView::heightForWidth(int)
|
|
int cbs_heightForWidth_c767_0(int arg1) const
|
|
{
|
|
return QHeaderView::heightForWidth(arg1);
|
|
}
|
|
|
|
virtual int heightForWidth(int arg1) const
|
|
{
|
|
if (cb_heightForWidth_c767_0.can_issue()) {
|
|
return cb_heightForWidth_c767_0.issue<QHeaderView_Adaptor, int, int>(&QHeaderView_Adaptor::cbs_heightForWidth_c767_0, arg1);
|
|
} else {
|
|
return QHeaderView::heightForWidth(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QHeaderView::inputMethodQuery(Qt::InputMethodQuery query)
|
|
QVariant cbs_inputMethodQuery_c2420_0(const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & query) const
|
|
{
|
|
return QHeaderView::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<QHeaderView_Adaptor, QVariant, const qt_gsi::Converter<Qt::InputMethodQuery>::target_type &>(&QHeaderView_Adaptor::cbs_inputMethodQuery_c2420_0, qt_gsi::CppToQtAdaptor<Qt::InputMethodQuery>(query));
|
|
} else {
|
|
return QHeaderView::inputMethodQuery(query);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::keyboardSearch(const QString &search)
|
|
void cbs_keyboardSearch_2025_0(const QString &search)
|
|
{
|
|
QHeaderView::keyboardSearch(search);
|
|
}
|
|
|
|
virtual void keyboardSearch(const QString &search)
|
|
{
|
|
if (cb_keyboardSearch_2025_0.can_issue()) {
|
|
cb_keyboardSearch_2025_0.issue<QHeaderView_Adaptor, const QString &>(&QHeaderView_Adaptor::cbs_keyboardSearch_2025_0, search);
|
|
} else {
|
|
QHeaderView::keyboardSearch(search);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QHeaderView::minimumSizeHint()
|
|
QSize cbs_minimumSizeHint_c0_0() const
|
|
{
|
|
return QHeaderView::minimumSizeHint();
|
|
}
|
|
|
|
virtual QSize minimumSizeHint() const
|
|
{
|
|
if (cb_minimumSizeHint_c0_0.can_issue()) {
|
|
return cb_minimumSizeHint_c0_0.issue<QHeaderView_Adaptor, QSize>(&QHeaderView_Adaptor::cbs_minimumSizeHint_c0_0);
|
|
} else {
|
|
return QHeaderView::minimumSizeHint();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPaintEngine *QHeaderView::paintEngine()
|
|
QPaintEngine * cbs_paintEngine_c0_0() const
|
|
{
|
|
return QHeaderView::paintEngine();
|
|
}
|
|
|
|
virtual QPaintEngine * paintEngine() const
|
|
{
|
|
if (cb_paintEngine_c0_0.can_issue()) {
|
|
return cb_paintEngine_c0_0.issue<QHeaderView_Adaptor, QPaintEngine *>(&QHeaderView_Adaptor::cbs_paintEngine_c0_0);
|
|
} else {
|
|
return QHeaderView::paintEngine();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::reset()
|
|
void cbs_reset_0_0()
|
|
{
|
|
QHeaderView::reset();
|
|
}
|
|
|
|
virtual void reset()
|
|
{
|
|
if (cb_reset_0_0.can_issue()) {
|
|
cb_reset_0_0.issue<QHeaderView_Adaptor>(&QHeaderView_Adaptor::cbs_reset_0_0);
|
|
} else {
|
|
QHeaderView::reset();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::selectAll()
|
|
void cbs_selectAll_0_0()
|
|
{
|
|
QHeaderView::selectAll();
|
|
}
|
|
|
|
virtual void selectAll()
|
|
{
|
|
if (cb_selectAll_0_0.can_issue()) {
|
|
cb_selectAll_0_0.issue<QHeaderView_Adaptor>(&QHeaderView_Adaptor::cbs_selectAll_0_0);
|
|
} else {
|
|
QHeaderView::selectAll();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::setModel(QAbstractItemModel *model)
|
|
void cbs_setModel_2419_0(QAbstractItemModel *model)
|
|
{
|
|
QHeaderView::setModel(model);
|
|
}
|
|
|
|
virtual void setModel(QAbstractItemModel *model)
|
|
{
|
|
if (cb_setModel_2419_0.can_issue()) {
|
|
cb_setModel_2419_0.issue<QHeaderView_Adaptor, QAbstractItemModel *>(&QHeaderView_Adaptor::cbs_setModel_2419_0, model);
|
|
} else {
|
|
QHeaderView::setModel(model);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::setRootIndex(const QModelIndex &index)
|
|
void cbs_setRootIndex_2395_0(const QModelIndex &index)
|
|
{
|
|
QHeaderView::setRootIndex(index);
|
|
}
|
|
|
|
virtual void setRootIndex(const QModelIndex &index)
|
|
{
|
|
if (cb_setRootIndex_2395_0.can_issue()) {
|
|
cb_setRootIndex_2395_0.issue<QHeaderView_Adaptor, const QModelIndex &>(&QHeaderView_Adaptor::cbs_setRootIndex_2395_0, index);
|
|
} else {
|
|
QHeaderView::setRootIndex(index);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::setSelectionModel(QItemSelectionModel *selectionModel)
|
|
void cbs_setSelectionModel_2533_0(QItemSelectionModel *selectionModel)
|
|
{
|
|
QHeaderView::setSelectionModel(selectionModel);
|
|
}
|
|
|
|
virtual void setSelectionModel(QItemSelectionModel *selectionModel)
|
|
{
|
|
if (cb_setSelectionModel_2533_0.can_issue()) {
|
|
cb_setSelectionModel_2533_0.issue<QHeaderView_Adaptor, QItemSelectionModel *>(&QHeaderView_Adaptor::cbs_setSelectionModel_2533_0, selectionModel);
|
|
} else {
|
|
QHeaderView::setSelectionModel(selectionModel);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::setVisible(bool visible)
|
|
void cbs_setVisible_864_0(bool visible)
|
|
{
|
|
QHeaderView::setVisible(visible);
|
|
}
|
|
|
|
virtual void setVisible(bool visible)
|
|
{
|
|
if (cb_setVisible_864_0.can_issue()) {
|
|
cb_setVisible_864_0.issue<QHeaderView_Adaptor, bool>(&QHeaderView_Adaptor::cbs_setVisible_864_0, visible);
|
|
} else {
|
|
QHeaderView::setVisible(visible);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QHeaderView::sizeHint()
|
|
QSize cbs_sizeHint_c0_0() const
|
|
{
|
|
return QHeaderView::sizeHint();
|
|
}
|
|
|
|
virtual QSize sizeHint() const
|
|
{
|
|
if (cb_sizeHint_c0_0.can_issue()) {
|
|
return cb_sizeHint_c0_0.issue<QHeaderView_Adaptor, QSize>(&QHeaderView_Adaptor::cbs_sizeHint_c0_0);
|
|
} else {
|
|
return QHeaderView::sizeHint();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QHeaderView::sizeHintForColumn(int column)
|
|
int cbs_sizeHintForColumn_c767_0(int column) const
|
|
{
|
|
return QHeaderView::sizeHintForColumn(column);
|
|
}
|
|
|
|
virtual int sizeHintForColumn(int column) const
|
|
{
|
|
if (cb_sizeHintForColumn_c767_0.can_issue()) {
|
|
return cb_sizeHintForColumn_c767_0.issue<QHeaderView_Adaptor, int, int>(&QHeaderView_Adaptor::cbs_sizeHintForColumn_c767_0, column);
|
|
} else {
|
|
return QHeaderView::sizeHintForColumn(column);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QHeaderView::sizeHintForRow(int row)
|
|
int cbs_sizeHintForRow_c767_0(int row) const
|
|
{
|
|
return QHeaderView::sizeHintForRow(row);
|
|
}
|
|
|
|
virtual int sizeHintForRow(int row) const
|
|
{
|
|
if (cb_sizeHintForRow_c767_0.can_issue()) {
|
|
return cb_sizeHintForRow_c767_0.issue<QHeaderView_Adaptor, int, int>(&QHeaderView_Adaptor::cbs_sizeHintForRow_c767_0, row);
|
|
} else {
|
|
return QHeaderView::sizeHintForRow(row);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::actionEvent(QActionEvent *)
|
|
void cbs_actionEvent_1823_0(QActionEvent *arg1)
|
|
{
|
|
QHeaderView::actionEvent(arg1);
|
|
}
|
|
|
|
virtual void actionEvent(QActionEvent *arg1)
|
|
{
|
|
if (cb_actionEvent_1823_0.can_issue()) {
|
|
cb_actionEvent_1823_0.issue<QHeaderView_Adaptor, QActionEvent *>(&QHeaderView_Adaptor::cbs_actionEvent_1823_0, arg1);
|
|
} else {
|
|
QHeaderView::actionEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::activated(const QModelIndex &index)
|
|
void emitter_QHeaderView_activated_2395(const QModelIndex &index)
|
|
{
|
|
emit QHeaderView::activated(index);
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::changeEvent(QEvent *)
|
|
void cbs_changeEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QHeaderView::changeEvent(arg1);
|
|
}
|
|
|
|
virtual void changeEvent(QEvent *arg1)
|
|
{
|
|
if (cb_changeEvent_1217_0.can_issue()) {
|
|
cb_changeEvent_1217_0.issue<QHeaderView_Adaptor, QEvent *>(&QHeaderView_Adaptor::cbs_changeEvent_1217_0, arg1);
|
|
} else {
|
|
QHeaderView::changeEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::childEvent(QChildEvent *)
|
|
void cbs_childEvent_1701_0(QChildEvent *arg1)
|
|
{
|
|
QHeaderView::childEvent(arg1);
|
|
}
|
|
|
|
virtual void childEvent(QChildEvent *arg1)
|
|
{
|
|
if (cb_childEvent_1701_0.can_issue()) {
|
|
cb_childEvent_1701_0.issue<QHeaderView_Adaptor, QChildEvent *>(&QHeaderView_Adaptor::cbs_childEvent_1701_0, arg1);
|
|
} else {
|
|
QHeaderView::childEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::clicked(const QModelIndex &index)
|
|
void emitter_QHeaderView_clicked_2395(const QModelIndex &index)
|
|
{
|
|
emit QHeaderView::clicked(index);
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint)
|
|
void cbs_closeEditor_4926_0(QWidget *editor, const qt_gsi::Converter<QAbstractItemDelegate::EndEditHint>::target_type & hint)
|
|
{
|
|
QHeaderView::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<QHeaderView_Adaptor, QWidget *, const qt_gsi::Converter<QAbstractItemDelegate::EndEditHint>::target_type &>(&QHeaderView_Adaptor::cbs_closeEditor_4926_0, editor, qt_gsi::CppToQtAdaptor<QAbstractItemDelegate::EndEditHint>(hint));
|
|
} else {
|
|
QHeaderView::closeEditor(editor, hint);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::closeEvent(QCloseEvent *)
|
|
void cbs_closeEvent_1719_0(QCloseEvent *arg1)
|
|
{
|
|
QHeaderView::closeEvent(arg1);
|
|
}
|
|
|
|
virtual void closeEvent(QCloseEvent *arg1)
|
|
{
|
|
if (cb_closeEvent_1719_0.can_issue()) {
|
|
cb_closeEvent_1719_0.issue<QHeaderView_Adaptor, QCloseEvent *>(&QHeaderView_Adaptor::cbs_closeEvent_1719_0, arg1);
|
|
} else {
|
|
QHeaderView::closeEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::commitData(QWidget *editor)
|
|
void cbs_commitData_1315_0(QWidget *editor)
|
|
{
|
|
QHeaderView::commitData(editor);
|
|
}
|
|
|
|
virtual void commitData(QWidget *editor)
|
|
{
|
|
if (cb_commitData_1315_0.can_issue()) {
|
|
cb_commitData_1315_0.issue<QHeaderView_Adaptor, QWidget *>(&QHeaderView_Adaptor::cbs_commitData_1315_0, editor);
|
|
} else {
|
|
QHeaderView::commitData(editor);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::contextMenuEvent(QContextMenuEvent *)
|
|
void cbs_contextMenuEvent_2363_0(QContextMenuEvent *arg1)
|
|
{
|
|
QHeaderView::contextMenuEvent(arg1);
|
|
}
|
|
|
|
virtual void contextMenuEvent(QContextMenuEvent *arg1)
|
|
{
|
|
if (cb_contextMenuEvent_2363_0.can_issue()) {
|
|
cb_contextMenuEvent_2363_0.issue<QHeaderView_Adaptor, QContextMenuEvent *>(&QHeaderView_Adaptor::cbs_contextMenuEvent_2363_0, arg1);
|
|
} else {
|
|
QHeaderView::contextMenuEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::currentChanged(const QModelIndex ¤t, const QModelIndex &old)
|
|
void cbs_currentChanged_4682_0(const QModelIndex ¤t, const QModelIndex &old)
|
|
{
|
|
QHeaderView::currentChanged(current, old);
|
|
}
|
|
|
|
virtual void currentChanged(const QModelIndex ¤t, const QModelIndex &old)
|
|
{
|
|
if (cb_currentChanged_4682_0.can_issue()) {
|
|
cb_currentChanged_4682_0.issue<QHeaderView_Adaptor, const QModelIndex &, const QModelIndex &>(&QHeaderView_Adaptor::cbs_currentChanged_4682_0, current, old);
|
|
} else {
|
|
QHeaderView::currentChanged(current, old);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::customContextMenuRequested(const QPoint &pos)
|
|
void emitter_QHeaderView_customContextMenuRequested_1916(const QPoint &pos)
|
|
{
|
|
emit QHeaderView::customContextMenuRequested(pos);
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::customEvent(QEvent *)
|
|
void cbs_customEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QHeaderView::customEvent(arg1);
|
|
}
|
|
|
|
virtual void customEvent(QEvent *arg1)
|
|
{
|
|
if (cb_customEvent_1217_0.can_issue()) {
|
|
cb_customEvent_1217_0.issue<QHeaderView_Adaptor, QEvent *>(&QHeaderView_Adaptor::cbs_customEvent_1217_0, arg1);
|
|
} else {
|
|
QHeaderView::customEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
void cbs_dataChanged_4682_0(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
{
|
|
QHeaderView::dataChanged(topLeft, bottomRight);
|
|
}
|
|
|
|
virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
{
|
|
if (cb_dataChanged_4682_0.can_issue()) {
|
|
cb_dataChanged_4682_0.issue<QHeaderView_Adaptor, const QModelIndex &, const QModelIndex &>(&QHeaderView_Adaptor::cbs_dataChanged_4682_0, topLeft, bottomRight);
|
|
} else {
|
|
QHeaderView::dataChanged(topLeft, bottomRight);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::destroyed(QObject *)
|
|
void emitter_QHeaderView_destroyed_1302(QObject *arg1)
|
|
{
|
|
emit QHeaderView::destroyed(arg1);
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::disconnectNotify(const char *signal)
|
|
void cbs_disconnectNotify_1731_0(const char *signal)
|
|
{
|
|
QHeaderView::disconnectNotify(signal);
|
|
}
|
|
|
|
virtual void disconnectNotify(const char *signal)
|
|
{
|
|
if (cb_disconnectNotify_1731_0.can_issue()) {
|
|
cb_disconnectNotify_1731_0.issue<QHeaderView_Adaptor, const char *>(&QHeaderView_Adaptor::cbs_disconnectNotify_1731_0, signal);
|
|
} else {
|
|
QHeaderView::disconnectNotify(signal);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::doubleClicked(const QModelIndex &index)
|
|
void emitter_QHeaderView_doubleClicked_2395(const QModelIndex &index)
|
|
{
|
|
emit QHeaderView::doubleClicked(index);
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::dragEnterEvent(QDragEnterEvent *event)
|
|
void cbs_dragEnterEvent_2109_0(QDragEnterEvent *event)
|
|
{
|
|
QHeaderView::dragEnterEvent(event);
|
|
}
|
|
|
|
virtual void dragEnterEvent(QDragEnterEvent *event)
|
|
{
|
|
if (cb_dragEnterEvent_2109_0.can_issue()) {
|
|
cb_dragEnterEvent_2109_0.issue<QHeaderView_Adaptor, QDragEnterEvent *>(&QHeaderView_Adaptor::cbs_dragEnterEvent_2109_0, event);
|
|
} else {
|
|
QHeaderView::dragEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::dragLeaveEvent(QDragLeaveEvent *event)
|
|
void cbs_dragLeaveEvent_2092_0(QDragLeaveEvent *event)
|
|
{
|
|
QHeaderView::dragLeaveEvent(event);
|
|
}
|
|
|
|
virtual void dragLeaveEvent(QDragLeaveEvent *event)
|
|
{
|
|
if (cb_dragLeaveEvent_2092_0.can_issue()) {
|
|
cb_dragLeaveEvent_2092_0.issue<QHeaderView_Adaptor, QDragLeaveEvent *>(&QHeaderView_Adaptor::cbs_dragLeaveEvent_2092_0, event);
|
|
} else {
|
|
QHeaderView::dragLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::dragMoveEvent(QDragMoveEvent *event)
|
|
void cbs_dragMoveEvent_2006_0(QDragMoveEvent *event)
|
|
{
|
|
QHeaderView::dragMoveEvent(event);
|
|
}
|
|
|
|
virtual void dragMoveEvent(QDragMoveEvent *event)
|
|
{
|
|
if (cb_dragMoveEvent_2006_0.can_issue()) {
|
|
cb_dragMoveEvent_2006_0.issue<QHeaderView_Adaptor, QDragMoveEvent *>(&QHeaderView_Adaptor::cbs_dragMoveEvent_2006_0, event);
|
|
} else {
|
|
QHeaderView::dragMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::dropEvent(QDropEvent *event)
|
|
void cbs_dropEvent_1622_0(QDropEvent *event)
|
|
{
|
|
QHeaderView::dropEvent(event);
|
|
}
|
|
|
|
virtual void dropEvent(QDropEvent *event)
|
|
{
|
|
if (cb_dropEvent_1622_0.can_issue()) {
|
|
cb_dropEvent_1622_0.issue<QHeaderView_Adaptor, QDropEvent *>(&QHeaderView_Adaptor::cbs_dropEvent_1622_0, event);
|
|
} else {
|
|
QHeaderView::dropEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QHeaderView::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 QHeaderView::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<QHeaderView_Adaptor, bool, const QModelIndex &, const qt_gsi::Converter<QAbstractItemView::EditTrigger>::target_type &, QEvent *>(&QHeaderView_Adaptor::cbs_edit_6773_0, index, qt_gsi::CppToQtAdaptor<QAbstractItemView::EditTrigger>(trigger), event);
|
|
} else {
|
|
return QHeaderView::edit(index, trigger, event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::editorDestroyed(QObject *editor)
|
|
void cbs_editorDestroyed_1302_0(QObject *editor)
|
|
{
|
|
QHeaderView::editorDestroyed(editor);
|
|
}
|
|
|
|
virtual void editorDestroyed(QObject *editor)
|
|
{
|
|
if (cb_editorDestroyed_1302_0.can_issue()) {
|
|
cb_editorDestroyed_1302_0.issue<QHeaderView_Adaptor, QObject *>(&QHeaderView_Adaptor::cbs_editorDestroyed_1302_0, editor);
|
|
} else {
|
|
QHeaderView::editorDestroyed(editor);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::enabledChange(bool)
|
|
void cbs_enabledChange_864_0(bool arg1)
|
|
{
|
|
QHeaderView::enabledChange(arg1);
|
|
}
|
|
|
|
virtual void enabledChange(bool arg1)
|
|
{
|
|
if (cb_enabledChange_864_0.can_issue()) {
|
|
cb_enabledChange_864_0.issue<QHeaderView_Adaptor, bool>(&QHeaderView_Adaptor::cbs_enabledChange_864_0, arg1);
|
|
} else {
|
|
QHeaderView::enabledChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::enterEvent(QEvent *)
|
|
void cbs_enterEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QHeaderView::enterEvent(arg1);
|
|
}
|
|
|
|
virtual void enterEvent(QEvent *arg1)
|
|
{
|
|
if (cb_enterEvent_1217_0.can_issue()) {
|
|
cb_enterEvent_1217_0.issue<QHeaderView_Adaptor, QEvent *>(&QHeaderView_Adaptor::cbs_enterEvent_1217_0, arg1);
|
|
} else {
|
|
QHeaderView::enterEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::entered(const QModelIndex &index)
|
|
void emitter_QHeaderView_entered_2395(const QModelIndex &index)
|
|
{
|
|
emit QHeaderView::entered(index);
|
|
}
|
|
|
|
// [adaptor impl] bool QHeaderView::event(QEvent *e)
|
|
bool cbs_event_1217_0(QEvent *e)
|
|
{
|
|
return QHeaderView::event(e);
|
|
}
|
|
|
|
virtual bool event(QEvent *e)
|
|
{
|
|
if (cb_event_1217_0.can_issue()) {
|
|
return cb_event_1217_0.issue<QHeaderView_Adaptor, bool, QEvent *>(&QHeaderView_Adaptor::cbs_event_1217_0, e);
|
|
} else {
|
|
return QHeaderView::event(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::focusInEvent(QFocusEvent *event)
|
|
void cbs_focusInEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QHeaderView::focusInEvent(event);
|
|
}
|
|
|
|
virtual void focusInEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusInEvent_1729_0.can_issue()) {
|
|
cb_focusInEvent_1729_0.issue<QHeaderView_Adaptor, QFocusEvent *>(&QHeaderView_Adaptor::cbs_focusInEvent_1729_0, event);
|
|
} else {
|
|
QHeaderView::focusInEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QHeaderView::focusNextPrevChild(bool next)
|
|
bool cbs_focusNextPrevChild_864_0(bool next)
|
|
{
|
|
return QHeaderView::focusNextPrevChild(next);
|
|
}
|
|
|
|
virtual bool focusNextPrevChild(bool next)
|
|
{
|
|
if (cb_focusNextPrevChild_864_0.can_issue()) {
|
|
return cb_focusNextPrevChild_864_0.issue<QHeaderView_Adaptor, bool, bool>(&QHeaderView_Adaptor::cbs_focusNextPrevChild_864_0, next);
|
|
} else {
|
|
return QHeaderView::focusNextPrevChild(next);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::focusOutEvent(QFocusEvent *event)
|
|
void cbs_focusOutEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QHeaderView::focusOutEvent(event);
|
|
}
|
|
|
|
virtual void focusOutEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusOutEvent_1729_0.can_issue()) {
|
|
cb_focusOutEvent_1729_0.issue<QHeaderView_Adaptor, QFocusEvent *>(&QHeaderView_Adaptor::cbs_focusOutEvent_1729_0, event);
|
|
} else {
|
|
QHeaderView::focusOutEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::fontChange(const QFont &)
|
|
void cbs_fontChange_1801_0(const QFont &arg1)
|
|
{
|
|
QHeaderView::fontChange(arg1);
|
|
}
|
|
|
|
virtual void fontChange(const QFont &arg1)
|
|
{
|
|
if (cb_fontChange_1801_0.can_issue()) {
|
|
cb_fontChange_1801_0.issue<QHeaderView_Adaptor, const QFont &>(&QHeaderView_Adaptor::cbs_fontChange_1801_0, arg1);
|
|
} else {
|
|
QHeaderView::fontChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::geometriesChanged()
|
|
void emitter_QHeaderView_geometriesChanged_0()
|
|
{
|
|
emit QHeaderView::geometriesChanged();
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::hideEvent(QHideEvent *)
|
|
void cbs_hideEvent_1595_0(QHideEvent *arg1)
|
|
{
|
|
QHeaderView::hideEvent(arg1);
|
|
}
|
|
|
|
virtual void hideEvent(QHideEvent *arg1)
|
|
{
|
|
if (cb_hideEvent_1595_0.can_issue()) {
|
|
cb_hideEvent_1595_0.issue<QHeaderView_Adaptor, QHideEvent *>(&QHeaderView_Adaptor::cbs_hideEvent_1595_0, arg1);
|
|
} else {
|
|
QHeaderView::hideEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QHeaderView::horizontalOffset()
|
|
int cbs_horizontalOffset_c0_0() const
|
|
{
|
|
return QHeaderView::horizontalOffset();
|
|
}
|
|
|
|
virtual int horizontalOffset() const
|
|
{
|
|
if (cb_horizontalOffset_c0_0.can_issue()) {
|
|
return cb_horizontalOffset_c0_0.issue<QHeaderView_Adaptor, int>(&QHeaderView_Adaptor::cbs_horizontalOffset_c0_0);
|
|
} else {
|
|
return QHeaderView::horizontalOffset();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::horizontalScrollbarAction(int action)
|
|
void cbs_horizontalScrollbarAction_767_0(int action)
|
|
{
|
|
QHeaderView::horizontalScrollbarAction(action);
|
|
}
|
|
|
|
virtual void horizontalScrollbarAction(int action)
|
|
{
|
|
if (cb_horizontalScrollbarAction_767_0.can_issue()) {
|
|
cb_horizontalScrollbarAction_767_0.issue<QHeaderView_Adaptor, int>(&QHeaderView_Adaptor::cbs_horizontalScrollbarAction_767_0, action);
|
|
} else {
|
|
QHeaderView::horizontalScrollbarAction(action);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::horizontalScrollbarValueChanged(int value)
|
|
void cbs_horizontalScrollbarValueChanged_767_0(int value)
|
|
{
|
|
QHeaderView::horizontalScrollbarValueChanged(value);
|
|
}
|
|
|
|
virtual void horizontalScrollbarValueChanged(int value)
|
|
{
|
|
if (cb_horizontalScrollbarValueChanged_767_0.can_issue()) {
|
|
cb_horizontalScrollbarValueChanged_767_0.issue<QHeaderView_Adaptor, int>(&QHeaderView_Adaptor::cbs_horizontalScrollbarValueChanged_767_0, value);
|
|
} else {
|
|
QHeaderView::horizontalScrollbarValueChanged(value);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QModelIndex QHeaderView::indexAt(const QPoint &p)
|
|
QModelIndex cbs_indexAt_c1916_0(const QPoint &p) const
|
|
{
|
|
return QHeaderView::indexAt(p);
|
|
}
|
|
|
|
virtual QModelIndex indexAt(const QPoint &p) const
|
|
{
|
|
if (cb_indexAt_c1916_0.can_issue()) {
|
|
return cb_indexAt_c1916_0.issue<QHeaderView_Adaptor, QModelIndex, const QPoint &>(&QHeaderView_Adaptor::cbs_indexAt_c1916_0, p);
|
|
} else {
|
|
return QHeaderView::indexAt(p);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::inputMethodEvent(QInputMethodEvent *event)
|
|
void cbs_inputMethodEvent_2354_0(QInputMethodEvent *event)
|
|
{
|
|
QHeaderView::inputMethodEvent(event);
|
|
}
|
|
|
|
virtual void inputMethodEvent(QInputMethodEvent *event)
|
|
{
|
|
if (cb_inputMethodEvent_2354_0.can_issue()) {
|
|
cb_inputMethodEvent_2354_0.issue<QHeaderView_Adaptor, QInputMethodEvent *>(&QHeaderView_Adaptor::cbs_inputMethodEvent_2354_0, event);
|
|
} else {
|
|
QHeaderView::inputMethodEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QHeaderView::isIndexHidden(const QModelIndex &index)
|
|
bool cbs_isIndexHidden_c2395_0(const QModelIndex &index) const
|
|
{
|
|
return QHeaderView::isIndexHidden(index);
|
|
}
|
|
|
|
virtual bool isIndexHidden(const QModelIndex &index) const
|
|
{
|
|
if (cb_isIndexHidden_c2395_0.can_issue()) {
|
|
return cb_isIndexHidden_c2395_0.issue<QHeaderView_Adaptor, bool, const QModelIndex &>(&QHeaderView_Adaptor::cbs_isIndexHidden_c2395_0, index);
|
|
} else {
|
|
return QHeaderView::isIndexHidden(index);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::keyPressEvent(QKeyEvent *event)
|
|
void cbs_keyPressEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QHeaderView::keyPressEvent(event);
|
|
}
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyPressEvent_1514_0.can_issue()) {
|
|
cb_keyPressEvent_1514_0.issue<QHeaderView_Adaptor, QKeyEvent *>(&QHeaderView_Adaptor::cbs_keyPressEvent_1514_0, event);
|
|
} else {
|
|
QHeaderView::keyPressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::keyReleaseEvent(QKeyEvent *)
|
|
void cbs_keyReleaseEvent_1514_0(QKeyEvent *arg1)
|
|
{
|
|
QHeaderView::keyReleaseEvent(arg1);
|
|
}
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *arg1)
|
|
{
|
|
if (cb_keyReleaseEvent_1514_0.can_issue()) {
|
|
cb_keyReleaseEvent_1514_0.issue<QHeaderView_Adaptor, QKeyEvent *>(&QHeaderView_Adaptor::cbs_keyReleaseEvent_1514_0, arg1);
|
|
} else {
|
|
QHeaderView::keyReleaseEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::languageChange()
|
|
void cbs_languageChange_0_0()
|
|
{
|
|
QHeaderView::languageChange();
|
|
}
|
|
|
|
virtual void languageChange()
|
|
{
|
|
if (cb_languageChange_0_0.can_issue()) {
|
|
cb_languageChange_0_0.issue<QHeaderView_Adaptor>(&QHeaderView_Adaptor::cbs_languageChange_0_0);
|
|
} else {
|
|
QHeaderView::languageChange();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::leaveEvent(QEvent *)
|
|
void cbs_leaveEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QHeaderView::leaveEvent(arg1);
|
|
}
|
|
|
|
virtual void leaveEvent(QEvent *arg1)
|
|
{
|
|
if (cb_leaveEvent_1217_0.can_issue()) {
|
|
cb_leaveEvent_1217_0.issue<QHeaderView_Adaptor, QEvent *>(&QHeaderView_Adaptor::cbs_leaveEvent_1217_0, arg1);
|
|
} else {
|
|
QHeaderView::leaveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QHeaderView::metric(QPaintDevice::PaintDeviceMetric)
|
|
int cbs_metric_c3445_0(const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & arg1) const
|
|
{
|
|
return QHeaderView::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<QHeaderView_Adaptor, int, const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type &>(&QHeaderView_Adaptor::cbs_metric_c3445_0, qt_gsi::CppToQtAdaptor<QPaintDevice::PaintDeviceMetric>(arg1));
|
|
} else {
|
|
return QHeaderView::metric(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::mouseDoubleClickEvent(QMouseEvent *e)
|
|
void cbs_mouseDoubleClickEvent_1738_0(QMouseEvent *e)
|
|
{
|
|
QHeaderView::mouseDoubleClickEvent(e);
|
|
}
|
|
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *e)
|
|
{
|
|
if (cb_mouseDoubleClickEvent_1738_0.can_issue()) {
|
|
cb_mouseDoubleClickEvent_1738_0.issue<QHeaderView_Adaptor, QMouseEvent *>(&QHeaderView_Adaptor::cbs_mouseDoubleClickEvent_1738_0, e);
|
|
} else {
|
|
QHeaderView::mouseDoubleClickEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::mouseMoveEvent(QMouseEvent *e)
|
|
void cbs_mouseMoveEvent_1738_0(QMouseEvent *e)
|
|
{
|
|
QHeaderView::mouseMoveEvent(e);
|
|
}
|
|
|
|
virtual void mouseMoveEvent(QMouseEvent *e)
|
|
{
|
|
if (cb_mouseMoveEvent_1738_0.can_issue()) {
|
|
cb_mouseMoveEvent_1738_0.issue<QHeaderView_Adaptor, QMouseEvent *>(&QHeaderView_Adaptor::cbs_mouseMoveEvent_1738_0, e);
|
|
} else {
|
|
QHeaderView::mouseMoveEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::mousePressEvent(QMouseEvent *e)
|
|
void cbs_mousePressEvent_1738_0(QMouseEvent *e)
|
|
{
|
|
QHeaderView::mousePressEvent(e);
|
|
}
|
|
|
|
virtual void mousePressEvent(QMouseEvent *e)
|
|
{
|
|
if (cb_mousePressEvent_1738_0.can_issue()) {
|
|
cb_mousePressEvent_1738_0.issue<QHeaderView_Adaptor, QMouseEvent *>(&QHeaderView_Adaptor::cbs_mousePressEvent_1738_0, e);
|
|
} else {
|
|
QHeaderView::mousePressEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::mouseReleaseEvent(QMouseEvent *e)
|
|
void cbs_mouseReleaseEvent_1738_0(QMouseEvent *e)
|
|
{
|
|
QHeaderView::mouseReleaseEvent(e);
|
|
}
|
|
|
|
virtual void mouseReleaseEvent(QMouseEvent *e)
|
|
{
|
|
if (cb_mouseReleaseEvent_1738_0.can_issue()) {
|
|
cb_mouseReleaseEvent_1738_0.issue<QHeaderView_Adaptor, QMouseEvent *>(&QHeaderView_Adaptor::cbs_mouseReleaseEvent_1738_0, e);
|
|
} else {
|
|
QHeaderView::mouseReleaseEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QModelIndex QHeaderView::moveCursor(QAbstractItemView::CursorAction, QFlags<Qt::KeyboardModifier>)
|
|
QModelIndex cbs_moveCursor_6476_0(unsigned int arg1, QFlags<Qt::KeyboardModifier> arg2)
|
|
{
|
|
return QHeaderView::moveCursor(QAbstractItemView::CursorAction(arg1), arg2);
|
|
}
|
|
|
|
virtual QModelIndex moveCursor(QAbstractItemView::CursorAction arg1, QFlags<Qt::KeyboardModifier> arg2)
|
|
{
|
|
if (cb_moveCursor_6476_0.can_issue()) {
|
|
return cb_moveCursor_6476_0.issue<QHeaderView_Adaptor, QModelIndex, unsigned int, QFlags<Qt::KeyboardModifier> >(&QHeaderView_Adaptor::cbs_moveCursor_6476_0, (unsigned int)(arg1), arg2);
|
|
} else {
|
|
return QHeaderView::moveCursor(arg1, arg2);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::moveEvent(QMoveEvent *)
|
|
void cbs_moveEvent_1624_0(QMoveEvent *arg1)
|
|
{
|
|
QHeaderView::moveEvent(arg1);
|
|
}
|
|
|
|
virtual void moveEvent(QMoveEvent *arg1)
|
|
{
|
|
if (cb_moveEvent_1624_0.can_issue()) {
|
|
cb_moveEvent_1624_0.issue<QHeaderView_Adaptor, QMoveEvent *>(&QHeaderView_Adaptor::cbs_moveEvent_1624_0, arg1);
|
|
} else {
|
|
QHeaderView::moveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::paintEvent(QPaintEvent *e)
|
|
void cbs_paintEvent_1725_0(QPaintEvent *e)
|
|
{
|
|
QHeaderView::paintEvent(e);
|
|
}
|
|
|
|
virtual void paintEvent(QPaintEvent *e)
|
|
{
|
|
if (cb_paintEvent_1725_0.can_issue()) {
|
|
cb_paintEvent_1725_0.issue<QHeaderView_Adaptor, QPaintEvent *>(&QHeaderView_Adaptor::cbs_paintEvent_1725_0, e);
|
|
} else {
|
|
QHeaderView::paintEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::paintSection(QPainter *painter, const QRect &rect, int logicalIndex)
|
|
void cbs_paintSection_c3769_0(QPainter *painter, const QRect &rect, int logicalIndex) const
|
|
{
|
|
QHeaderView::paintSection(painter, rect, logicalIndex);
|
|
}
|
|
|
|
virtual void paintSection(QPainter *painter, const QRect &rect, int logicalIndex) const
|
|
{
|
|
if (cb_paintSection_c3769_0.can_issue()) {
|
|
cb_paintSection_c3769_0.issue<QHeaderView_Adaptor, QPainter *, const QRect &, int>(&QHeaderView_Adaptor::cbs_paintSection_c3769_0, painter, rect, logicalIndex);
|
|
} else {
|
|
QHeaderView::paintSection(painter, rect, logicalIndex);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::paletteChange(const QPalette &)
|
|
void cbs_paletteChange_2113_0(const QPalette &arg1)
|
|
{
|
|
QHeaderView::paletteChange(arg1);
|
|
}
|
|
|
|
virtual void paletteChange(const QPalette &arg1)
|
|
{
|
|
if (cb_paletteChange_2113_0.can_issue()) {
|
|
cb_paletteChange_2113_0.issue<QHeaderView_Adaptor, const QPalette &>(&QHeaderView_Adaptor::cbs_paletteChange_2113_0, arg1);
|
|
} else {
|
|
QHeaderView::paletteChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::pressed(const QModelIndex &index)
|
|
void emitter_QHeaderView_pressed_2395(const QModelIndex &index)
|
|
{
|
|
emit QHeaderView::pressed(index);
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::resizeEvent(QResizeEvent *event)
|
|
void cbs_resizeEvent_1843_0(QResizeEvent *event)
|
|
{
|
|
QHeaderView::resizeEvent(event);
|
|
}
|
|
|
|
virtual void resizeEvent(QResizeEvent *event)
|
|
{
|
|
if (cb_resizeEvent_1843_0.can_issue()) {
|
|
cb_resizeEvent_1843_0.issue<QHeaderView_Adaptor, QResizeEvent *>(&QHeaderView_Adaptor::cbs_resizeEvent_1843_0, event);
|
|
} else {
|
|
QHeaderView::resizeEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
|
|
void cbs_rowsAboutToBeRemoved_3713_0(const QModelIndex &parent, int start, int end)
|
|
{
|
|
QHeaderView::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<QHeaderView_Adaptor, const QModelIndex &, int, int>(&QHeaderView_Adaptor::cbs_rowsAboutToBeRemoved_3713_0, parent, start, end);
|
|
} else {
|
|
QHeaderView::rowsAboutToBeRemoved(parent, start, end);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::rowsInserted(const QModelIndex &parent, int start, int end)
|
|
void cbs_rowsInserted_3713_0(const QModelIndex &parent, int start, int end)
|
|
{
|
|
QHeaderView::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<QHeaderView_Adaptor, const QModelIndex &, int, int>(&QHeaderView_Adaptor::cbs_rowsInserted_3713_0, parent, start, end);
|
|
} else {
|
|
QHeaderView::rowsInserted(parent, start, end);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::scrollContentsBy(int dx, int dy)
|
|
void cbs_scrollContentsBy_1426_0(int dx, int dy)
|
|
{
|
|
QHeaderView::scrollContentsBy(dx, dy);
|
|
}
|
|
|
|
virtual void scrollContentsBy(int dx, int dy)
|
|
{
|
|
if (cb_scrollContentsBy_1426_0.can_issue()) {
|
|
cb_scrollContentsBy_1426_0.issue<QHeaderView_Adaptor, int, int>(&QHeaderView_Adaptor::cbs_scrollContentsBy_1426_0, dx, dy);
|
|
} else {
|
|
QHeaderView::scrollContentsBy(dx, dy);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)
|
|
void cbs_scrollTo_5576_0(const QModelIndex &index, const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & hint)
|
|
{
|
|
QHeaderView::scrollTo(index, qt_gsi::QtToCppAdaptor<QAbstractItemView::ScrollHint>(hint).cref());
|
|
}
|
|
|
|
virtual void scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)
|
|
{
|
|
if (cb_scrollTo_5576_0.can_issue()) {
|
|
cb_scrollTo_5576_0.issue<QHeaderView_Adaptor, const QModelIndex &, const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type &>(&QHeaderView_Adaptor::cbs_scrollTo_5576_0, index, qt_gsi::CppToQtAdaptor<QAbstractItemView::ScrollHint>(hint));
|
|
} else {
|
|
QHeaderView::scrollTo(index, hint);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionAutoResize(int logicalIndex, QHeaderView::ResizeMode mode)
|
|
void emitter_QHeaderView_sectionAutoResize_3303(int logicalIndex, QHeaderView::ResizeMode mode)
|
|
{
|
|
emit QHeaderView::sectionAutoResize(logicalIndex, mode);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionClicked(int logicalIndex)
|
|
void emitter_QHeaderView_sectionClicked_767(int logicalIndex)
|
|
{
|
|
emit QHeaderView::sectionClicked(logicalIndex);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionCountChanged(int oldCount, int newCount)
|
|
void emitter_QHeaderView_sectionCountChanged_1426(int oldCount, int newCount)
|
|
{
|
|
emit QHeaderView::sectionCountChanged(oldCount, newCount);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionDoubleClicked(int logicalIndex)
|
|
void emitter_QHeaderView_sectionDoubleClicked_767(int logicalIndex)
|
|
{
|
|
emit QHeaderView::sectionDoubleClicked(logicalIndex);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionEntered(int logicalIndex)
|
|
void emitter_QHeaderView_sectionEntered_767(int logicalIndex)
|
|
{
|
|
emit QHeaderView::sectionEntered(logicalIndex);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionHandleDoubleClicked(int logicalIndex)
|
|
void emitter_QHeaderView_sectionHandleDoubleClicked_767(int logicalIndex)
|
|
{
|
|
emit QHeaderView::sectionHandleDoubleClicked(logicalIndex);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex)
|
|
void emitter_QHeaderView_sectionMoved_2085(int logicalIndex, int oldVisualIndex, int newVisualIndex)
|
|
{
|
|
emit QHeaderView::sectionMoved(logicalIndex, oldVisualIndex, newVisualIndex);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionPressed(int logicalIndex)
|
|
void emitter_QHeaderView_sectionPressed_767(int logicalIndex)
|
|
{
|
|
emit QHeaderView::sectionPressed(logicalIndex);
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sectionResized(int logicalIndex, int oldSize, int newSize)
|
|
void emitter_QHeaderView_sectionResized_2085(int logicalIndex, int oldSize, int newSize)
|
|
{
|
|
emit QHeaderView::sectionResized(logicalIndex, oldSize, newSize);
|
|
}
|
|
|
|
// [adaptor impl] QSize QHeaderView::sectionSizeFromContents(int logicalIndex)
|
|
QSize cbs_sectionSizeFromContents_c767_0(int logicalIndex) const
|
|
{
|
|
return QHeaderView::sectionSizeFromContents(logicalIndex);
|
|
}
|
|
|
|
virtual QSize sectionSizeFromContents(int logicalIndex) const
|
|
{
|
|
if (cb_sectionSizeFromContents_c767_0.can_issue()) {
|
|
return cb_sectionSizeFromContents_c767_0.issue<QHeaderView_Adaptor, QSize, int>(&QHeaderView_Adaptor::cbs_sectionSizeFromContents_c767_0, logicalIndex);
|
|
} else {
|
|
return QHeaderView::sectionSizeFromContents(logicalIndex);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QList<QModelIndex> QHeaderView::selectedIndexes()
|
|
QList<QModelIndex> cbs_selectedIndexes_c0_0() const
|
|
{
|
|
return QHeaderView::selectedIndexes();
|
|
}
|
|
|
|
virtual QList<QModelIndex> selectedIndexes() const
|
|
{
|
|
if (cb_selectedIndexes_c0_0.can_issue()) {
|
|
return cb_selectedIndexes_c0_0.issue<QHeaderView_Adaptor, QList<QModelIndex> >(&QHeaderView_Adaptor::cbs_selectedIndexes_c0_0);
|
|
} else {
|
|
return QHeaderView::selectedIndexes();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
|
|
void cbs_selectionChanged_5346_0(const QItemSelection &selected, const QItemSelection &deselected)
|
|
{
|
|
QHeaderView::selectionChanged(selected, deselected);
|
|
}
|
|
|
|
virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
|
|
{
|
|
if (cb_selectionChanged_5346_0.can_issue()) {
|
|
cb_selectionChanged_5346_0.issue<QHeaderView_Adaptor, const QItemSelection &, const QItemSelection &>(&QHeaderView_Adaptor::cbs_selectionChanged_5346_0, selected, deselected);
|
|
} else {
|
|
QHeaderView::selectionChanged(selected, deselected);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QFlags<QItemSelectionModel::SelectionFlag> QHeaderView::selectionCommand(const QModelIndex &index, const QEvent *event)
|
|
QFlags<QItemSelectionModel::SelectionFlag> cbs_selectionCommand_c4199_1(const QModelIndex &index, const QEvent *event) const
|
|
{
|
|
return QHeaderView::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<QHeaderView_Adaptor, QFlags<QItemSelectionModel::SelectionFlag>, const QModelIndex &, const QEvent *>(&QHeaderView_Adaptor::cbs_selectionCommand_c4199_1, index, event);
|
|
} else {
|
|
return QHeaderView::selectionCommand(index, event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> flags)
|
|
void cbs_setSelection_6155_0(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> flags)
|
|
{
|
|
QHeaderView::setSelection(rect, flags);
|
|
}
|
|
|
|
virtual void setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> flags)
|
|
{
|
|
if (cb_setSelection_6155_0.can_issue()) {
|
|
cb_setSelection_6155_0.issue<QHeaderView_Adaptor, const QRect &, QFlags<QItemSelectionModel::SelectionFlag> >(&QHeaderView_Adaptor::cbs_setSelection_6155_0, rect, flags);
|
|
} else {
|
|
QHeaderView::setSelection(rect, flags);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::showEvent(QShowEvent *)
|
|
void cbs_showEvent_1634_0(QShowEvent *arg1)
|
|
{
|
|
QHeaderView::showEvent(arg1);
|
|
}
|
|
|
|
virtual void showEvent(QShowEvent *arg1)
|
|
{
|
|
if (cb_showEvent_1634_0.can_issue()) {
|
|
cb_showEvent_1634_0.issue<QHeaderView_Adaptor, QShowEvent *>(&QHeaderView_Adaptor::cbs_showEvent_1634_0, arg1);
|
|
} else {
|
|
QHeaderView::showEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::sortIndicatorChanged(int logicalIndex, Qt::SortOrder order)
|
|
void emitter_QHeaderView_sortIndicatorChanged_2340(int logicalIndex, Qt::SortOrder order)
|
|
{
|
|
emit QHeaderView::sortIndicatorChanged(logicalIndex, order);
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::startDrag(QFlags<Qt::DropAction> supportedActions)
|
|
void cbs_startDrag_2456_0(QFlags<Qt::DropAction> supportedActions)
|
|
{
|
|
QHeaderView::startDrag(supportedActions);
|
|
}
|
|
|
|
virtual void startDrag(QFlags<Qt::DropAction> supportedActions)
|
|
{
|
|
if (cb_startDrag_2456_0.can_issue()) {
|
|
cb_startDrag_2456_0.issue<QHeaderView_Adaptor, QFlags<Qt::DropAction> >(&QHeaderView_Adaptor::cbs_startDrag_2456_0, supportedActions);
|
|
} else {
|
|
QHeaderView::startDrag(supportedActions);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::styleChange(QStyle &)
|
|
void cbs_styleChange_1228_0(QStyle &arg1)
|
|
{
|
|
QHeaderView::styleChange(arg1);
|
|
}
|
|
|
|
virtual void styleChange(QStyle &arg1)
|
|
{
|
|
if (cb_styleChange_1228_0.can_issue()) {
|
|
cb_styleChange_1228_0.issue<QHeaderView_Adaptor, QStyle &>(&QHeaderView_Adaptor::cbs_styleChange_1228_0, arg1);
|
|
} else {
|
|
QHeaderView::styleChange(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::tabletEvent(QTabletEvent *)
|
|
void cbs_tabletEvent_1821_0(QTabletEvent *arg1)
|
|
{
|
|
QHeaderView::tabletEvent(arg1);
|
|
}
|
|
|
|
virtual void tabletEvent(QTabletEvent *arg1)
|
|
{
|
|
if (cb_tabletEvent_1821_0.can_issue()) {
|
|
cb_tabletEvent_1821_0.issue<QHeaderView_Adaptor, QTabletEvent *>(&QHeaderView_Adaptor::cbs_tabletEvent_1821_0, arg1);
|
|
} else {
|
|
QHeaderView::tabletEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::timerEvent(QTimerEvent *event)
|
|
void cbs_timerEvent_1730_0(QTimerEvent *event)
|
|
{
|
|
QHeaderView::timerEvent(event);
|
|
}
|
|
|
|
virtual void timerEvent(QTimerEvent *event)
|
|
{
|
|
if (cb_timerEvent_1730_0.can_issue()) {
|
|
cb_timerEvent_1730_0.issue<QHeaderView_Adaptor, QTimerEvent *>(&QHeaderView_Adaptor::cbs_timerEvent_1730_0, event);
|
|
} else {
|
|
QHeaderView::timerEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::updateEditorData()
|
|
void cbs_updateEditorData_0_0()
|
|
{
|
|
QHeaderView::updateEditorData();
|
|
}
|
|
|
|
virtual void updateEditorData()
|
|
{
|
|
if (cb_updateEditorData_0_0.can_issue()) {
|
|
cb_updateEditorData_0_0.issue<QHeaderView_Adaptor>(&QHeaderView_Adaptor::cbs_updateEditorData_0_0);
|
|
} else {
|
|
QHeaderView::updateEditorData();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::updateEditorGeometries()
|
|
void cbs_updateEditorGeometries_0_0()
|
|
{
|
|
QHeaderView::updateEditorGeometries();
|
|
}
|
|
|
|
virtual void updateEditorGeometries()
|
|
{
|
|
if (cb_updateEditorGeometries_0_0.can_issue()) {
|
|
cb_updateEditorGeometries_0_0.issue<QHeaderView_Adaptor>(&QHeaderView_Adaptor::cbs_updateEditorGeometries_0_0);
|
|
} else {
|
|
QHeaderView::updateEditorGeometries();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::updateGeometries()
|
|
void cbs_updateGeometries_0_0()
|
|
{
|
|
QHeaderView::updateGeometries();
|
|
}
|
|
|
|
virtual void updateGeometries()
|
|
{
|
|
if (cb_updateGeometries_0_0.can_issue()) {
|
|
cb_updateGeometries_0_0.issue<QHeaderView_Adaptor>(&QHeaderView_Adaptor::cbs_updateGeometries_0_0);
|
|
} else {
|
|
QHeaderView::updateGeometries();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QHeaderView::verticalOffset()
|
|
int cbs_verticalOffset_c0_0() const
|
|
{
|
|
return QHeaderView::verticalOffset();
|
|
}
|
|
|
|
virtual int verticalOffset() const
|
|
{
|
|
if (cb_verticalOffset_c0_0.can_issue()) {
|
|
return cb_verticalOffset_c0_0.issue<QHeaderView_Adaptor, int>(&QHeaderView_Adaptor::cbs_verticalOffset_c0_0);
|
|
} else {
|
|
return QHeaderView::verticalOffset();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::verticalScrollbarAction(int action)
|
|
void cbs_verticalScrollbarAction_767_0(int action)
|
|
{
|
|
QHeaderView::verticalScrollbarAction(action);
|
|
}
|
|
|
|
virtual void verticalScrollbarAction(int action)
|
|
{
|
|
if (cb_verticalScrollbarAction_767_0.can_issue()) {
|
|
cb_verticalScrollbarAction_767_0.issue<QHeaderView_Adaptor, int>(&QHeaderView_Adaptor::cbs_verticalScrollbarAction_767_0, action);
|
|
} else {
|
|
QHeaderView::verticalScrollbarAction(action);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::verticalScrollbarValueChanged(int value)
|
|
void cbs_verticalScrollbarValueChanged_767_0(int value)
|
|
{
|
|
QHeaderView::verticalScrollbarValueChanged(value);
|
|
}
|
|
|
|
virtual void verticalScrollbarValueChanged(int value)
|
|
{
|
|
if (cb_verticalScrollbarValueChanged_767_0.can_issue()) {
|
|
cb_verticalScrollbarValueChanged_767_0.issue<QHeaderView_Adaptor, int>(&QHeaderView_Adaptor::cbs_verticalScrollbarValueChanged_767_0, value);
|
|
} else {
|
|
QHeaderView::verticalScrollbarValueChanged(value);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QStyleOptionViewItem QHeaderView::viewOptions()
|
|
QStyleOptionViewItem cbs_viewOptions_c0_0() const
|
|
{
|
|
return QHeaderView::viewOptions();
|
|
}
|
|
|
|
virtual QStyleOptionViewItem viewOptions() const
|
|
{
|
|
if (cb_viewOptions_c0_0.can_issue()) {
|
|
return cb_viewOptions_c0_0.issue<QHeaderView_Adaptor, QStyleOptionViewItem>(&QHeaderView_Adaptor::cbs_viewOptions_c0_0);
|
|
} else {
|
|
return QHeaderView::viewOptions();
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QHeaderView::viewportEntered()
|
|
void emitter_QHeaderView_viewportEntered_0()
|
|
{
|
|
emit QHeaderView::viewportEntered();
|
|
}
|
|
|
|
// [adaptor impl] bool QHeaderView::viewportEvent(QEvent *e)
|
|
bool cbs_viewportEvent_1217_0(QEvent *e)
|
|
{
|
|
return QHeaderView::viewportEvent(e);
|
|
}
|
|
|
|
virtual bool viewportEvent(QEvent *e)
|
|
{
|
|
if (cb_viewportEvent_1217_0.can_issue()) {
|
|
return cb_viewportEvent_1217_0.issue<QHeaderView_Adaptor, bool, QEvent *>(&QHeaderView_Adaptor::cbs_viewportEvent_1217_0, e);
|
|
} else {
|
|
return QHeaderView::viewportEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRect QHeaderView::visualRect(const QModelIndex &index)
|
|
QRect cbs_visualRect_c2395_0(const QModelIndex &index) const
|
|
{
|
|
return QHeaderView::visualRect(index);
|
|
}
|
|
|
|
virtual QRect visualRect(const QModelIndex &index) const
|
|
{
|
|
if (cb_visualRect_c2395_0.can_issue()) {
|
|
return cb_visualRect_c2395_0.issue<QHeaderView_Adaptor, QRect, const QModelIndex &>(&QHeaderView_Adaptor::cbs_visualRect_c2395_0, index);
|
|
} else {
|
|
return QHeaderView::visualRect(index);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRegion QHeaderView::visualRegionForSelection(const QItemSelection &selection)
|
|
QRegion cbs_visualRegionForSelection_c2727_0(const QItemSelection &selection) const
|
|
{
|
|
return QHeaderView::visualRegionForSelection(selection);
|
|
}
|
|
|
|
virtual QRegion visualRegionForSelection(const QItemSelection &selection) const
|
|
{
|
|
if (cb_visualRegionForSelection_c2727_0.can_issue()) {
|
|
return cb_visualRegionForSelection_c2727_0.issue<QHeaderView_Adaptor, QRegion, const QItemSelection &>(&QHeaderView_Adaptor::cbs_visualRegionForSelection_c2727_0, selection);
|
|
} else {
|
|
return QHeaderView::visualRegionForSelection(selection);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::wheelEvent(QWheelEvent *)
|
|
void cbs_wheelEvent_1718_0(QWheelEvent *arg1)
|
|
{
|
|
QHeaderView::wheelEvent(arg1);
|
|
}
|
|
|
|
virtual void wheelEvent(QWheelEvent *arg1)
|
|
{
|
|
if (cb_wheelEvent_1718_0.can_issue()) {
|
|
cb_wheelEvent_1718_0.issue<QHeaderView_Adaptor, QWheelEvent *>(&QHeaderView_Adaptor::cbs_wheelEvent_1718_0, arg1);
|
|
} else {
|
|
QHeaderView::wheelEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QHeaderView::windowActivationChange(bool)
|
|
void cbs_windowActivationChange_864_0(bool arg1)
|
|
{
|
|
QHeaderView::windowActivationChange(arg1);
|
|
}
|
|
|
|
virtual void windowActivationChange(bool arg1)
|
|
{
|
|
if (cb_windowActivationChange_864_0.can_issue()) {
|
|
cb_windowActivationChange_864_0.issue<QHeaderView_Adaptor, bool>(&QHeaderView_Adaptor::cbs_windowActivationChange_864_0, arg1);
|
|
} else {
|
|
QHeaderView::windowActivationChange(arg1);
|
|
}
|
|
}
|
|
|
|
gsi::Callback cb_doItemsLayout_0_0;
|
|
gsi::Callback cb_eventFilter_2411_0;
|
|
gsi::Callback cb_heightForWidth_c767_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_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_sizeHintForColumn_c767_0;
|
|
gsi::Callback cb_sizeHintForRow_c767_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_indexAt_c1916_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_paintSection_c3769_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_scrollTo_5576_0;
|
|
gsi::Callback cb_sectionSizeFromContents_c767_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_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_visualRect_c2395_0;
|
|
gsi::Callback cb_visualRegionForSelection_c2727_0;
|
|
gsi::Callback cb_wheelEvent_1718_0;
|
|
gsi::Callback cb_windowActivationChange_864_0;
|
|
};
|
|
|
|
QHeaderView_Adaptor::~QHeaderView_Adaptor() { }
|
|
|
|
// Constructor QHeaderView::QHeaderView(Qt::Orientation orientation, QWidget *parent) (adaptor class)
|
|
|
|
static void _init_ctor_QHeaderView_Adaptor_3120 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("orientation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::Orientation>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("parent", true, "0");
|
|
decl->add_arg<QWidget * > (argspec_1);
|
|
decl->set_return_new<QHeaderView_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QHeaderView_Adaptor_3120 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<Qt::Orientation>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::Orientation>::target_type & > (heap);
|
|
QWidget *arg2 = args ? args.read<QWidget * > (heap) : (QWidget *)(0);
|
|
ret.write<QHeaderView_Adaptor *> (new QHeaderView_Adaptor (qt_gsi::QtToCppAdaptor<Qt::Orientation>(arg1).cref(), arg2));
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_actionEvent_1823_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_actionEvent_1823_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_activated_2395 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_changeEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_changeEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_childEvent_1701_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_clicked_2395 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_closeEditor_4926_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_closeEditor_4926_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_closeEvent_1719_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_closeEvent_1719_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_commitData_1315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_commitData_1315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_contextMenuEvent_2363_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_contextMenuEvent_2363_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_create_2208 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// void QHeaderView::currentChanged(const QModelIndex ¤t, const QModelIndex &old)
|
|
|
|
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 ("old");
|
|
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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_currentChanged_4682_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_currentChanged_4682_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_customContextMenuRequested_1916 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_customEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_dataChanged_4682_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_dataChanged_4682_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_destroy_1620 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_destroyed_1302 (arg1);
|
|
}
|
|
|
|
|
|
// exposed QPoint QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_dirtyRegionOffset_c0 ());
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_disconnectNotify_1731_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_disconnectNotify_1731_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_doAutoScroll_0 ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_doItemsLayout_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_doItemsLayout_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_doItemsLayout_0_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_doubleClicked_2395 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragEnterEvent_2109_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_dragEnterEvent_2109_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragLeaveEvent_2092_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_dragLeaveEvent_2092_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragMoveEvent_2006_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_dragMoveEvent_2006_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_drawFrame_1426 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dropEvent_1622_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_dropEvent_1622_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed QAbstractItemView::DropIndicatorPosition QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_dropIndicatorPosition_c0 ());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3));
|
|
}
|
|
|
|
static void _set_callback_cbs_edit_6773_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_edit_6773_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_editorDestroyed_1302_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_editorDestroyed_1302_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_enabledChange_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_enabledChange_864_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_enterEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_enterEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_entered_2395 (arg1);
|
|
}
|
|
|
|
|
|
// bool QHeaderView::event(QEvent *e)
|
|
|
|
static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
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)((QHeaderView_Adaptor *)cls)->cbs_event_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_event_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_eventFilter_2411_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_executeDelayedItemsLayout_0 ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusInEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_focusInEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_focusNextChild_0 ());
|
|
}
|
|
|
|
|
|
// bool QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_focusNextPrevChild_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_focusNextPrevChild_864_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusOutEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_focusOutEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_focusPreviousChild_0 ());
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_fontChange_1801_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_fontChange_1801_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::geometriesChanged()
|
|
|
|
static void _init_emitter_geometriesChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_geometriesChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_geometriesChanged_0 ();
|
|
}
|
|
|
|
|
|
// int QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_heightForWidth_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_heightForWidth_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hideEvent_1595_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_hideEvent_1595_0 = cb;
|
|
}
|
|
|
|
|
|
// int QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_horizontalOffset_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_horizontalOffset_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_horizontalOffset_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_horizontalScrollbarAction_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_horizontalScrollbarAction_767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_horizontalScrollbarValueChanged_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_horizontalScrollbarValueChanged_767_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed int QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_horizontalStepsPerItem_c0 ());
|
|
}
|
|
|
|
|
|
// QModelIndex QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_indexAt_c1916_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_indexAt_c1916_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::initStyleOption(QStyleOptionHeader *option)
|
|
|
|
static void _init_fp_initStyleOption_c2450 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("option");
|
|
decl->add_arg<QStyleOptionHeader * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_initStyleOption_c2450 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QStyleOptionHeader *arg1 = args.read<QStyleOptionHeader * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initStyleOption_c2450 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::initialize()
|
|
|
|
static void _init_fp_initialize_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_initialize_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initialize_0 ();
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::initializeSections()
|
|
|
|
static void _init_fp_initializeSections_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_initializeSections_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initializeSections_0 ();
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::initializeSections(int start, int end)
|
|
|
|
static void _init_fp_initializeSections_1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("start");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("end");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_initializeSections_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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initializeSections_1426 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodEvent_2354_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_inputMethodEvent_2354_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodQuery_c2420_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_inputMethodQuery_c2420_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_isIndexHidden_c2395_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_isIndexHidden_c2395_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyPressEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_keyPressEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyReleaseEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_keyReleaseEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyboardSearch_2025_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_keyboardSearch_2025_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_languageChange_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_languageChange_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_languageChange_0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_leaveEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_leaveEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// int QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_metric_c3445_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_metric_c3445_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_minimumSizeHint_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_minimumSizeHint_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_minimumSizeHint_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::mouseDoubleClickEvent(QMouseEvent *e)
|
|
|
|
static void _init_cbs_mouseDoubleClickEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseDoubleClickEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_mouseDoubleClickEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::mouseMoveEvent(QMouseEvent *e)
|
|
|
|
static void _init_cbs_mouseMoveEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseMoveEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_mouseMoveEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::mousePressEvent(QMouseEvent *e)
|
|
|
|
static void _init_cbs_mousePressEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mousePressEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_mousePressEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::mouseReleaseEvent(QMouseEvent *e)
|
|
|
|
static void _init_cbs_mouseReleaseEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseReleaseEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_mouseReleaseEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// QModelIndex QHeaderView::moveCursor(QAbstractItemView::CursorAction, QFlags<Qt::KeyboardModifier>)
|
|
|
|
static void _init_cbs_moveCursor_6476_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<unsigned int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("arg2");
|
|
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)((QHeaderView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_moveCursor_6476_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_moveCursor_6476_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_moveEvent_1624_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_moveEvent_1624_0 = cb;
|
|
}
|
|
|
|
|
|
// QPaintEngine *QHeaderView::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 *)((QHeaderView_Adaptor *)cls)->cbs_paintEngine_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_paintEngine_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_paintEngine_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_paintEvent_1725_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_paintEvent_1725_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::paintSection(QPainter *painter, const QRect &rect, int logicalIndex)
|
|
|
|
static void _init_cbs_paintSection_c3769_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("painter");
|
|
decl->add_arg<QPainter * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("rect");
|
|
decl->add_arg<const QRect & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_paintSection_c3769_0 (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);
|
|
const QRect &arg2 = args.read<const QRect & > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->cbs_paintSection_c3769_0 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_paintSection_c3769_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_paintSection_c3769_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_paletteChange_2113_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_paletteChange_2113_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_pressed_2395 (arg1);
|
|
}
|
|
|
|
|
|
// exposed int QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_receivers_c1731 (arg1));
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_reset_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_reset_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_reset_0_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_resetInputContext_0 ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_resizeEvent_1843_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_resizeEvent_1843_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::resizeSections()
|
|
|
|
static void _init_fp_resizeSections_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_resizeSections_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_resizeSections_0 ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_rowsAboutToBeRemoved_3713_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_rowsAboutToBeRemoved_3713_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_rowsInserted_3713_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_rowsInserted_3713_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_scheduleDelayedItemsLayout_0 ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_scrollContentsBy_1426_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_scrollContentsBy_1426_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_scrollDirtyRegion_1426 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QHeaderView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)
|
|
|
|
static void _init_cbs_scrollTo_5576_0 (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_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::ScrollHint>::target_type & arg2 = args.read<const qt_gsi::Converter<QAbstractItemView::ScrollHint>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->cbs_scrollTo_5576_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_scrollTo_5576_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_scrollTo_5576_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionAutoResize(int logicalIndex, QHeaderView::ResizeMode mode)
|
|
|
|
static void _init_emitter_sectionAutoResize_3303 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionAutoResize_3303 (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<QHeaderView::ResizeMode>::target_type & arg2 = args.read<const qt_gsi::Converter<QHeaderView::ResizeMode>::target_type & > (heap);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionAutoResize_3303 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionClicked(int logicalIndex)
|
|
|
|
static void _init_emitter_sectionClicked_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionClicked_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionClicked_767 (arg1);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionCountChanged(int oldCount, int newCount)
|
|
|
|
static void _init_emitter_sectionCountChanged_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_emitter_sectionCountChanged_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionCountChanged_1426 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionDoubleClicked(int logicalIndex)
|
|
|
|
static void _init_emitter_sectionDoubleClicked_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionDoubleClicked_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionDoubleClicked_767 (arg1);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionEntered(int logicalIndex)
|
|
|
|
static void _init_emitter_sectionEntered_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionEntered_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionEntered_767 (arg1);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionHandleDoubleClicked(int logicalIndex)
|
|
|
|
static void _init_emitter_sectionHandleDoubleClicked_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionHandleDoubleClicked_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionHandleDoubleClicked_767 (arg1);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex)
|
|
|
|
static void _init_emitter_sectionMoved_2085 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("oldVisualIndex");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("newVisualIndex");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionMoved_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionMoved_2085 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionPressed(int logicalIndex)
|
|
|
|
static void _init_emitter_sectionPressed_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionPressed_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionPressed_767 (arg1);
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sectionResized(int logicalIndex, int oldSize, int newSize)
|
|
|
|
static void _init_emitter_sectionResized_2085 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("oldSize");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("newSize");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_sectionResized_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionResized_2085 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// QSize QHeaderView::sectionSizeFromContents(int logicalIndex)
|
|
|
|
static void _init_cbs_sectionSizeFromContents_c767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_cbs_sectionSizeFromContents_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<QSize > ((QSize)((QHeaderView_Adaptor *)cls)->cbs_sectionSizeFromContents_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sectionSizeFromContents_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_sectionSizeFromContents_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::sectionsAboutToBeRemoved(const QModelIndex &parent, int logicalFirst, int logicalLast)
|
|
|
|
static void _init_fp_sectionsAboutToBeRemoved_3713 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("logicalFirst");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("logicalLast");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_sectionsAboutToBeRemoved_3713 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QModelIndex &arg1 = args.read<const QModelIndex & > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_sectionsAboutToBeRemoved_3713 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::sectionsInserted(const QModelIndex &parent, int logicalFirst, int logicalLast)
|
|
|
|
static void _init_fp_sectionsInserted_3713 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent");
|
|
decl->add_arg<const QModelIndex & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("logicalFirst");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("logicalLast");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_sectionsInserted_3713 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QModelIndex &arg1 = args.read<const QModelIndex & > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_sectionsInserted_3713 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_selectAll_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_selectAll_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_selectAll_0_0 = cb;
|
|
}
|
|
|
|
|
|
// QList<QModelIndex> QHeaderView::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>)((QHeaderView_Adaptor *)cls)->cbs_selectedIndexes_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_selectedIndexes_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_selectedIndexes_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_selectionChanged_5346_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_selectionChanged_5346_0 = cb;
|
|
}
|
|
|
|
|
|
// QFlags<QItemSelectionModel::SelectionFlag> QHeaderView::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>)((QHeaderView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_selectionCommand_c4199_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_selectionCommand_c4199_1 = cb;
|
|
}
|
|
|
|
|
|
// exposed QObject *QHeaderView::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 *)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_sender_c0 ());
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setDirtyRegion_2006 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setHorizontalStepsPerItem_767 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setModel_2419_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_setModel_2419_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setRootIndex_2395_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_setRootIndex_2395_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> flags)
|
|
|
|
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 ("flags");
|
|
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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_setSelection_6155_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_setSelection_6155_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setSelectionModel_2533_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_setSelectionModel_2533_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setState_2776 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setVerticalStepsPerItem_767 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setViewportMargins_2744 (arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setViewportMargins_2115 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setVisible_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_setVisible_864_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setupViewport_1315 (arg1);
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_showEvent_1634_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_showEvent_1634_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_sizeHint_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHint_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_sizeHint_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// int QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHintForColumn_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_sizeHintForColumn_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// int QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHintForRow_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_sizeHintForRow_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::sortIndicatorChanged(int logicalIndex, Qt::SortOrder order)
|
|
|
|
static void _init_emitter_sortIndicatorChanged_2340 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
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_emitter_sortIndicatorChanged_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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sortIndicatorChanged_2340 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_startAutoScroll_0 ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_startDrag_2456_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_startDrag_2456_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed QAbstractItemView::State QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_state_c0 ());
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_stopAutoScroll_0 ();
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_styleChange_1228_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_styleChange_1228_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_tabletEvent_1821_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_tabletEvent_1821_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_timerEvent_1730_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_updateEditorData_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_updateEditorData_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_updateEditorData_0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_updateEditorGeometries_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_updateEditorGeometries_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_updateEditorGeometries_0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_updateGeometries_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_updateGeometries_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_updateGeometries_0_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_updateMicroFocus_0 ();
|
|
}
|
|
|
|
|
|
// exposed void QHeaderView::updateSection(int logicalIndex)
|
|
|
|
static void _init_fp_updateSection_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("logicalIndex");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_updateSection_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);
|
|
((QHeaderView_Adaptor *)cls)->fp_QHeaderView_updateSection_767 (arg1);
|
|
}
|
|
|
|
|
|
// int QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_verticalOffset_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_verticalOffset_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_verticalOffset_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_verticalScrollbarAction_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_verticalScrollbarAction_767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_verticalScrollbarValueChanged_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_verticalScrollbarValueChanged_767_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed int QHeaderView::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)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_verticalStepsPerItem_c0 ());
|
|
}
|
|
|
|
|
|
// QStyleOptionViewItem QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_viewOptions_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_viewOptions_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_viewOptions_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_viewportEntered_0 ();
|
|
}
|
|
|
|
|
|
// bool QHeaderView::viewportEvent(QEvent *e)
|
|
|
|
static void _init_cbs_viewportEvent_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
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)((QHeaderView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_viewportEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_viewportEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// QRect QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_visualRect_c2395_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_visualRect_c2395_0 = cb;
|
|
}
|
|
|
|
|
|
// QRegion QHeaderView::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)((QHeaderView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_visualRegionForSelection_c2727_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_visualRegionForSelection_c2727_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_wheelEvent_1718_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_wheelEvent_1718_0 = cb;
|
|
}
|
|
|
|
|
|
// void QHeaderView::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);
|
|
((QHeaderView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_windowActivationChange_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QHeaderView_Adaptor *)cls)->cb_windowActivationChange_864_0 = cb;
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QHeaderView> &qtdecl_QHeaderView ();
|
|
|
|
static gsi::Methods methods_QHeaderView_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHeaderView::QHeaderView(Qt::Orientation orientation, QWidget *parent)\nThis method creates an object of class QHeaderView.", &_init_ctor_QHeaderView_Adaptor_3120, &_call_ctor_QHeaderView_Adaptor_3120);
|
|
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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 ("*commitData", "@hide", false, &_init_cbs_commitData_1315_0, &_call_cbs_commitData_1315_0);
|
|
methods += new qt_gsi::GenericMethod ("*commitData", "@brief Virtual method void QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::currentChanged(const QModelIndex ¤t, const QModelIndex &old)\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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::event(QEvent *e)\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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 ("emit_geometriesChanged", "@brief Emitter for signal void QHeaderView::geometriesChanged()\nCall this method to emit this signal.", false, &_init_emitter_geometriesChanged_0, &_call_emitter_geometriesChanged_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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 ("*initStyleOption", "@brief Method void QHeaderView::initStyleOption(QStyleOptionHeader *option)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_initStyleOption_c2450, &_call_fp_initStyleOption_c2450);
|
|
methods += new qt_gsi::GenericMethod ("*initialize", "@brief Method void QHeaderView::initialize()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_initialize_0, &_call_fp_initialize_0);
|
|
methods += new qt_gsi::GenericMethod ("*initializeSections", "@brief Method void QHeaderView::initializeSections()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_initializeSections_0, &_call_fp_initializeSections_0);
|
|
methods += new qt_gsi::GenericMethod ("*initializeSections", "@brief Method void QHeaderView::initializeSections(int start, int end)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_initializeSections_1426, &_call_fp_initializeSections_1426);
|
|
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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::mouseDoubleClickEvent(QMouseEvent *e)\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 QHeaderView::mouseMoveEvent(QMouseEvent *e)\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 QHeaderView::mousePressEvent(QMouseEvent *e)\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 QHeaderView::mouseReleaseEvent(QMouseEvent *e)\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 QHeaderView::moveCursor(QAbstractItemView::CursorAction, QFlags<Qt::KeyboardModifier>)\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 QHeaderView::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 *QHeaderView::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 QHeaderView::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 ("*paintSection", "@hide", true, &_init_cbs_paintSection_c3769_0, &_call_cbs_paintSection_c3769_0);
|
|
methods += new qt_gsi::GenericMethod ("*paintSection", "@brief Virtual method void QHeaderView::paintSection(QPainter *painter, const QRect &rect, int logicalIndex)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_paintSection_c3769_0, &_call_cbs_paintSection_c3769_0, &_set_callback_cbs_paintSection_c3769_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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 ("*resizeSections", "@brief Method void QHeaderView::resizeSections()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_resizeSections_0, &_call_fp_resizeSections_0);
|
|
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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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_0, &_call_cbs_scrollTo_5576_0);
|
|
methods += new qt_gsi::GenericMethod ("*scrollTo", "@brief Virtual method void QHeaderView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_scrollTo_5576_0, &_call_cbs_scrollTo_5576_0, &_set_callback_cbs_scrollTo_5576_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionAutoResize", "@brief Emitter for signal void QHeaderView::sectionAutoResize(int logicalIndex, QHeaderView::ResizeMode mode)\nCall this method to emit this signal.", false, &_init_emitter_sectionAutoResize_3303, &_call_emitter_sectionAutoResize_3303);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionClicked", "@brief Emitter for signal void QHeaderView::sectionClicked(int logicalIndex)\nCall this method to emit this signal.", false, &_init_emitter_sectionClicked_767, &_call_emitter_sectionClicked_767);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionCountChanged", "@brief Emitter for signal void QHeaderView::sectionCountChanged(int oldCount, int newCount)\nCall this method to emit this signal.", false, &_init_emitter_sectionCountChanged_1426, &_call_emitter_sectionCountChanged_1426);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionDoubleClicked", "@brief Emitter for signal void QHeaderView::sectionDoubleClicked(int logicalIndex)\nCall this method to emit this signal.", false, &_init_emitter_sectionDoubleClicked_767, &_call_emitter_sectionDoubleClicked_767);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionEntered", "@brief Emitter for signal void QHeaderView::sectionEntered(int logicalIndex)\nCall this method to emit this signal.", false, &_init_emitter_sectionEntered_767, &_call_emitter_sectionEntered_767);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionHandleDoubleClicked", "@brief Emitter for signal void QHeaderView::sectionHandleDoubleClicked(int logicalIndex)\nCall this method to emit this signal.", false, &_init_emitter_sectionHandleDoubleClicked_767, &_call_emitter_sectionHandleDoubleClicked_767);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionMoved", "@brief Emitter for signal void QHeaderView::sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex)\nCall this method to emit this signal.", false, &_init_emitter_sectionMoved_2085, &_call_emitter_sectionMoved_2085);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionPressed", "@brief Emitter for signal void QHeaderView::sectionPressed(int logicalIndex)\nCall this method to emit this signal.", false, &_init_emitter_sectionPressed_767, &_call_emitter_sectionPressed_767);
|
|
methods += new qt_gsi::GenericMethod ("emit_sectionResized", "@brief Emitter for signal void QHeaderView::sectionResized(int logicalIndex, int oldSize, int newSize)\nCall this method to emit this signal.", false, &_init_emitter_sectionResized_2085, &_call_emitter_sectionResized_2085);
|
|
methods += new qt_gsi::GenericMethod ("*sectionSizeFromContents", "@hide", true, &_init_cbs_sectionSizeFromContents_c767_0, &_call_cbs_sectionSizeFromContents_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*sectionSizeFromContents", "@brief Virtual method QSize QHeaderView::sectionSizeFromContents(int logicalIndex)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_sectionSizeFromContents_c767_0, &_call_cbs_sectionSizeFromContents_c767_0, &_set_callback_cbs_sectionSizeFromContents_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*sectionsAboutToBeRemoved", "@brief Method void QHeaderView::sectionsAboutToBeRemoved(const QModelIndex &parent, int logicalFirst, int logicalLast)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_sectionsAboutToBeRemoved_3713, &_call_fp_sectionsAboutToBeRemoved_3713);
|
|
methods += new qt_gsi::GenericMethod ("*sectionsInserted", "@brief Method void QHeaderView::sectionsInserted(const QModelIndex &parent, int logicalFirst, int logicalLast)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_sectionsInserted_3713, &_call_fp_sectionsInserted_3713);
|
|
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 QHeaderView::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> QHeaderView::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 QHeaderView::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> QHeaderView::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 *QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> flags)\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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 ("emit_sortIndicatorChanged", "@brief Emitter for signal void QHeaderView::sortIndicatorChanged(int logicalIndex, Qt::SortOrder order)\nCall this method to emit this signal.", false, &_init_emitter_sortIndicatorChanged_2340, &_call_emitter_sortIndicatorChanged_2340);
|
|
methods += new qt_gsi::GenericMethod ("*startAutoScroll", "@brief Method void QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 ("*updateSection", "@brief Method void QHeaderView::updateSection(int logicalIndex)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_updateSection_767, &_call_fp_updateSection_767);
|
|
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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::viewportEvent(QEvent *e)\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 QHeaderView::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 QHeaderView::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 QHeaderView::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 QHeaderView::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<QHeaderView_Adaptor> decl_QHeaderView_Adaptor (qtdecl_QHeaderView (), "QHeaderView",
|
|
methods_QHeaderView_Adaptor (),
|
|
"@qt\n@brief Binding of QHeaderView");
|
|
|
|
}
|
|
|
|
|
|
// Implementation of the enum wrapper class for QHeaderView::ResizeMode
|
|
namespace qt_gsi
|
|
{
|
|
|
|
static gsi::Enum<QHeaderView::ResizeMode> decl_QHeaderView_ResizeMode_Enum ("QHeaderView_ResizeMode",
|
|
gsi::enum_const ("Interactive", QHeaderView::Interactive, "@brief Enum constant QHeaderView::Interactive") +
|
|
gsi::enum_const ("Stretch", QHeaderView::Stretch, "@brief Enum constant QHeaderView::Stretch") +
|
|
gsi::enum_const ("Fixed", QHeaderView::Fixed, "@brief Enum constant QHeaderView::Fixed") +
|
|
gsi::enum_const ("ResizeToContents", QHeaderView::ResizeToContents, "@brief Enum constant QHeaderView::ResizeToContents") +
|
|
gsi::enum_const ("Custom", QHeaderView::Custom, "@brief Enum constant QHeaderView::Custom"),
|
|
"@qt\n@brief This class represents the QHeaderView::ResizeMode enum");
|
|
|
|
static gsi::QFlagsClass<QHeaderView::ResizeMode > decl_QHeaderView_ResizeMode_Enums ("QHeaderView_QFlags_ResizeMode",
|
|
"@qt\n@brief This class represents the QFlags<QHeaderView::ResizeMode> flag set");
|
|
|
|
// Inject the declarations into the parent
|
|
static gsi::ClassExt<QHeaderView> inject_QHeaderView_ResizeMode_Enum_in_parent (decl_QHeaderView_ResizeMode_Enum.defs ());
|
|
static gsi::ClassExt<QHeaderView> decl_QHeaderView_ResizeMode_Enum_as_child (decl_QHeaderView_ResizeMode_Enum, "ResizeMode");
|
|
static gsi::ClassExt<QHeaderView> decl_QHeaderView_ResizeMode_Enums_as_child (decl_QHeaderView_ResizeMode_Enums, "QFlags_ResizeMode");
|
|
|
|
}
|
|
|