mirror of https://github.com/KLayout/klayout.git
2388 lines
88 KiB
C++
2388 lines
88 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2018 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 gsiDeclQLayout.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QLayout>
|
|
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QLayoutItem>
|
|
#include <QMargins>
|
|
#include <QMetaMethod>
|
|
#include <QObject>
|
|
#include <QRect>
|
|
#include <QSize>
|
|
#include <QSpacerItem>
|
|
#include <QThread>
|
|
#include <QTimerEvent>
|
|
#include <QWidget>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QLayout
|
|
|
|
// 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 &> (QLayout::staticMetaObject);
|
|
}
|
|
|
|
|
|
// bool QLayout::activate()
|
|
|
|
|
|
static void _init_f_activate_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_activate_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QLayout *)cls)->activate ());
|
|
}
|
|
|
|
|
|
// void QLayout::addItem(QLayoutItem *)
|
|
|
|
|
|
static void _init_f_addItem_1740 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QLayoutItem * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QLayoutItem *arg1 = args.read<QLayoutItem * > (heap);
|
|
qt_gsi::qt_keep (arg1);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout *)cls)->addItem (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::addWidget(QWidget *w)
|
|
|
|
|
|
static void _init_f_addWidget_1315 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_addWidget_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);
|
|
((QLayout *)cls)->addWidget (arg1);
|
|
}
|
|
|
|
|
|
// QMargins QLayout::contentsMargins()
|
|
|
|
|
|
static void _init_f_contentsMargins_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QMargins > ();
|
|
}
|
|
|
|
static void _call_f_contentsMargins_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QMargins > ((QMargins)((QLayout *)cls)->contentsMargins ());
|
|
}
|
|
|
|
|
|
// QRect QLayout::contentsRect()
|
|
|
|
|
|
static void _init_f_contentsRect_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
static void _call_f_contentsRect_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QRect > ((QRect)((QLayout *)cls)->contentsRect ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_controlTypes_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QFlags<QSizePolicy::ControlType> > ();
|
|
}
|
|
|
|
static void _call_f_controlTypes_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QFlags<QSizePolicy::ControlType> > ((QFlags<QSizePolicy::ControlType>)((QLayout *)cls)->controlTypes ());
|
|
}
|
|
|
|
|
|
// int QLayout::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)((QLayout *)cls)->count ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_expandingDirections_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QFlags<Qt::Orientation> > ();
|
|
}
|
|
|
|
static void _call_f_expandingDirections_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QFlags<Qt::Orientation> > ((QFlags<Qt::Orientation>)((QLayout *)cls)->expandingDirections ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_geometry_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
static void _call_f_geometry_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QRect > ((QRect)((QLayout *)cls)->geometry ());
|
|
}
|
|
|
|
|
|
// void QLayout::getContentsMargins(int *left, int *top, int *right, int *bottom)
|
|
|
|
|
|
static void _init_f_getContentsMargins_c3488 (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_f_getContentsMargins_c3488 (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);
|
|
((QLayout *)cls)->getContentsMargins (arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
|
|
// int QLayout::indexOf(QWidget *)
|
|
|
|
|
|
static void _init_f_indexOf_c1315 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_indexOf_c1315 (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);
|
|
ret.write<int > ((int)((QLayout *)cls)->indexOf (arg1));
|
|
}
|
|
|
|
|
|
// ()
|
|
|
|
|
|
static void _init_f_invalidate_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_invalidate_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout *)cls)->invalidate ();
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isEmpty_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QLayout *)cls)->isEmpty ());
|
|
}
|
|
|
|
|
|
// bool QLayout::isEnabled()
|
|
|
|
|
|
static void _init_f_isEnabled_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QLayout *)cls)->isEnabled ());
|
|
}
|
|
|
|
|
|
// QLayoutItem *QLayout::itemAt(int index)
|
|
|
|
|
|
static void _init_f_itemAt_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<QLayoutItem * > ();
|
|
}
|
|
|
|
static void _call_f_itemAt_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<QLayoutItem * > ((QLayoutItem *)((QLayout *)cls)->itemAt (arg1));
|
|
}
|
|
|
|
|
|
// ()
|
|
|
|
|
|
static void _init_f_layout_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QLayout * > ();
|
|
}
|
|
|
|
static void _call_f_layout_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QLayout * > ((QLayout *)((QLayout *)cls)->layout ());
|
|
}
|
|
|
|
|
|
// int QLayout::margin()
|
|
|
|
|
|
static void _init_f_margin_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_margin_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QLayout *)cls)->margin ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_maximumSize_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_maximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QLayout *)cls)->maximumSize ());
|
|
}
|
|
|
|
|
|
// QWidget *QLayout::menuBar()
|
|
|
|
|
|
static void _init_f_menuBar_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QWidget * > ();
|
|
}
|
|
|
|
static void _call_f_menuBar_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QWidget * > ((QWidget *)((QLayout *)cls)->menuBar ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_minimumSize_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_minimumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QLayout *)cls)->minimumSize ());
|
|
}
|
|
|
|
|
|
// QWidget *QLayout::parentWidget()
|
|
|
|
|
|
static void _init_f_parentWidget_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QWidget * > ();
|
|
}
|
|
|
|
static void _call_f_parentWidget_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QWidget * > ((QWidget *)((QLayout *)cls)->parentWidget ());
|
|
}
|
|
|
|
|
|
// void QLayout::removeItem(QLayoutItem *)
|
|
|
|
|
|
static void _init_f_removeItem_1740 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QLayoutItem * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_removeItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QLayoutItem *arg1 = args.read<QLayoutItem * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout *)cls)->removeItem (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::removeWidget(QWidget *w)
|
|
|
|
|
|
static void _init_f_removeWidget_1315 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_removeWidget_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);
|
|
((QLayout *)cls)->removeWidget (arg1);
|
|
}
|
|
|
|
|
|
// QLayoutItem *QLayout::replaceWidget(QWidget *from, QWidget *to, QFlags<Qt::FindChildOption> options)
|
|
|
|
|
|
static void _init_f_replaceWidget_5361 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("from");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("to");
|
|
decl->add_arg<QWidget * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("options", true, "Qt::FindChildrenRecursively");
|
|
decl->add_arg<QFlags<Qt::FindChildOption> > (argspec_2);
|
|
decl->set_return<QLayoutItem * > ();
|
|
}
|
|
|
|
static void _call_f_replaceWidget_5361 (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);
|
|
QWidget *arg2 = args.read<QWidget * > (heap);
|
|
QFlags<Qt::FindChildOption> arg3 = args ? args.read<QFlags<Qt::FindChildOption> > (heap) : (QFlags<Qt::FindChildOption>)(Qt::FindChildrenRecursively);
|
|
ret.write<QLayoutItem * > ((QLayoutItem *)((QLayout *)cls)->replaceWidget (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// (QWidget *, QFlags<Qt::AlignmentFlag>)
|
|
|
|
|
|
static void _init_f_setAlignment_3957 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("alignment");
|
|
decl->add_arg<QFlags<Qt::AlignmentFlag> > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_setAlignment_3957 (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);
|
|
QFlags<Qt::AlignmentFlag> arg2 = args.read<QFlags<Qt::AlignmentFlag> > (heap);
|
|
ret.write<bool > ((bool)((QLayout *)cls)->setAlignment (arg1, arg2));
|
|
}
|
|
|
|
|
|
// (QLayout *, QFlags<Qt::AlignmentFlag>)
|
|
|
|
|
|
static void _init_f_setAlignment_3983 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("l");
|
|
decl->add_arg<QLayout * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("alignment");
|
|
decl->add_arg<QFlags<Qt::AlignmentFlag> > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_setAlignment_3983 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QLayout *arg1 = args.read<QLayout * > (heap);
|
|
QFlags<Qt::AlignmentFlag> arg2 = args.read<QFlags<Qt::AlignmentFlag> > (heap);
|
|
ret.write<bool > ((bool)((QLayout *)cls)->setAlignment (arg1, arg2));
|
|
}
|
|
|
|
|
|
// (QFlags<Qt::AlignmentFlag>)
|
|
|
|
|
|
static void _init_f_setAlignment_2750 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("a");
|
|
decl->add_arg<QFlags<Qt::AlignmentFlag> > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setAlignment_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);
|
|
((QLayout *)cls)->setAlignment (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::setContentsMargins(int left, int top, int right, int bottom)
|
|
|
|
|
|
static void _init_f_setContentsMargins_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_f_setContentsMargins_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);
|
|
((QLayout *)cls)->setContentsMargins (arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
|
|
// void QLayout::setContentsMargins(const QMargins &margins)
|
|
|
|
|
|
static void _init_f_setContentsMargins_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_f_setContentsMargins_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);
|
|
((QLayout *)cls)->setContentsMargins (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::setEnabled(bool)
|
|
|
|
|
|
static void _init_f_setEnabled_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setEnabled_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);
|
|
((QLayout *)cls)->setEnabled (arg1);
|
|
}
|
|
|
|
|
|
// (const QRect &)
|
|
|
|
|
|
static void _init_f_setGeometry_1792 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QRect & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setGeometry_1792 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout *)cls)->setGeometry (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::setMargin(int)
|
|
|
|
|
|
static void _init_f_setMargin_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setMargin_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);
|
|
((QLayout *)cls)->setMargin (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::setMenuBar(QWidget *w)
|
|
|
|
|
|
static void _init_f_setMenuBar_1315 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setMenuBar_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);
|
|
((QLayout *)cls)->setMenuBar (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::setSizeConstraint(QLayout::SizeConstraint)
|
|
|
|
|
|
static void _init_f_setSizeConstraint_2743 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const qt_gsi::Converter<QLayout::SizeConstraint>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setSizeConstraint_2743 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QLayout::SizeConstraint>::target_type & arg1 = args.read<const qt_gsi::Converter<QLayout::SizeConstraint>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout *)cls)->setSizeConstraint (qt_gsi::QtToCppAdaptor<QLayout::SizeConstraint>(arg1).cref());
|
|
}
|
|
|
|
|
|
// void QLayout::setSpacing(int)
|
|
|
|
|
|
static void _init_f_setSpacing_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setSpacing_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);
|
|
((QLayout *)cls)->setSpacing (arg1);
|
|
}
|
|
|
|
|
|
// QLayout::SizeConstraint QLayout::sizeConstraint()
|
|
|
|
|
|
static void _init_f_sizeConstraint_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qt_gsi::Converter<QLayout::SizeConstraint>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_sizeConstraint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qt_gsi::Converter<QLayout::SizeConstraint>::target_type > ((qt_gsi::Converter<QLayout::SizeConstraint>::target_type)qt_gsi::CppToQtAdaptor<QLayout::SizeConstraint>(((QLayout *)cls)->sizeConstraint ()));
|
|
}
|
|
|
|
|
|
// int QLayout::spacing()
|
|
|
|
|
|
static void _init_f_spacing_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_spacing_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QLayout *)cls)->spacing ());
|
|
}
|
|
|
|
|
|
// QLayoutItem *QLayout::takeAt(int index)
|
|
|
|
|
|
static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return_new<QLayoutItem * > ();
|
|
}
|
|
|
|
static void _call_f_takeAt_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);
|
|
ret.write<QLayoutItem * > ((QLayoutItem *)((QLayout *)cls)->takeAt (arg1));
|
|
}
|
|
|
|
|
|
// int QLayout::totalHeightForWidth(int w)
|
|
|
|
|
|
static void _init_f_totalHeightForWidth_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_totalHeightForWidth_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)((QLayout *)cls)->totalHeightForWidth (arg1));
|
|
}
|
|
|
|
|
|
// QSize QLayout::totalMaximumSize()
|
|
|
|
|
|
static void _init_f_totalMaximumSize_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_totalMaximumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QLayout *)cls)->totalMaximumSize ());
|
|
}
|
|
|
|
|
|
// QSize QLayout::totalMinimumSize()
|
|
|
|
|
|
static void _init_f_totalMinimumSize_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_totalMinimumSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QLayout *)cls)->totalMinimumSize ());
|
|
}
|
|
|
|
|
|
// QSize QLayout::totalSizeHint()
|
|
|
|
|
|
static void _init_f_totalSizeHint_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_totalSizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QLayout *)cls)->totalSizeHint ());
|
|
}
|
|
|
|
|
|
// void QLayout::update()
|
|
|
|
|
|
static void _init_f_update_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_update_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout *)cls)->update ();
|
|
}
|
|
|
|
|
|
// static QSize QLayout::closestAcceptableSize(const QWidget *w, const QSize &s)
|
|
|
|
|
|
static void _init_f_closestAcceptableSize_3707 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<const QWidget * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("s");
|
|
decl->add_arg<const QSize & > (argspec_1);
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_closestAcceptableSize_3707 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QWidget *arg1 = args.read<const QWidget * > (heap);
|
|
const QSize &arg2 = args.read<const QSize & > (heap);
|
|
ret.write<QSize > ((QSize)QLayout::closestAcceptableSize (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QLayout::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", true, "__null");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n", true, "-1");
|
|
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 ? args.read<const char * > (heap) : (const char *)(__null);
|
|
int arg3 = args ? args.read<int > (heap) : (int)(-1);
|
|
ret.write<QString > ((QString)QLayout::tr (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QString QLayout::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", true, "__null");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n", true, "-1");
|
|
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 ? args.read<const char * > (heap) : (const char *)(__null);
|
|
int arg3 = args ? args.read<int > (heap) : (int)(-1);
|
|
ret.write<QString > ((QString)QLayout::trUtf8 (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// base class cast for QObject
|
|
|
|
static void _init_f_QLayout_as_QObject (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QObject *> ();
|
|
}
|
|
|
|
static void _call_f_QLayout_as_QObject (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<QObject *> ((QObject *)(QLayout *)cls);
|
|
}
|
|
|
|
static void _init_f_QLayout_as_const_QObject (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<const QObject *> ();
|
|
}
|
|
|
|
static void _call_f_QLayout_as_const_QObject (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<const QObject *> ((const QObject *)(const QLayout *)cls);
|
|
}
|
|
|
|
// base class cast for QLayoutItem
|
|
|
|
static void _init_f_QLayout_as_QLayoutItem (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QLayoutItem *> ();
|
|
}
|
|
|
|
static void _call_f_QLayout_as_QLayoutItem (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<QLayoutItem *> ((QLayoutItem *)(QLayout *)cls);
|
|
}
|
|
|
|
static void _init_f_QLayout_as_const_QLayoutItem (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<const QLayoutItem *> ();
|
|
}
|
|
|
|
static void _call_f_QLayout_as_const_QLayoutItem (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<const QLayoutItem *> ((const QLayoutItem *)(const QLayout *)cls);
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QLayout () {
|
|
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 ("activate", "@brief Method bool QLayout::activate()\n", false, &_init_f_activate_0, &_call_f_activate_0);
|
|
methods += new qt_gsi::GenericMethod ("addItem", "@brief Method void QLayout::addItem(QLayoutItem *)\n", false, &_init_f_addItem_1740, &_call_f_addItem_1740);
|
|
methods += new qt_gsi::GenericMethod ("addWidget", "@brief Method void QLayout::addWidget(QWidget *w)\n", false, &_init_f_addWidget_1315, &_call_f_addWidget_1315);
|
|
methods += new qt_gsi::GenericMethod (":contentsMargins", "@brief Method QMargins QLayout::contentsMargins()\n", true, &_init_f_contentsMargins_c0, &_call_f_contentsMargins_c0);
|
|
methods += new qt_gsi::GenericMethod ("contentsRect", "@brief Method QRect QLayout::contentsRect()\n", true, &_init_f_contentsRect_c0, &_call_f_contentsRect_c0);
|
|
methods += new qt_gsi::GenericMethod ("controlTypes", "@brief Method () const\nThis is a reimplementation of QLayoutItem::controlTypes", true, &_init_f_controlTypes_c0, &_call_f_controlTypes_c0);
|
|
methods += new qt_gsi::GenericMethod ("count", "@brief Method int QLayout::count()\n", true, &_init_f_count_c0, &_call_f_count_c0);
|
|
methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Method () const\nThis is a reimplementation of QLayoutItem::expandingDirections", true, &_init_f_expandingDirections_c0, &_call_f_expandingDirections_c0);
|
|
methods += new qt_gsi::GenericMethod (":geometry", "@brief Method () const\nThis is a reimplementation of QLayoutItem::geometry", true, &_init_f_geometry_c0, &_call_f_geometry_c0);
|
|
methods += new qt_gsi::GenericMethod ("getContentsMargins", "@brief Method void QLayout::getContentsMargins(int *left, int *top, int *right, int *bottom)\n", true, &_init_f_getContentsMargins_c3488, &_call_f_getContentsMargins_c3488);
|
|
methods += new qt_gsi::GenericMethod ("indexOf", "@brief Method int QLayout::indexOf(QWidget *)\n", true, &_init_f_indexOf_c1315, &_call_f_indexOf_c1315);
|
|
methods += new qt_gsi::GenericMethod ("invalidate", "@brief Method ()\nThis is a reimplementation of QLayoutItem::invalidate", false, &_init_f_invalidate_0, &_call_f_invalidate_0);
|
|
methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method () const\nThis is a reimplementation of QLayoutItem::isEmpty", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0);
|
|
methods += new qt_gsi::GenericMethod ("isEnabled?|:enabled", "@brief Method bool QLayout::isEnabled()\n", true, &_init_f_isEnabled_c0, &_call_f_isEnabled_c0);
|
|
methods += new qt_gsi::GenericMethod ("itemAt", "@brief Method QLayoutItem *QLayout::itemAt(int index)\n", true, &_init_f_itemAt_c767, &_call_f_itemAt_c767);
|
|
methods += new qt_gsi::GenericMethod ("layout", "@brief Method ()\nThis is a reimplementation of QLayoutItem::layout", false, &_init_f_layout_0, &_call_f_layout_0);
|
|
methods += new qt_gsi::GenericMethod (":margin", "@brief Method int QLayout::margin()\n", true, &_init_f_margin_c0, &_call_f_margin_c0);
|
|
methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::maximumSize", true, &_init_f_maximumSize_c0, &_call_f_maximumSize_c0);
|
|
methods += new qt_gsi::GenericMethod (":menuBar", "@brief Method QWidget *QLayout::menuBar()\n", true, &_init_f_menuBar_c0, &_call_f_menuBar_c0);
|
|
methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Method () const\nThis is a reimplementation of QLayoutItem::minimumSize", true, &_init_f_minimumSize_c0, &_call_f_minimumSize_c0);
|
|
methods += new qt_gsi::GenericMethod ("parentWidget", "@brief Method QWidget *QLayout::parentWidget()\n", true, &_init_f_parentWidget_c0, &_call_f_parentWidget_c0);
|
|
methods += new qt_gsi::GenericMethod ("removeItem", "@brief Method void QLayout::removeItem(QLayoutItem *)\n", false, &_init_f_removeItem_1740, &_call_f_removeItem_1740);
|
|
methods += new qt_gsi::GenericMethod ("removeWidget", "@brief Method void QLayout::removeWidget(QWidget *w)\n", false, &_init_f_removeWidget_1315, &_call_f_removeWidget_1315);
|
|
methods += new qt_gsi::GenericMethod ("replaceWidget", "@brief Method QLayoutItem *QLayout::replaceWidget(QWidget *from, QWidget *to, QFlags<Qt::FindChildOption> options)\n", false, &_init_f_replaceWidget_5361, &_call_f_replaceWidget_5361);
|
|
methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method (QWidget *, QFlags<Qt::AlignmentFlag>)\n", false, &_init_f_setAlignment_3957, &_call_f_setAlignment_3957);
|
|
methods += new qt_gsi::GenericMethod ("setAlignment", "@brief Method (QLayout *, QFlags<Qt::AlignmentFlag>)\n", false, &_init_f_setAlignment_3983, &_call_f_setAlignment_3983);
|
|
methods += new qt_gsi::GenericMethod ("setAlignment|alignment=", "@brief Method (QFlags<Qt::AlignmentFlag>)\n", false, &_init_f_setAlignment_2750, &_call_f_setAlignment_2750);
|
|
methods += new qt_gsi::GenericMethod ("setContentsMargins", "@brief Method void QLayout::setContentsMargins(int left, int top, int right, int bottom)\n", false, &_init_f_setContentsMargins_2744, &_call_f_setContentsMargins_2744);
|
|
methods += new qt_gsi::GenericMethod ("setContentsMargins|contentsMargins=", "@brief Method void QLayout::setContentsMargins(const QMargins &margins)\n", false, &_init_f_setContentsMargins_2115, &_call_f_setContentsMargins_2115);
|
|
methods += new qt_gsi::GenericMethod ("setEnabled|enabled=", "@brief Method void QLayout::setEnabled(bool)\n", false, &_init_f_setEnabled_864, &_call_f_setEnabled_864);
|
|
methods += new qt_gsi::GenericMethod ("setGeometry|geometry=", "@brief Method (const QRect &)\nThis is a reimplementation of QLayoutItem::setGeometry", false, &_init_f_setGeometry_1792, &_call_f_setGeometry_1792);
|
|
methods += new qt_gsi::GenericMethod ("setMargin|margin=", "@brief Method void QLayout::setMargin(int)\n", false, &_init_f_setMargin_767, &_call_f_setMargin_767);
|
|
methods += new qt_gsi::GenericMethod ("setMenuBar|menuBar=", "@brief Method void QLayout::setMenuBar(QWidget *w)\n", false, &_init_f_setMenuBar_1315, &_call_f_setMenuBar_1315);
|
|
methods += new qt_gsi::GenericMethod ("setSizeConstraint|sizeConstraint=", "@brief Method void QLayout::setSizeConstraint(QLayout::SizeConstraint)\n", false, &_init_f_setSizeConstraint_2743, &_call_f_setSizeConstraint_2743);
|
|
methods += new qt_gsi::GenericMethod ("setSpacing|spacing=", "@brief Method void QLayout::setSpacing(int)\n", false, &_init_f_setSpacing_767, &_call_f_setSpacing_767);
|
|
methods += new qt_gsi::GenericMethod (":sizeConstraint", "@brief Method QLayout::SizeConstraint QLayout::sizeConstraint()\n", true, &_init_f_sizeConstraint_c0, &_call_f_sizeConstraint_c0);
|
|
methods += new qt_gsi::GenericMethod (":spacing", "@brief Method int QLayout::spacing()\n", true, &_init_f_spacing_c0, &_call_f_spacing_c0);
|
|
methods += new qt_gsi::GenericMethod ("takeAt", "@brief Method QLayoutItem *QLayout::takeAt(int index)\n", false, &_init_f_takeAt_767, &_call_f_takeAt_767);
|
|
methods += new qt_gsi::GenericMethod ("totalHeightForWidth", "@brief Method int QLayout::totalHeightForWidth(int w)\n", true, &_init_f_totalHeightForWidth_c767, &_call_f_totalHeightForWidth_c767);
|
|
methods += new qt_gsi::GenericMethod ("totalMaximumSize", "@brief Method QSize QLayout::totalMaximumSize()\n", true, &_init_f_totalMaximumSize_c0, &_call_f_totalMaximumSize_c0);
|
|
methods += new qt_gsi::GenericMethod ("totalMinimumSize", "@brief Method QSize QLayout::totalMinimumSize()\n", true, &_init_f_totalMinimumSize_c0, &_call_f_totalMinimumSize_c0);
|
|
methods += new qt_gsi::GenericMethod ("totalSizeHint", "@brief Method QSize QLayout::totalSizeHint()\n", true, &_init_f_totalSizeHint_c0, &_call_f_totalSizeHint_c0);
|
|
methods += new qt_gsi::GenericMethod ("update", "@brief Method void QLayout::update()\n", false, &_init_f_update_0, &_call_f_update_0);
|
|
methods += gsi::qt_signal<QObject * > ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QLayout::destroyed(QObject *)\nYou can bind a procedure to this signal.");
|
|
methods += new qt_gsi::GenericStaticMethod ("closestAcceptableSize", "@brief Static method QSize QLayout::closestAcceptableSize(const QWidget *w, const QSize &s)\nThis method is static and can be called without an instance.", &_init_f_closestAcceptableSize_3707, &_call_f_closestAcceptableSize_3707);
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QLayout::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 QLayout::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);
|
|
methods += new qt_gsi::GenericMethod ("asQObject", "@brief Delivers the base class interface QObject of QLayout\nClass QLayout is derived from multiple base classes. This method delivers the QObject base class aspect.", false, &_init_f_QLayout_as_QObject, &_call_f_QLayout_as_QObject);
|
|
methods += new qt_gsi::GenericMethod ("asConstQObject", "@brief Delivers the base class interface QObject of QLayout\nClass QLayout is derived from multiple base classes. This method delivers the QObject base class aspect.\n\nUse this version if you have a const reference.", true, &_init_f_QLayout_as_const_QObject, &_call_f_QLayout_as_const_QObject);
|
|
methods += new qt_gsi::GenericMethod ("asQLayoutItem", "@brief Delivers the base class interface QLayoutItem of QLayout\nClass QLayout is derived from multiple base classes. This method delivers the QLayoutItem base class aspect.", false, &_init_f_QLayout_as_QLayoutItem, &_call_f_QLayout_as_QLayoutItem);
|
|
methods += new qt_gsi::GenericMethod ("asConstQLayoutItem", "@brief Delivers the base class interface QLayoutItem of QLayout\nClass QLayout is derived from multiple base classes. This method delivers the QLayoutItem base class aspect.\n\nUse this version if you have a const reference.", true, &_init_f_QLayout_as_const_QLayoutItem, &_call_f_QLayout_as_const_QLayoutItem);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QObject> &qtdecl_QObject ();
|
|
|
|
qt_gsi::QtNativeClass<QLayout> decl_QLayout (qtdecl_QObject (), "QLayout_Native",
|
|
methods_QLayout (),
|
|
"@hide\n@alias QLayout");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QLayout> &qtdecl_QLayout () { return decl_QLayout; }
|
|
|
|
}
|
|
|
|
|
|
class QLayout_Adaptor : public QLayout, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QLayout_Adaptor();
|
|
|
|
// [adaptor ctor] QLayout::QLayout(QWidget *parent)
|
|
QLayout_Adaptor(QWidget *parent) : QLayout(parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QLayout::QLayout()
|
|
QLayout_Adaptor() : QLayout()
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [expose] void QLayout::addChildLayout(QLayout *l)
|
|
void fp_QLayout_addChildLayout_1341 (QLayout *l) {
|
|
QLayout::addChildLayout(l);
|
|
}
|
|
|
|
// [expose] void QLayout::addChildWidget(QWidget *w)
|
|
void fp_QLayout_addChildWidget_1315 (QWidget *w) {
|
|
QLayout::addChildWidget(w);
|
|
}
|
|
|
|
// [expose] bool QLayout::adoptLayout(QLayout *layout)
|
|
bool fp_QLayout_adoptLayout_1341 (QLayout *layout) {
|
|
return QLayout::adoptLayout(layout);
|
|
}
|
|
|
|
// [expose] QRect QLayout::alignmentRect(const QRect &)
|
|
QRect fp_QLayout_alignmentRect_c1792 (const QRect &arg1) const {
|
|
return QLayout::alignmentRect(arg1);
|
|
}
|
|
|
|
// [expose] bool QLayout::isSignalConnected(const QMetaMethod &signal)
|
|
bool fp_QLayout_isSignalConnected_c2394 (const QMetaMethod &signal) const {
|
|
return QLayout::isSignalConnected(signal);
|
|
}
|
|
|
|
// [expose] int QLayout::receivers(const char *signal)
|
|
int fp_QLayout_receivers_c1731 (const char *signal) const {
|
|
return QLayout::receivers(signal);
|
|
}
|
|
|
|
// [expose] QObject *QLayout::sender()
|
|
QObject * fp_QLayout_sender_c0 () const {
|
|
return QLayout::sender();
|
|
}
|
|
|
|
// [expose] int QLayout::senderSignalIndex()
|
|
int fp_QLayout_senderSignalIndex_c0 () const {
|
|
return QLayout::senderSignalIndex();
|
|
}
|
|
|
|
// [expose] void QLayout::widgetEvent(QEvent *)
|
|
void fp_QLayout_widgetEvent_1217 (QEvent *arg1) {
|
|
QLayout::widgetEvent(arg1);
|
|
}
|
|
|
|
// [adaptor impl] void QLayout::addItem(QLayoutItem *)
|
|
void cbs_addItem_1740_0(QLayoutItem *arg1)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING (arg1);
|
|
throw qt_gsi::AbstractMethodCalledException("addItem");
|
|
}
|
|
|
|
virtual void addItem(QLayoutItem *arg1)
|
|
{
|
|
if (cb_addItem_1740_0.can_issue()) {
|
|
cb_addItem_1740_0.issue<QLayout_Adaptor, QLayoutItem *>(&QLayout_Adaptor::cbs_addItem_1740_0, arg1);
|
|
} else {
|
|
throw qt_gsi::AbstractMethodCalledException("addItem");
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QFlags<QSizePolicy::ControlType> QLayout::controlTypes()
|
|
QFlags<QSizePolicy::ControlType> cbs_controlTypes_c0_0() const
|
|
{
|
|
return QLayout::controlTypes();
|
|
}
|
|
|
|
virtual QFlags<QSizePolicy::ControlType> controlTypes() const
|
|
{
|
|
if (cb_controlTypes_c0_0.can_issue()) {
|
|
return cb_controlTypes_c0_0.issue<QLayout_Adaptor, QFlags<QSizePolicy::ControlType> >(&QLayout_Adaptor::cbs_controlTypes_c0_0);
|
|
} else {
|
|
return QLayout::controlTypes();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QLayout::count()
|
|
int cbs_count_c0_0() const
|
|
{
|
|
throw qt_gsi::AbstractMethodCalledException("count");
|
|
}
|
|
|
|
virtual int count() const
|
|
{
|
|
if (cb_count_c0_0.can_issue()) {
|
|
return cb_count_c0_0.issue<QLayout_Adaptor, int>(&QLayout_Adaptor::cbs_count_c0_0);
|
|
} else {
|
|
throw qt_gsi::AbstractMethodCalledException("count");
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QLayout::destroyed(QObject *)
|
|
void emitter_QLayout_destroyed_1302(QObject *arg1)
|
|
{
|
|
emit QLayout::destroyed(arg1);
|
|
}
|
|
|
|
// [adaptor impl] bool QLayout::event(QEvent *)
|
|
bool cbs_event_1217_0(QEvent *arg1)
|
|
{
|
|
return QLayout::event(arg1);
|
|
}
|
|
|
|
virtual bool event(QEvent *arg1)
|
|
{
|
|
if (cb_event_1217_0.can_issue()) {
|
|
return cb_event_1217_0.issue<QLayout_Adaptor, bool, QEvent *>(&QLayout_Adaptor::cbs_event_1217_0, arg1);
|
|
} else {
|
|
return QLayout::event(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QLayout::eventFilter(QObject *, QEvent *)
|
|
bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
|
|
{
|
|
return QLayout::eventFilter(arg1, arg2);
|
|
}
|
|
|
|
virtual bool eventFilter(QObject *arg1, QEvent *arg2)
|
|
{
|
|
if (cb_eventFilter_2411_0.can_issue()) {
|
|
return cb_eventFilter_2411_0.issue<QLayout_Adaptor, bool, QObject *, QEvent *>(&QLayout_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
|
|
} else {
|
|
return QLayout::eventFilter(arg1, arg2);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QFlags<Qt::Orientation> QLayout::expandingDirections()
|
|
QFlags<Qt::Orientation> cbs_expandingDirections_c0_0() const
|
|
{
|
|
return QLayout::expandingDirections();
|
|
}
|
|
|
|
virtual QFlags<Qt::Orientation> expandingDirections() const
|
|
{
|
|
if (cb_expandingDirections_c0_0.can_issue()) {
|
|
return cb_expandingDirections_c0_0.issue<QLayout_Adaptor, QFlags<Qt::Orientation> >(&QLayout_Adaptor::cbs_expandingDirections_c0_0);
|
|
} else {
|
|
return QLayout::expandingDirections();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRect QLayout::geometry()
|
|
QRect cbs_geometry_c0_0() const
|
|
{
|
|
return QLayout::geometry();
|
|
}
|
|
|
|
virtual QRect geometry() const
|
|
{
|
|
if (cb_geometry_c0_0.can_issue()) {
|
|
return cb_geometry_c0_0.issue<QLayout_Adaptor, QRect>(&QLayout_Adaptor::cbs_geometry_c0_0);
|
|
} else {
|
|
return QLayout::geometry();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QLayout::hasHeightForWidth()
|
|
bool cbs_hasHeightForWidth_c0_0() const
|
|
{
|
|
return QLayout::hasHeightForWidth();
|
|
}
|
|
|
|
virtual bool hasHeightForWidth() const
|
|
{
|
|
if (cb_hasHeightForWidth_c0_0.can_issue()) {
|
|
return cb_hasHeightForWidth_c0_0.issue<QLayout_Adaptor, bool>(&QLayout_Adaptor::cbs_hasHeightForWidth_c0_0);
|
|
} else {
|
|
return QLayout::hasHeightForWidth();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QLayout::heightForWidth(int)
|
|
int cbs_heightForWidth_c767_0(int arg1) const
|
|
{
|
|
return QLayout::heightForWidth(arg1);
|
|
}
|
|
|
|
virtual int heightForWidth(int arg1) const
|
|
{
|
|
if (cb_heightForWidth_c767_0.can_issue()) {
|
|
return cb_heightForWidth_c767_0.issue<QLayout_Adaptor, int, int>(&QLayout_Adaptor::cbs_heightForWidth_c767_0, arg1);
|
|
} else {
|
|
return QLayout::heightForWidth(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QLayout::indexOf(QWidget *)
|
|
int cbs_indexOf_c1315_0(QWidget *arg1) const
|
|
{
|
|
return QLayout::indexOf(arg1);
|
|
}
|
|
|
|
virtual int indexOf(QWidget *arg1) const
|
|
{
|
|
if (cb_indexOf_c1315_0.can_issue()) {
|
|
return cb_indexOf_c1315_0.issue<QLayout_Adaptor, int, QWidget *>(&QLayout_Adaptor::cbs_indexOf_c1315_0, arg1);
|
|
} else {
|
|
return QLayout::indexOf(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QLayout::invalidate()
|
|
void cbs_invalidate_0_0()
|
|
{
|
|
QLayout::invalidate();
|
|
}
|
|
|
|
virtual void invalidate()
|
|
{
|
|
if (cb_invalidate_0_0.can_issue()) {
|
|
cb_invalidate_0_0.issue<QLayout_Adaptor>(&QLayout_Adaptor::cbs_invalidate_0_0);
|
|
} else {
|
|
QLayout::invalidate();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QLayout::isEmpty()
|
|
bool cbs_isEmpty_c0_0() const
|
|
{
|
|
return QLayout::isEmpty();
|
|
}
|
|
|
|
virtual bool isEmpty() const
|
|
{
|
|
if (cb_isEmpty_c0_0.can_issue()) {
|
|
return cb_isEmpty_c0_0.issue<QLayout_Adaptor, bool>(&QLayout_Adaptor::cbs_isEmpty_c0_0);
|
|
} else {
|
|
return QLayout::isEmpty();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QLayoutItem *QLayout::itemAt(int index)
|
|
QLayoutItem * cbs_itemAt_c767_0(int index) const
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING (index);
|
|
throw qt_gsi::AbstractMethodCalledException("itemAt");
|
|
}
|
|
|
|
virtual QLayoutItem * itemAt(int index) const
|
|
{
|
|
if (cb_itemAt_c767_0.can_issue()) {
|
|
return cb_itemAt_c767_0.issue<QLayout_Adaptor, QLayoutItem *, int>(&QLayout_Adaptor::cbs_itemAt_c767_0, index);
|
|
} else {
|
|
throw qt_gsi::AbstractMethodCalledException("itemAt");
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QLayout *QLayout::layout()
|
|
QLayout * cbs_layout_0_0()
|
|
{
|
|
return QLayout::layout();
|
|
}
|
|
|
|
virtual QLayout * layout()
|
|
{
|
|
if (cb_layout_0_0.can_issue()) {
|
|
return cb_layout_0_0.issue<QLayout_Adaptor, QLayout *>(&QLayout_Adaptor::cbs_layout_0_0);
|
|
} else {
|
|
return QLayout::layout();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QLayout::maximumSize()
|
|
QSize cbs_maximumSize_c0_0() const
|
|
{
|
|
return QLayout::maximumSize();
|
|
}
|
|
|
|
virtual QSize maximumSize() const
|
|
{
|
|
if (cb_maximumSize_c0_0.can_issue()) {
|
|
return cb_maximumSize_c0_0.issue<QLayout_Adaptor, QSize>(&QLayout_Adaptor::cbs_maximumSize_c0_0);
|
|
} else {
|
|
return QLayout::maximumSize();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QLayout::minimumHeightForWidth(int)
|
|
int cbs_minimumHeightForWidth_c767_0(int arg1) const
|
|
{
|
|
return QLayout::minimumHeightForWidth(arg1);
|
|
}
|
|
|
|
virtual int minimumHeightForWidth(int arg1) const
|
|
{
|
|
if (cb_minimumHeightForWidth_c767_0.can_issue()) {
|
|
return cb_minimumHeightForWidth_c767_0.issue<QLayout_Adaptor, int, int>(&QLayout_Adaptor::cbs_minimumHeightForWidth_c767_0, arg1);
|
|
} else {
|
|
return QLayout::minimumHeightForWidth(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QLayout::minimumSize()
|
|
QSize cbs_minimumSize_c0_0() const
|
|
{
|
|
return QLayout::minimumSize();
|
|
}
|
|
|
|
virtual QSize minimumSize() const
|
|
{
|
|
if (cb_minimumSize_c0_0.can_issue()) {
|
|
return cb_minimumSize_c0_0.issue<QLayout_Adaptor, QSize>(&QLayout_Adaptor::cbs_minimumSize_c0_0);
|
|
} else {
|
|
return QLayout::minimumSize();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QLayout::setGeometry(const QRect &)
|
|
void cbs_setGeometry_1792_0(const QRect &arg1)
|
|
{
|
|
QLayout::setGeometry(arg1);
|
|
}
|
|
|
|
virtual void setGeometry(const QRect &arg1)
|
|
{
|
|
if (cb_setGeometry_1792_0.can_issue()) {
|
|
cb_setGeometry_1792_0.issue<QLayout_Adaptor, const QRect &>(&QLayout_Adaptor::cbs_setGeometry_1792_0, arg1);
|
|
} else {
|
|
QLayout::setGeometry(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QLayout::sizeHint()
|
|
QSize cbs_sizeHint_c0_0() const
|
|
{
|
|
throw qt_gsi::AbstractMethodCalledException("sizeHint");
|
|
}
|
|
|
|
virtual QSize sizeHint() const
|
|
{
|
|
if (cb_sizeHint_c0_0.can_issue()) {
|
|
return cb_sizeHint_c0_0.issue<QLayout_Adaptor, QSize>(&QLayout_Adaptor::cbs_sizeHint_c0_0);
|
|
} else {
|
|
throw qt_gsi::AbstractMethodCalledException("sizeHint");
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSpacerItem *QLayout::spacerItem()
|
|
QSpacerItem * cbs_spacerItem_0_0()
|
|
{
|
|
return QLayout::spacerItem();
|
|
}
|
|
|
|
virtual QSpacerItem * spacerItem()
|
|
{
|
|
if (cb_spacerItem_0_0.can_issue()) {
|
|
return cb_spacerItem_0_0.issue<QLayout_Adaptor, QSpacerItem *>(&QLayout_Adaptor::cbs_spacerItem_0_0);
|
|
} else {
|
|
return QLayout::spacerItem();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QLayoutItem *QLayout::takeAt(int index)
|
|
QLayoutItem * cbs_takeAt_767_0(int index)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING (index);
|
|
throw qt_gsi::AbstractMethodCalledException("takeAt");
|
|
}
|
|
|
|
virtual QLayoutItem * takeAt(int index)
|
|
{
|
|
if (cb_takeAt_767_0.can_issue()) {
|
|
return cb_takeAt_767_0.issue<QLayout_Adaptor, QLayoutItem *, int>(&QLayout_Adaptor::cbs_takeAt_767_0, index);
|
|
} else {
|
|
throw qt_gsi::AbstractMethodCalledException("takeAt");
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QWidget *QLayout::widget()
|
|
QWidget * cbs_widget_0_0()
|
|
{
|
|
return QLayout::widget();
|
|
}
|
|
|
|
virtual QWidget * widget()
|
|
{
|
|
if (cb_widget_0_0.can_issue()) {
|
|
return cb_widget_0_0.issue<QLayout_Adaptor, QWidget *>(&QLayout_Adaptor::cbs_widget_0_0);
|
|
} else {
|
|
return QLayout::widget();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QLayout::childEvent(QChildEvent *e)
|
|
void cbs_childEvent_1701_0(QChildEvent *e)
|
|
{
|
|
QLayout::childEvent(e);
|
|
}
|
|
|
|
virtual void childEvent(QChildEvent *e)
|
|
{
|
|
if (cb_childEvent_1701_0.can_issue()) {
|
|
cb_childEvent_1701_0.issue<QLayout_Adaptor, QChildEvent *>(&QLayout_Adaptor::cbs_childEvent_1701_0, e);
|
|
} else {
|
|
QLayout::childEvent(e);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QLayout::customEvent(QEvent *)
|
|
void cbs_customEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QLayout::customEvent(arg1);
|
|
}
|
|
|
|
virtual void customEvent(QEvent *arg1)
|
|
{
|
|
if (cb_customEvent_1217_0.can_issue()) {
|
|
cb_customEvent_1217_0.issue<QLayout_Adaptor, QEvent *>(&QLayout_Adaptor::cbs_customEvent_1217_0, arg1);
|
|
} else {
|
|
QLayout::customEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QLayout::disconnectNotify(const QMetaMethod &signal)
|
|
void cbs_disconnectNotify_2394_0(const QMetaMethod &signal)
|
|
{
|
|
QLayout::disconnectNotify(signal);
|
|
}
|
|
|
|
virtual void disconnectNotify(const QMetaMethod &signal)
|
|
{
|
|
if (cb_disconnectNotify_2394_0.can_issue()) {
|
|
cb_disconnectNotify_2394_0.issue<QLayout_Adaptor, const QMetaMethod &>(&QLayout_Adaptor::cbs_disconnectNotify_2394_0, signal);
|
|
} else {
|
|
QLayout::disconnectNotify(signal);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QLayout::timerEvent(QTimerEvent *)
|
|
void cbs_timerEvent_1730_0(QTimerEvent *arg1)
|
|
{
|
|
QLayout::timerEvent(arg1);
|
|
}
|
|
|
|
virtual void timerEvent(QTimerEvent *arg1)
|
|
{
|
|
if (cb_timerEvent_1730_0.can_issue()) {
|
|
cb_timerEvent_1730_0.issue<QLayout_Adaptor, QTimerEvent *>(&QLayout_Adaptor::cbs_timerEvent_1730_0, arg1);
|
|
} else {
|
|
QLayout::timerEvent(arg1);
|
|
}
|
|
}
|
|
|
|
gsi::Callback cb_addItem_1740_0;
|
|
gsi::Callback cb_controlTypes_c0_0;
|
|
gsi::Callback cb_count_c0_0;
|
|
gsi::Callback cb_event_1217_0;
|
|
gsi::Callback cb_eventFilter_2411_0;
|
|
gsi::Callback cb_expandingDirections_c0_0;
|
|
gsi::Callback cb_geometry_c0_0;
|
|
gsi::Callback cb_hasHeightForWidth_c0_0;
|
|
gsi::Callback cb_heightForWidth_c767_0;
|
|
gsi::Callback cb_indexOf_c1315_0;
|
|
gsi::Callback cb_invalidate_0_0;
|
|
gsi::Callback cb_isEmpty_c0_0;
|
|
gsi::Callback cb_itemAt_c767_0;
|
|
gsi::Callback cb_layout_0_0;
|
|
gsi::Callback cb_maximumSize_c0_0;
|
|
gsi::Callback cb_minimumHeightForWidth_c767_0;
|
|
gsi::Callback cb_minimumSize_c0_0;
|
|
gsi::Callback cb_setGeometry_1792_0;
|
|
gsi::Callback cb_sizeHint_c0_0;
|
|
gsi::Callback cb_spacerItem_0_0;
|
|
gsi::Callback cb_takeAt_767_0;
|
|
gsi::Callback cb_widget_0_0;
|
|
gsi::Callback cb_childEvent_1701_0;
|
|
gsi::Callback cb_customEvent_1217_0;
|
|
gsi::Callback cb_disconnectNotify_2394_0;
|
|
gsi::Callback cb_timerEvent_1730_0;
|
|
};
|
|
|
|
QLayout_Adaptor::~QLayout_Adaptor() { }
|
|
|
|
// Constructor QLayout::QLayout(QWidget *parent) (adaptor class)
|
|
|
|
static void _init_ctor_QLayout_Adaptor_1315 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return_new<QLayout_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QLayout_Adaptor_1315 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWidget *arg1 = args.read<QWidget * > (heap);
|
|
ret.write<QLayout_Adaptor *> (new QLayout_Adaptor (arg1));
|
|
}
|
|
|
|
|
|
// Constructor QLayout::QLayout() (adaptor class)
|
|
|
|
static void _init_ctor_QLayout_Adaptor_0 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
decl->set_return_new<QLayout_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QLayout_Adaptor_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QLayout_Adaptor *> (new QLayout_Adaptor ());
|
|
}
|
|
|
|
|
|
// exposed void QLayout::addChildLayout(QLayout *l)
|
|
|
|
static void _init_fp_addChildLayout_1341 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("l");
|
|
decl->add_arg<QLayout * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QLayout *arg1 = args.read<QLayout * > (heap);
|
|
qt_gsi::qt_keep (arg1);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout_Adaptor *)cls)->fp_QLayout_addChildLayout_1341 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QLayout::addChildWidget(QWidget *w)
|
|
|
|
static void _init_fp_addChildWidget_1315 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_addChildWidget_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);
|
|
((QLayout_Adaptor *)cls)->fp_QLayout_addChildWidget_1315 (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::addItem(QLayoutItem *)
|
|
|
|
static void _init_cbs_addItem_1740_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QLayoutItem * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QLayoutItem *arg1 = args.read<QLayoutItem * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_addItem_1740_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_addItem_1740_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QLayout::adoptLayout(QLayout *layout)
|
|
|
|
static void _init_fp_adoptLayout_1341 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("layout");
|
|
decl->add_arg<QLayout * > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QLayout *arg1 = args.read<QLayout * > (heap);
|
|
ret.write<bool > ((bool)((QLayout_Adaptor *)cls)->fp_QLayout_adoptLayout_1341 (arg1));
|
|
}
|
|
|
|
|
|
// exposed QRect QLayout::alignmentRect(const QRect &)
|
|
|
|
static void _init_fp_alignmentRect_c1792 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QRect & > (argspec_0);
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
static void _call_fp_alignmentRect_c1792 (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);
|
|
ret.write<QRect > ((QRect)((QLayout_Adaptor *)cls)->fp_QLayout_alignmentRect_c1792 (arg1));
|
|
}
|
|
|
|
|
|
// void QLayout::childEvent(QChildEvent *e)
|
|
|
|
static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("e");
|
|
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);
|
|
((QLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_childEvent_1701_0 = cb;
|
|
}
|
|
|
|
|
|
// QFlags<QSizePolicy::ControlType> QLayout::controlTypes()
|
|
|
|
static void _init_cbs_controlTypes_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QFlags<QSizePolicy::ControlType> > ();
|
|
}
|
|
|
|
static void _call_cbs_controlTypes_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QFlags<QSizePolicy::ControlType> > ((QFlags<QSizePolicy::ControlType>)((QLayout_Adaptor *)cls)->cbs_controlTypes_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_controlTypes_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_controlTypes_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// int QLayout::count()
|
|
|
|
static void _init_cbs_count_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_count_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QLayout_Adaptor *)cls)->cbs_count_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_count_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_count_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QLayout::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);
|
|
((QLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_customEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QLayout::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);
|
|
((QLayout_Adaptor *)cls)->emitter_QLayout_destroyed_1302 (arg1);
|
|
}
|
|
|
|
|
|
// void QLayout::disconnectNotify(const QMetaMethod &signal)
|
|
|
|
static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("signal");
|
|
decl->add_arg<const QMetaMethod & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QMetaMethod &arg1 = args.read<const QMetaMethod & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QLayout::event(QEvent *)
|
|
|
|
static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
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)((QLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_event_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QLayout::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)((QLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_eventFilter_2411_0 = cb;
|
|
}
|
|
|
|
|
|
// QFlags<Qt::Orientation> QLayout::expandingDirections()
|
|
|
|
static void _init_cbs_expandingDirections_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QFlags<Qt::Orientation> > ();
|
|
}
|
|
|
|
static void _call_cbs_expandingDirections_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QFlags<Qt::Orientation> > ((QFlags<Qt::Orientation>)((QLayout_Adaptor *)cls)->cbs_expandingDirections_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_expandingDirections_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_expandingDirections_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// QRect QLayout::geometry()
|
|
|
|
static void _init_cbs_geometry_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
static void _call_cbs_geometry_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QRect > ((QRect)((QLayout_Adaptor *)cls)->cbs_geometry_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_geometry_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_geometry_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QLayout::hasHeightForWidth()
|
|
|
|
static void _init_cbs_hasHeightForWidth_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_hasHeightForWidth_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QLayout_Adaptor *)cls)->cbs_hasHeightForWidth_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_hasHeightForWidth_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_hasHeightForWidth_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// int QLayout::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)((QLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_heightForWidth_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_heightForWidth_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// int QLayout::indexOf(QWidget *)
|
|
|
|
static void _init_cbs_indexOf_c1315_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_indexOf_c1315_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);
|
|
ret.write<int > ((int)((QLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_indexOf_c1315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_indexOf_c1315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QLayout::invalidate()
|
|
|
|
static void _init_cbs_invalidate_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_invalidate_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout_Adaptor *)cls)->cbs_invalidate_0_0 ();
|
|
}
|
|
|
|
static void _set_callback_cbs_invalidate_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_invalidate_0_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QLayout::isEmpty()
|
|
|
|
static void _init_cbs_isEmpty_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_isEmpty_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QLayout_Adaptor *)cls)->cbs_isEmpty_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_isEmpty_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_isEmpty_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QLayout::isSignalConnected(const QMetaMethod &signal)
|
|
|
|
static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("signal");
|
|
decl->add_arg<const QMetaMethod & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QMetaMethod &arg1 = args.read<const QMetaMethod & > (heap);
|
|
ret.write<bool > ((bool)((QLayout_Adaptor *)cls)->fp_QLayout_isSignalConnected_c2394 (arg1));
|
|
}
|
|
|
|
|
|
// QLayoutItem *QLayout::itemAt(int index)
|
|
|
|
static void _init_cbs_itemAt_c767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<QLayoutItem * > ();
|
|
}
|
|
|
|
static void _call_cbs_itemAt_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<QLayoutItem * > ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_itemAt_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_itemAt_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// QLayout *QLayout::layout()
|
|
|
|
static void _init_cbs_layout_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QLayout * > ();
|
|
}
|
|
|
|
static void _call_cbs_layout_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QLayout * > ((QLayout *)((QLayout_Adaptor *)cls)->cbs_layout_0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_layout_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_layout_0_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QLayout::maximumSize()
|
|
|
|
static void _init_cbs_maximumSize_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_cbs_maximumSize_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QLayout_Adaptor *)cls)->cbs_maximumSize_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_maximumSize_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_maximumSize_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// int QLayout::minimumHeightForWidth(int)
|
|
|
|
static void _init_cbs_minimumHeightForWidth_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_minimumHeightForWidth_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)((QLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_minimumHeightForWidth_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_minimumHeightForWidth_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QLayout::minimumSize()
|
|
|
|
static void _init_cbs_minimumSize_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_cbs_minimumSize_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QLayout_Adaptor *)cls)->cbs_minimumSize_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_minimumSize_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_minimumSize_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed int QLayout::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)((QLayout_Adaptor *)cls)->fp_QLayout_receivers_c1731 (arg1));
|
|
}
|
|
|
|
|
|
// exposed QObject *QLayout::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 *)((QLayout_Adaptor *)cls)->fp_QLayout_sender_c0 ());
|
|
}
|
|
|
|
|
|
// exposed int QLayout::senderSignalIndex()
|
|
|
|
static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QLayout_Adaptor *)cls)->fp_QLayout_senderSignalIndex_c0 ());
|
|
}
|
|
|
|
|
|
// void QLayout::setGeometry(const QRect &)
|
|
|
|
static void _init_cbs_setGeometry_1792_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QRect & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setGeometry_1792_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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setGeometry_1792_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_setGeometry_1792_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QLayout::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)((QLayout_Adaptor *)cls)->cbs_sizeHint_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHint_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_sizeHint_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// QSpacerItem *QLayout::spacerItem()
|
|
|
|
static void _init_cbs_spacerItem_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSpacerItem * > ();
|
|
}
|
|
|
|
static void _call_cbs_spacerItem_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSpacerItem * > ((QSpacerItem *)((QLayout_Adaptor *)cls)->cbs_spacerItem_0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_spacerItem_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_spacerItem_0_0 = cb;
|
|
}
|
|
|
|
|
|
// QLayoutItem *QLayout::takeAt(int index)
|
|
|
|
static void _init_cbs_takeAt_767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("index");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<QLayoutItem * > ();
|
|
}
|
|
|
|
static void _call_cbs_takeAt_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);
|
|
ret.write<QLayoutItem * > ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_takeAt_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_takeAt_767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QLayout::timerEvent(QTimerEvent *)
|
|
|
|
static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
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);
|
|
((QLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_timerEvent_1730_0 = cb;
|
|
}
|
|
|
|
|
|
// QWidget *QLayout::widget()
|
|
|
|
static void _init_cbs_widget_0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QWidget * > ();
|
|
}
|
|
|
|
static void _call_cbs_widget_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QWidget * > ((QWidget *)((QLayout_Adaptor *)cls)->cbs_widget_0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_widget_0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QLayout_Adaptor *)cls)->cb_widget_0_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QLayout::widgetEvent(QEvent *)
|
|
|
|
static void _init_fp_widgetEvent_1217 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_widgetEvent_1217 (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);
|
|
((QLayout_Adaptor *)cls)->fp_QLayout_widgetEvent_1217 (arg1);
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QLayout> &qtdecl_QLayout ();
|
|
|
|
static gsi::Methods methods_QLayout_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QLayout::QLayout(QWidget *parent)\nThis method creates an object of class QLayout.", &_init_ctor_QLayout_Adaptor_1315, &_call_ctor_QLayout_Adaptor_1315);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QLayout::QLayout()\nThis method creates an object of class QLayout.", &_init_ctor_QLayout_Adaptor_0, &_call_ctor_QLayout_Adaptor_0);
|
|
methods += new qt_gsi::GenericMethod ("*addChildLayout", "@brief Method void QLayout::addChildLayout(QLayout *l)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_addChildLayout_1341, &_call_fp_addChildLayout_1341);
|
|
methods += new qt_gsi::GenericMethod ("*addChildWidget", "@brief Method void QLayout::addChildWidget(QWidget *w)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_addChildWidget_1315, &_call_fp_addChildWidget_1315);
|
|
methods += new qt_gsi::GenericMethod ("addItem", "@hide", false, &_init_cbs_addItem_1740_0, &_call_cbs_addItem_1740_0);
|
|
methods += new qt_gsi::GenericMethod ("addItem", "@brief Virtual method void QLayout::addItem(QLayoutItem *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_addItem_1740_0, &_call_cbs_addItem_1740_0, &_set_callback_cbs_addItem_1740_0);
|
|
methods += new qt_gsi::GenericMethod ("*adoptLayout", "@brief Method bool QLayout::adoptLayout(QLayout *layout)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_adoptLayout_1341, &_call_fp_adoptLayout_1341);
|
|
methods += new qt_gsi::GenericMethod ("*alignmentRect", "@brief Method QRect QLayout::alignmentRect(const QRect &)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_alignmentRect_c1792, &_call_fp_alignmentRect_c1792);
|
|
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 QLayout::childEvent(QChildEvent *e)\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 ("controlTypes", "@hide", true, &_init_cbs_controlTypes_c0_0, &_call_cbs_controlTypes_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("controlTypes", "@brief Virtual method QFlags<QSizePolicy::ControlType> QLayout::controlTypes()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_controlTypes_c0_0, &_call_cbs_controlTypes_c0_0, &_set_callback_cbs_controlTypes_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("count", "@hide", true, &_init_cbs_count_c0_0, &_call_cbs_count_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("count", "@brief Virtual method int QLayout::count()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_count_c0_0, &_call_cbs_count_c0_0, &_set_callback_cbs_count_c0_0);
|
|
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 QLayout::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 ("emit_destroyed", "@brief Emitter for signal void QLayout::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302);
|
|
methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0);
|
|
methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QLayout::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0);
|
|
methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QLayout::event(QEvent *)\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 QLayout::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 ("expandingDirections", "@hide", true, &_init_cbs_expandingDirections_c0_0, &_call_cbs_expandingDirections_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("expandingDirections", "@brief Virtual method QFlags<Qt::Orientation> QLayout::expandingDirections()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_expandingDirections_c0_0, &_call_cbs_expandingDirections_c0_0, &_set_callback_cbs_expandingDirections_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("geometry", "@hide", true, &_init_cbs_geometry_c0_0, &_call_cbs_geometry_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("geometry", "@brief Virtual method QRect QLayout::geometry()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_geometry_c0_0, &_call_cbs_geometry_c0_0, &_set_callback_cbs_geometry_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@hide", true, &_init_cbs_hasHeightForWidth_c0_0, &_call_cbs_hasHeightForWidth_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Virtual method bool QLayout::hasHeightForWidth()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_hasHeightForWidth_c0_0, &_call_cbs_hasHeightForWidth_c0_0, &_set_callback_cbs_hasHeightForWidth_c0_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 QLayout::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 ("indexOf", "@hide", true, &_init_cbs_indexOf_c1315_0, &_call_cbs_indexOf_c1315_0);
|
|
methods += new qt_gsi::GenericMethod ("indexOf", "@brief Virtual method int QLayout::indexOf(QWidget *)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_indexOf_c1315_0, &_call_cbs_indexOf_c1315_0, &_set_callback_cbs_indexOf_c1315_0);
|
|
methods += new qt_gsi::GenericMethod ("invalidate", "@hide", false, &_init_cbs_invalidate_0_0, &_call_cbs_invalidate_0_0);
|
|
methods += new qt_gsi::GenericMethod ("invalidate", "@brief Virtual method void QLayout::invalidate()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_invalidate_0_0, &_call_cbs_invalidate_0_0, &_set_callback_cbs_invalidate_0_0);
|
|
methods += new qt_gsi::GenericMethod ("isEmpty", "@hide", true, &_init_cbs_isEmpty_c0_0, &_call_cbs_isEmpty_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("isEmpty", "@brief Virtual method bool QLayout::isEmpty()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_isEmpty_c0_0, &_call_cbs_isEmpty_c0_0, &_set_callback_cbs_isEmpty_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QLayout::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394);
|
|
methods += new qt_gsi::GenericMethod ("itemAt", "@hide", true, &_init_cbs_itemAt_c767_0, &_call_cbs_itemAt_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("itemAt", "@brief Virtual method QLayoutItem *QLayout::itemAt(int index)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_itemAt_c767_0, &_call_cbs_itemAt_c767_0, &_set_callback_cbs_itemAt_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("layout", "@hide", false, &_init_cbs_layout_0_0, &_call_cbs_layout_0_0);
|
|
methods += new qt_gsi::GenericMethod ("layout", "@brief Virtual method QLayout *QLayout::layout()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_layout_0_0, &_call_cbs_layout_0_0, &_set_callback_cbs_layout_0_0);
|
|
methods += new qt_gsi::GenericMethod ("maximumSize", "@hide", true, &_init_cbs_maximumSize_c0_0, &_call_cbs_maximumSize_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("maximumSize", "@brief Virtual method QSize QLayout::maximumSize()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_maximumSize_c0_0, &_call_cbs_maximumSize_c0_0, &_set_callback_cbs_maximumSize_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@hide", true, &_init_cbs_minimumHeightForWidth_c767_0, &_call_cbs_minimumHeightForWidth_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumHeightForWidth", "@brief Virtual method int QLayout::minimumHeightForWidth(int)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_minimumHeightForWidth_c767_0, &_call_cbs_minimumHeightForWidth_c767_0, &_set_callback_cbs_minimumHeightForWidth_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumSize", "@hide", true, &_init_cbs_minimumSize_c0_0, &_call_cbs_minimumSize_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumSize", "@brief Virtual method QSize QLayout::minimumSize()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_minimumSize_c0_0, &_call_cbs_minimumSize_c0_0, &_set_callback_cbs_minimumSize_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QLayout::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 ("*sender", "@brief Method QObject *QLayout::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 ("*senderSignalIndex", "@brief Method int QLayout::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0);
|
|
methods += new qt_gsi::GenericMethod ("setGeometry", "@hide", false, &_init_cbs_setGeometry_1792_0, &_call_cbs_setGeometry_1792_0);
|
|
methods += new qt_gsi::GenericMethod ("setGeometry", "@brief Virtual method void QLayout::setGeometry(const QRect &)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setGeometry_1792_0, &_call_cbs_setGeometry_1792_0, &_set_callback_cbs_setGeometry_1792_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 QLayout::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 ("spacerItem", "@hide", false, &_init_cbs_spacerItem_0_0, &_call_cbs_spacerItem_0_0);
|
|
methods += new qt_gsi::GenericMethod ("spacerItem", "@brief Virtual method QSpacerItem *QLayout::spacerItem()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_spacerItem_0_0, &_call_cbs_spacerItem_0_0, &_set_callback_cbs_spacerItem_0_0);
|
|
methods += new qt_gsi::GenericMethod ("takeAt", "@hide", false, &_init_cbs_takeAt_767_0, &_call_cbs_takeAt_767_0);
|
|
methods += new qt_gsi::GenericMethod ("takeAt", "@brief Virtual method QLayoutItem *QLayout::takeAt(int index)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_takeAt_767_0, &_call_cbs_takeAt_767_0, &_set_callback_cbs_takeAt_767_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 QLayout::timerEvent(QTimerEvent *)\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 ("widget", "@hide", false, &_init_cbs_widget_0_0, &_call_cbs_widget_0_0);
|
|
methods += new qt_gsi::GenericMethod ("widget", "@brief Virtual method QWidget *QLayout::widget()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_widget_0_0, &_call_cbs_widget_0_0, &_set_callback_cbs_widget_0_0);
|
|
methods += new qt_gsi::GenericMethod ("*widgetEvent", "@brief Method void QLayout::widgetEvent(QEvent *)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_widgetEvent_1217, &_call_fp_widgetEvent_1217);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QLayout_Adaptor> decl_QLayout_Adaptor (qtdecl_QLayout (), "QLayout",
|
|
methods_QLayout_Adaptor (),
|
|
"@qt\n@brief Binding of QLayout");
|
|
|
|
}
|
|
|
|
|
|
// Implementation of the enum wrapper class for QLayout::SizeConstraint
|
|
namespace qt_gsi
|
|
{
|
|
|
|
static gsi::Enum<QLayout::SizeConstraint> decl_QLayout_SizeConstraint_Enum ("QLayout_SizeConstraint",
|
|
gsi::enum_const ("SetDefaultConstraint", QLayout::SetDefaultConstraint, "@brief Enum constant QLayout::SetDefaultConstraint") +
|
|
gsi::enum_const ("SetNoConstraint", QLayout::SetNoConstraint, "@brief Enum constant QLayout::SetNoConstraint") +
|
|
gsi::enum_const ("SetMinimumSize", QLayout::SetMinimumSize, "@brief Enum constant QLayout::SetMinimumSize") +
|
|
gsi::enum_const ("SetFixedSize", QLayout::SetFixedSize, "@brief Enum constant QLayout::SetFixedSize") +
|
|
gsi::enum_const ("SetMaximumSize", QLayout::SetMaximumSize, "@brief Enum constant QLayout::SetMaximumSize") +
|
|
gsi::enum_const ("SetMinAndMaxSize", QLayout::SetMinAndMaxSize, "@brief Enum constant QLayout::SetMinAndMaxSize"),
|
|
"@qt\n@brief This class represents the QLayout::SizeConstraint enum");
|
|
|
|
static gsi::QFlagsClass<QLayout::SizeConstraint > decl_QLayout_SizeConstraint_Enums ("QLayout_QFlags_SizeConstraint",
|
|
"@qt\n@brief This class represents the QFlags<QLayout::SizeConstraint> flag set");
|
|
|
|
// Inject the declarations into the parent
|
|
static gsi::ClassExt<QLayout> inject_QLayout_SizeConstraint_Enum_in_parent (decl_QLayout_SizeConstraint_Enum.defs ());
|
|
static gsi::ClassExt<QLayout> decl_QLayout_SizeConstraint_Enum_as_child (decl_QLayout_SizeConstraint_Enum, "SizeConstraint");
|
|
static gsi::ClassExt<QLayout> decl_QLayout_SizeConstraint_Enums_as_child (decl_QLayout_SizeConstraint_Enums, "QFlags_SizeConstraint");
|
|
|
|
}
|
|
|