mirror of https://github.com/KLayout/klayout.git
2415 lines
103 KiB
C++
2415 lines
103 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2017 Matthias Koefferlein
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
/**
|
|
* @file gsiDeclQGraphicsObject.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QGraphicsObject>
|
|
#include <QChildEvent>
|
|
#include <QCursor>
|
|
#include <QEvent>
|
|
#include <QFocusEvent>
|
|
#include <QGraphicsEffect>
|
|
#include <QGraphicsItem>
|
|
#include <QGraphicsItemGroup>
|
|
#include <QGraphicsScene>
|
|
#include <QGraphicsSceneContextMenuEvent>
|
|
#include <QGraphicsSceneDragDropEvent>
|
|
#include <QGraphicsSceneHoverEvent>
|
|
#include <QGraphicsSceneMouseEvent>
|
|
#include <QGraphicsSceneWheelEvent>
|
|
#include <QGraphicsWidget>
|
|
#include <QInputMethodEvent>
|
|
#include <QKeyEvent>
|
|
#include <QMatrix>
|
|
#include <QObject>
|
|
#include <QPainter>
|
|
#include <QPainterPath>
|
|
#include <QPointF>
|
|
#include <QPolygonF>
|
|
#include <QRectF>
|
|
#include <QRegion>
|
|
#include <QSize>
|
|
#include <QStyleOptionGraphicsItem>
|
|
#include <QThread>
|
|
#include <QTimerEvent>
|
|
#include <QTransform>
|
|
#include <QWidget>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QGraphicsObject
|
|
|
|
// 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 &> (QGraphicsObject::staticMetaObject);
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_children_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<const QList<QObject*> & > ();
|
|
}
|
|
|
|
static void _call_f_children_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<const QList<QObject*> & > ((const QList<QObject*> &)((QGraphicsObject *)cls)->children ());
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::grabGesture(Qt::GestureType type, QFlags<Qt::GestureFlag> flags)
|
|
|
|
|
|
static void _init_f_grabGesture_4352 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("type");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::GestureType>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("flags", true, "Qt::GestureFlags()");
|
|
decl->add_arg<QFlags<Qt::GestureFlag> > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_grabGesture_4352 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<Qt::GestureType>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::GestureType>::target_type & > (heap);
|
|
QFlags<Qt::GestureFlag> arg2 = args ? args.read<QFlags<Qt::GestureFlag> > (heap) : (QFlags<Qt::GestureFlag>)(Qt::GestureFlags());
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject *)cls)->grabGesture (qt_gsi::QtToCppAdaptor<Qt::GestureType>(arg1).cref(), arg2);
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::ungrabGesture(Qt::GestureType type)
|
|
|
|
|
|
static void _init_f_ungrabGesture_1902 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("type");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::GestureType>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_ungrabGesture_1902 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<Qt::GestureType>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::GestureType>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject *)cls)->ungrabGesture (qt_gsi::QtToCppAdaptor<Qt::GestureType>(arg1).cref());
|
|
}
|
|
|
|
|
|
// static QString QGraphicsObject::tr(const char *s, const char *c)
|
|
|
|
|
|
static void _init_f_tr_3354 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QString > ((QString)QGraphicsObject::tr (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QGraphicsObject::tr(const char *s, const char *c, int n)
|
|
|
|
|
|
static void _init_f_tr_4013 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args.read<const char * > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
ret.write<QString > ((QString)QGraphicsObject::tr (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QString QGraphicsObject::trUtf8(const char *s, const char *c)
|
|
|
|
|
|
static void _init_f_trUtf8_3354 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QString > ((QString)QGraphicsObject::trUtf8 (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QGraphicsObject::trUtf8(const char *s, const char *c, int n)
|
|
|
|
|
|
static void _init_f_trUtf8_4013 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args.read<const char * > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
ret.write<QString > ((QString)QGraphicsObject::trUtf8 (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// base class cast for QObject
|
|
|
|
static void _init_f_QGraphicsObject_as_QObject (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QObject *> ();
|
|
}
|
|
|
|
static void _call_f_QGraphicsObject_as_QObject (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<QObject *> ((QObject *)(QGraphicsObject *)cls);
|
|
}
|
|
|
|
static void _init_f_QGraphicsObject_as_const_QObject (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<const QObject *> ();
|
|
}
|
|
|
|
static void _call_f_QGraphicsObject_as_const_QObject (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<const QObject *> ((const QObject *)(const QGraphicsObject *)cls);
|
|
}
|
|
|
|
// base class cast for QGraphicsItem
|
|
|
|
static void _init_f_QGraphicsObject_as_QGraphicsItem (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QGraphicsItem *> ();
|
|
}
|
|
|
|
static void _call_f_QGraphicsObject_as_QGraphicsItem (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<QGraphicsItem *> ((QGraphicsItem *)(QGraphicsObject *)cls);
|
|
}
|
|
|
|
static void _init_f_QGraphicsObject_as_const_QGraphicsItem (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<const QGraphicsItem *> ();
|
|
}
|
|
|
|
static void _call_f_QGraphicsObject_as_const_QGraphicsItem (const qt_gsi::GenericMethod *, void *cls, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<const QGraphicsItem *> ((const QGraphicsItem *)(const QGraphicsObject *)cls);
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QGraphicsObject () {
|
|
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 (":children", "@brief Method () const\n", true, &_init_f_children_c0, &_call_f_children_c0);
|
|
methods += new qt_gsi::GenericMethod ("grabGesture", "@brief Method void QGraphicsObject::grabGesture(Qt::GestureType type, QFlags<Qt::GestureFlag> flags)\n", false, &_init_f_grabGesture_4352, &_call_f_grabGesture_4352);
|
|
methods += new qt_gsi::GenericMethod ("ungrabGesture", "@brief Method void QGraphicsObject::ungrabGesture(Qt::GestureType type)\n", false, &_init_f_ungrabGesture_1902, &_call_f_ungrabGesture_1902);
|
|
methods += gsi::qt_signal<QObject * > ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QGraphicsObject::destroyed(QObject *)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("enabledChanged()", "enabledChanged", "@brief Signal declaration for QGraphicsObject::enabledChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("opacityChanged()", "opacityChanged", "@brief Signal declaration for QGraphicsObject::opacityChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("parentChanged()", "parentChanged", "@brief Signal declaration for QGraphicsObject::parentChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("rotationChanged()", "rotationChanged", "@brief Signal declaration for QGraphicsObject::rotationChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("scaleChanged()", "scaleChanged", "@brief Signal declaration for QGraphicsObject::scaleChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("visibleChanged()", "visibleChanged", "@brief Signal declaration for QGraphicsObject::visibleChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("xChanged()", "xChanged", "@brief Signal declaration for QGraphicsObject::xChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("yChanged()", "yChanged", "@brief Signal declaration for QGraphicsObject::yChanged()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("zChanged()", "zChanged", "@brief Signal declaration for QGraphicsObject::zChanged()\nYou can bind a procedure to this signal.");
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QGraphicsObject::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354);
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QGraphicsObject::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 QGraphicsObject::trUtf8(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_3354, &_call_f_trUtf8_3354);
|
|
methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QGraphicsObject::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 QGraphicsObject\nClass QGraphicsObject is derived from multiple base classes. This method delivers the QObject base class aspect.", false, &_init_f_QGraphicsObject_as_QObject, &_call_f_QGraphicsObject_as_QObject);
|
|
methods += new qt_gsi::GenericMethod ("asConstQObject", "@brief Delivers the base class interface QObject of QGraphicsObject\nClass QGraphicsObject 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_QGraphicsObject_as_const_QObject, &_call_f_QGraphicsObject_as_const_QObject);
|
|
methods += new qt_gsi::GenericMethod ("asQGraphicsItem", "@brief Delivers the base class interface QGraphicsItem of QGraphicsObject\nClass QGraphicsObject is derived from multiple base classes. This method delivers the QGraphicsItem base class aspect.", false, &_init_f_QGraphicsObject_as_QGraphicsItem, &_call_f_QGraphicsObject_as_QGraphicsItem);
|
|
methods += new qt_gsi::GenericMethod ("asConstQGraphicsItem", "@brief Delivers the base class interface QGraphicsItem of QGraphicsObject\nClass QGraphicsObject is derived from multiple base classes. This method delivers the QGraphicsItem base class aspect.\n\nUse this version if you have a const reference.", true, &_init_f_QGraphicsObject_as_const_QGraphicsItem, &_call_f_QGraphicsObject_as_const_QGraphicsItem);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QObject> &qtdecl_QObject ();
|
|
|
|
qt_gsi::QtNativeClass<QGraphicsObject> decl_QGraphicsObject (qtdecl_QObject (), "QGraphicsObject_Native",
|
|
methods_QGraphicsObject (),
|
|
"@hide\n@alias QGraphicsObject");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QGraphicsObject> &qtdecl_QGraphicsObject () { return decl_QGraphicsObject; }
|
|
|
|
}
|
|
|
|
|
|
class QGraphicsObject_Adaptor : public QGraphicsObject, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QGraphicsObject_Adaptor();
|
|
|
|
// [adaptor ctor] QGraphicsObject::QGraphicsObject(QGraphicsItem *parent)
|
|
QGraphicsObject_Adaptor() : QGraphicsObject()
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsObject::QGraphicsObject(QGraphicsItem *parent)
|
|
QGraphicsObject_Adaptor(QGraphicsItem *parent) : QGraphicsObject(parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [expose] void QGraphicsObject::addToIndex()
|
|
void fp_QGraphicsObject_addToIndex_0 () {
|
|
QGraphicsObject::addToIndex();
|
|
}
|
|
|
|
// [expose] void QGraphicsObject::prepareGeometryChange()
|
|
void fp_QGraphicsObject_prepareGeometryChange_0 () {
|
|
QGraphicsObject::prepareGeometryChange();
|
|
}
|
|
|
|
// [expose] int QGraphicsObject::receivers(const char *signal)
|
|
int fp_QGraphicsObject_receivers_c1731 (const char *signal) const {
|
|
return QGraphicsObject::receivers(signal);
|
|
}
|
|
|
|
// [expose] void QGraphicsObject::removeFromIndex()
|
|
void fp_QGraphicsObject_removeFromIndex_0 () {
|
|
QGraphicsObject::removeFromIndex();
|
|
}
|
|
|
|
// [expose] QObject *QGraphicsObject::sender()
|
|
QObject * fp_QGraphicsObject_sender_c0 () const {
|
|
return QGraphicsObject::sender();
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::advance(int phase)
|
|
void cbs_advance_767_0(int phase)
|
|
{
|
|
QGraphicsObject::advance(phase);
|
|
}
|
|
|
|
virtual void advance(int phase)
|
|
{
|
|
if (cb_advance_767_0.can_issue()) {
|
|
cb_advance_767_0.issue<QGraphicsObject_Adaptor, int>(&QGraphicsObject_Adaptor::cbs_advance_767_0, phase);
|
|
} else {
|
|
QGraphicsObject::advance(phase);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRectF QGraphicsObject::boundingRect()
|
|
QRectF cbs_boundingRect_c0_0() const
|
|
{
|
|
throw qt_gsi::AbstractMethodCalledException("boundingRect");
|
|
}
|
|
|
|
virtual QRectF boundingRect() const
|
|
{
|
|
if (cb_boundingRect_c0_0.can_issue()) {
|
|
return cb_boundingRect_c0_0.issue<QGraphicsObject_Adaptor, QRectF>(&QGraphicsObject_Adaptor::cbs_boundingRect_c0_0);
|
|
} else {
|
|
throw qt_gsi::AbstractMethodCalledException("boundingRect");
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::collidesWithItem(const QGraphicsItem *other, Qt::ItemSelectionMode mode)
|
|
bool cbs_collidesWithItem_c4977_1(const QGraphicsItem *other, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & mode) const
|
|
{
|
|
return QGraphicsObject::collidesWithItem(other, qt_gsi::QtToCppAdaptor<Qt::ItemSelectionMode>(mode).cref());
|
|
}
|
|
|
|
virtual bool collidesWithItem(const QGraphicsItem *other, Qt::ItemSelectionMode mode) const
|
|
{
|
|
if (cb_collidesWithItem_c4977_1.can_issue()) {
|
|
return cb_collidesWithItem_c4977_1.issue<QGraphicsObject_Adaptor, bool, const QGraphicsItem *, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type &>(&QGraphicsObject_Adaptor::cbs_collidesWithItem_c4977_1, other, qt_gsi::CppToQtAdaptor<Qt::ItemSelectionMode>(mode));
|
|
} else {
|
|
return QGraphicsObject::collidesWithItem(other, mode);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::collidesWithPath(const QPainterPath &path, Qt::ItemSelectionMode mode)
|
|
bool cbs_collidesWithPath_c4877_1(const QPainterPath &path, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & mode) const
|
|
{
|
|
return QGraphicsObject::collidesWithPath(path, qt_gsi::QtToCppAdaptor<Qt::ItemSelectionMode>(mode).cref());
|
|
}
|
|
|
|
virtual bool collidesWithPath(const QPainterPath &path, Qt::ItemSelectionMode mode) const
|
|
{
|
|
if (cb_collidesWithPath_c4877_1.can_issue()) {
|
|
return cb_collidesWithPath_c4877_1.issue<QGraphicsObject_Adaptor, bool, const QPainterPath &, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type &>(&QGraphicsObject_Adaptor::cbs_collidesWithPath_c4877_1, path, qt_gsi::CppToQtAdaptor<Qt::ItemSelectionMode>(mode));
|
|
} else {
|
|
return QGraphicsObject::collidesWithPath(path, mode);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::contains(const QPointF &point)
|
|
bool cbs_contains_c1986_0(const QPointF &point) const
|
|
{
|
|
return QGraphicsObject::contains(point);
|
|
}
|
|
|
|
virtual bool contains(const QPointF &point) const
|
|
{
|
|
if (cb_contains_c1986_0.can_issue()) {
|
|
return cb_contains_c1986_0.issue<QGraphicsObject_Adaptor, bool, const QPointF &>(&QGraphicsObject_Adaptor::cbs_contains_c1986_0, point);
|
|
} else {
|
|
return QGraphicsObject::contains(point);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::event(QEvent *)
|
|
bool cbs_event_1217_0(QEvent *arg1)
|
|
{
|
|
return QGraphicsObject::event(arg1);
|
|
}
|
|
|
|
virtual bool event(QEvent *arg1)
|
|
{
|
|
if (cb_event_1217_0.can_issue()) {
|
|
return cb_event_1217_0.issue<QGraphicsObject_Adaptor, bool, QEvent *>(&QGraphicsObject_Adaptor::cbs_event_1217_0, arg1);
|
|
} else {
|
|
return QGraphicsObject::event(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::eventFilter(QObject *, QEvent *)
|
|
bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
|
|
{
|
|
return QGraphicsObject::eventFilter(arg1, arg2);
|
|
}
|
|
|
|
virtual bool eventFilter(QObject *arg1, QEvent *arg2)
|
|
{
|
|
if (cb_eventFilter_2411_0.can_issue()) {
|
|
return cb_eventFilter_2411_0.issue<QGraphicsObject_Adaptor, bool, QObject *, QEvent *>(&QGraphicsObject_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
|
|
} else {
|
|
return QGraphicsObject::eventFilter(arg1, arg2);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::isObscuredBy(const QGraphicsItem *item)
|
|
bool cbs_isObscuredBy_c2614_0(const QGraphicsItem *item) const
|
|
{
|
|
return QGraphicsObject::isObscuredBy(item);
|
|
}
|
|
|
|
virtual bool isObscuredBy(const QGraphicsItem *item) const
|
|
{
|
|
if (cb_isObscuredBy_c2614_0.can_issue()) {
|
|
return cb_isObscuredBy_c2614_0.issue<QGraphicsObject_Adaptor, bool, const QGraphicsItem *>(&QGraphicsObject_Adaptor::cbs_isObscuredBy_c2614_0, item);
|
|
} else {
|
|
return QGraphicsObject::isObscuredBy(item);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPainterPath QGraphicsObject::opaqueArea()
|
|
QPainterPath cbs_opaqueArea_c0_0() const
|
|
{
|
|
return QGraphicsObject::opaqueArea();
|
|
}
|
|
|
|
virtual QPainterPath opaqueArea() const
|
|
{
|
|
if (cb_opaqueArea_c0_0.can_issue()) {
|
|
return cb_opaqueArea_c0_0.issue<QGraphicsObject_Adaptor, QPainterPath>(&QGraphicsObject_Adaptor::cbs_opaqueArea_c0_0);
|
|
} else {
|
|
return QGraphicsObject::opaqueArea();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
void cbs_paint_6301_1(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING (painter);
|
|
__SUPPRESS_UNUSED_WARNING (option);
|
|
__SUPPRESS_UNUSED_WARNING (widget);
|
|
throw qt_gsi::AbstractMethodCalledException("paint");
|
|
}
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
{
|
|
if (cb_paint_6301_1.can_issue()) {
|
|
cb_paint_6301_1.issue<QGraphicsObject_Adaptor, QPainter *, const QStyleOptionGraphicsItem *, QWidget *>(&QGraphicsObject_Adaptor::cbs_paint_6301_1, painter, option, widget);
|
|
} else {
|
|
throw qt_gsi::AbstractMethodCalledException("paint");
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPainterPath QGraphicsObject::shape()
|
|
QPainterPath cbs_shape_c0_0() const
|
|
{
|
|
return QGraphicsObject::shape();
|
|
}
|
|
|
|
virtual QPainterPath shape() const
|
|
{
|
|
if (cb_shape_c0_0.can_issue()) {
|
|
return cb_shape_c0_0.issue<QGraphicsObject_Adaptor, QPainterPath>(&QGraphicsObject_Adaptor::cbs_shape_c0_0);
|
|
} else {
|
|
return QGraphicsObject::shape();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QGraphicsObject::type()
|
|
int cbs_type_c0_0() const
|
|
{
|
|
return QGraphicsObject::type();
|
|
}
|
|
|
|
virtual int type() const
|
|
{
|
|
if (cb_type_c0_0.can_issue()) {
|
|
return cb_type_c0_0.issue<QGraphicsObject_Adaptor, int>(&QGraphicsObject_Adaptor::cbs_type_c0_0);
|
|
} else {
|
|
return QGraphicsObject::type();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::childEvent(QChildEvent *)
|
|
void cbs_childEvent_1701_0(QChildEvent *arg1)
|
|
{
|
|
QGraphicsObject::childEvent(arg1);
|
|
}
|
|
|
|
virtual void childEvent(QChildEvent *arg1)
|
|
{
|
|
if (cb_childEvent_1701_0.can_issue()) {
|
|
cb_childEvent_1701_0.issue<QGraphicsObject_Adaptor, QChildEvent *>(&QGraphicsObject_Adaptor::cbs_childEvent_1701_0, arg1);
|
|
} else {
|
|
QGraphicsObject::childEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
void cbs_contextMenuEvent_3674_0(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
QGraphicsObject::contextMenuEvent(event);
|
|
}
|
|
|
|
virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
if (cb_contextMenuEvent_3674_0.can_issue()) {
|
|
cb_contextMenuEvent_3674_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneContextMenuEvent *>(&QGraphicsObject_Adaptor::cbs_contextMenuEvent_3674_0, event);
|
|
} else {
|
|
QGraphicsObject::contextMenuEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::customEvent(QEvent *)
|
|
void cbs_customEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QGraphicsObject::customEvent(arg1);
|
|
}
|
|
|
|
virtual void customEvent(QEvent *arg1)
|
|
{
|
|
if (cb_customEvent_1217_0.can_issue()) {
|
|
cb_customEvent_1217_0.issue<QGraphicsObject_Adaptor, QEvent *>(&QGraphicsObject_Adaptor::cbs_customEvent_1217_0, arg1);
|
|
} else {
|
|
QGraphicsObject::customEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::destroyed(QObject *)
|
|
void emitter_QGraphicsObject_destroyed_1302(QObject *arg1)
|
|
{
|
|
emit QGraphicsObject::destroyed(arg1);
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::disconnectNotify(const char *signal)
|
|
void cbs_disconnectNotify_1731_0(const char *signal)
|
|
{
|
|
QGraphicsObject::disconnectNotify(signal);
|
|
}
|
|
|
|
virtual void disconnectNotify(const char *signal)
|
|
{
|
|
if (cb_disconnectNotify_1731_0.can_issue()) {
|
|
cb_disconnectNotify_1731_0.issue<QGraphicsObject_Adaptor, const char *>(&QGraphicsObject_Adaptor::cbs_disconnectNotify_1731_0, signal);
|
|
} else {
|
|
QGraphicsObject::disconnectNotify(signal);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragEnterEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsObject::dragEnterEvent(event);
|
|
}
|
|
|
|
virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragEnterEvent_3315_0.can_issue()) {
|
|
cb_dragEnterEvent_3315_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsObject_Adaptor::cbs_dragEnterEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsObject::dragEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragLeaveEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsObject::dragLeaveEvent(event);
|
|
}
|
|
|
|
virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragLeaveEvent_3315_0.can_issue()) {
|
|
cb_dragLeaveEvent_3315_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsObject_Adaptor::cbs_dragLeaveEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsObject::dragLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragMoveEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsObject::dragMoveEvent(event);
|
|
}
|
|
|
|
virtual void dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragMoveEvent_3315_0.can_issue()) {
|
|
cb_dragMoveEvent_3315_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsObject_Adaptor::cbs_dragMoveEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsObject::dragMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dropEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsObject::dropEvent(event);
|
|
}
|
|
|
|
virtual void dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dropEvent_3315_0.can_issue()) {
|
|
cb_dropEvent_3315_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsObject_Adaptor::cbs_dropEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsObject::dropEvent(event);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::enabledChanged()
|
|
void emitter_QGraphicsObject_enabledChanged_0()
|
|
{
|
|
emit QGraphicsObject::enabledChanged();
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsObject::extension(const QVariant &variant)
|
|
QVariant cbs_extension_c2119_0(const QVariant &variant) const
|
|
{
|
|
return QGraphicsObject::extension(variant);
|
|
}
|
|
|
|
virtual QVariant extension(const QVariant &variant) const
|
|
{
|
|
if (cb_extension_c2119_0.can_issue()) {
|
|
return cb_extension_c2119_0.issue<QGraphicsObject_Adaptor, QVariant, const QVariant &>(&QGraphicsObject_Adaptor::cbs_extension_c2119_0, variant);
|
|
} else {
|
|
return QGraphicsObject::extension(variant);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::focusInEvent(QFocusEvent *event)
|
|
void cbs_focusInEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QGraphicsObject::focusInEvent(event);
|
|
}
|
|
|
|
virtual void focusInEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusInEvent_1729_0.can_issue()) {
|
|
cb_focusInEvent_1729_0.issue<QGraphicsObject_Adaptor, QFocusEvent *>(&QGraphicsObject_Adaptor::cbs_focusInEvent_1729_0, event);
|
|
} else {
|
|
QGraphicsObject::focusInEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::focusOutEvent(QFocusEvent *event)
|
|
void cbs_focusOutEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QGraphicsObject::focusOutEvent(event);
|
|
}
|
|
|
|
virtual void focusOutEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusOutEvent_1729_0.can_issue()) {
|
|
cb_focusOutEvent_1729_0.issue<QGraphicsObject_Adaptor, QFocusEvent *>(&QGraphicsObject_Adaptor::cbs_focusOutEvent_1729_0, event);
|
|
} else {
|
|
QGraphicsObject::focusOutEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverEnterEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsObject::hoverEnterEvent(event);
|
|
}
|
|
|
|
virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverEnterEvent_3044_0.can_issue()) {
|
|
cb_hoverEnterEvent_3044_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsObject_Adaptor::cbs_hoverEnterEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsObject::hoverEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverLeaveEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsObject::hoverLeaveEvent(event);
|
|
}
|
|
|
|
virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverLeaveEvent_3044_0.can_issue()) {
|
|
cb_hoverLeaveEvent_3044_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsObject_Adaptor::cbs_hoverLeaveEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsObject::hoverLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverMoveEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsObject::hoverMoveEvent(event);
|
|
}
|
|
|
|
virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverMoveEvent_3044_0.can_issue()) {
|
|
cb_hoverMoveEvent_3044_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsObject_Adaptor::cbs_hoverMoveEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsObject::hoverMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::inputMethodEvent(QInputMethodEvent *event)
|
|
void cbs_inputMethodEvent_2354_0(QInputMethodEvent *event)
|
|
{
|
|
QGraphicsObject::inputMethodEvent(event);
|
|
}
|
|
|
|
virtual void inputMethodEvent(QInputMethodEvent *event)
|
|
{
|
|
if (cb_inputMethodEvent_2354_0.can_issue()) {
|
|
cb_inputMethodEvent_2354_0.issue<QGraphicsObject_Adaptor, QInputMethodEvent *>(&QGraphicsObject_Adaptor::cbs_inputMethodEvent_2354_0, event);
|
|
} else {
|
|
QGraphicsObject::inputMethodEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery query)
|
|
QVariant cbs_inputMethodQuery_c2420_0(const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & query) const
|
|
{
|
|
return QGraphicsObject::inputMethodQuery(qt_gsi::QtToCppAdaptor<Qt::InputMethodQuery>(query).cref());
|
|
}
|
|
|
|
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const
|
|
{
|
|
if (cb_inputMethodQuery_c2420_0.can_issue()) {
|
|
return cb_inputMethodQuery_c2420_0.issue<QGraphicsObject_Adaptor, QVariant, const qt_gsi::Converter<Qt::InputMethodQuery>::target_type &>(&QGraphicsObject_Adaptor::cbs_inputMethodQuery_c2420_0, qt_gsi::CppToQtAdaptor<Qt::InputMethodQuery>(query));
|
|
} else {
|
|
return QGraphicsObject::inputMethodQuery(query);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
QVariant cbs_itemChange_5658_0(const qt_gsi::Converter<QGraphicsItem::GraphicsItemChange>::target_type & change, const QVariant &value)
|
|
{
|
|
return QGraphicsObject::itemChange(qt_gsi::QtToCppAdaptor<QGraphicsItem::GraphicsItemChange>(change).cref(), value);
|
|
}
|
|
|
|
virtual QVariant itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
{
|
|
if (cb_itemChange_5658_0.can_issue()) {
|
|
return cb_itemChange_5658_0.issue<QGraphicsObject_Adaptor, QVariant, const qt_gsi::Converter<QGraphicsItem::GraphicsItemChange>::target_type &, const QVariant &>(&QGraphicsObject_Adaptor::cbs_itemChange_5658_0, qt_gsi::CppToQtAdaptor<QGraphicsItem::GraphicsItemChange>(change), value);
|
|
} else {
|
|
return QGraphicsObject::itemChange(change, value);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::keyPressEvent(QKeyEvent *event)
|
|
void cbs_keyPressEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QGraphicsObject::keyPressEvent(event);
|
|
}
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyPressEvent_1514_0.can_issue()) {
|
|
cb_keyPressEvent_1514_0.issue<QGraphicsObject_Adaptor, QKeyEvent *>(&QGraphicsObject_Adaptor::cbs_keyPressEvent_1514_0, event);
|
|
} else {
|
|
QGraphicsObject::keyPressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::keyReleaseEvent(QKeyEvent *event)
|
|
void cbs_keyReleaseEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QGraphicsObject::keyReleaseEvent(event);
|
|
}
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyReleaseEvent_1514_0.can_issue()) {
|
|
cb_keyReleaseEvent_1514_0.issue<QGraphicsObject_Adaptor, QKeyEvent *>(&QGraphicsObject_Adaptor::cbs_keyReleaseEvent_1514_0, event);
|
|
} else {
|
|
QGraphicsObject::keyReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseDoubleClickEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsObject::mouseDoubleClickEvent(event);
|
|
}
|
|
|
|
virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseDoubleClickEvent_3049_0.can_issue()) {
|
|
cb_mouseDoubleClickEvent_3049_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsObject_Adaptor::cbs_mouseDoubleClickEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsObject::mouseDoubleClickEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseMoveEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsObject::mouseMoveEvent(event);
|
|
}
|
|
|
|
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseMoveEvent_3049_0.can_issue()) {
|
|
cb_mouseMoveEvent_3049_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsObject_Adaptor::cbs_mouseMoveEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsObject::mouseMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mousePressEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsObject::mousePressEvent(event);
|
|
}
|
|
|
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mousePressEvent_3049_0.can_issue()) {
|
|
cb_mousePressEvent_3049_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsObject_Adaptor::cbs_mousePressEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsObject::mousePressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseReleaseEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsObject::mouseReleaseEvent(event);
|
|
}
|
|
|
|
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseReleaseEvent_3049_0.can_issue()) {
|
|
cb_mouseReleaseEvent_3049_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsObject_Adaptor::cbs_mouseReleaseEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsObject::mouseReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::opacityChanged()
|
|
void emitter_QGraphicsObject_opacityChanged_0()
|
|
{
|
|
emit QGraphicsObject::opacityChanged();
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::parentChanged()
|
|
void emitter_QGraphicsObject_parentChanged_0()
|
|
{
|
|
emit QGraphicsObject::parentChanged();
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::rotationChanged()
|
|
void emitter_QGraphicsObject_rotationChanged_0()
|
|
{
|
|
emit QGraphicsObject::rotationChanged();
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::scaleChanged()
|
|
void emitter_QGraphicsObject_scaleChanged_0()
|
|
{
|
|
emit QGraphicsObject::scaleChanged();
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::sceneEvent(QEvent *event)
|
|
bool cbs_sceneEvent_1217_0(QEvent *event)
|
|
{
|
|
return QGraphicsObject::sceneEvent(event);
|
|
}
|
|
|
|
virtual bool sceneEvent(QEvent *event)
|
|
{
|
|
if (cb_sceneEvent_1217_0.can_issue()) {
|
|
return cb_sceneEvent_1217_0.issue<QGraphicsObject_Adaptor, bool, QEvent *>(&QGraphicsObject_Adaptor::cbs_sceneEvent_1217_0, event);
|
|
} else {
|
|
return QGraphicsObject::sceneEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::sceneEventFilter(QGraphicsItem *watched, QEvent *event)
|
|
bool cbs_sceneEventFilter_3028_0(QGraphicsItem *watched, QEvent *event)
|
|
{
|
|
return QGraphicsObject::sceneEventFilter(watched, event);
|
|
}
|
|
|
|
virtual bool sceneEventFilter(QGraphicsItem *watched, QEvent *event)
|
|
{
|
|
if (cb_sceneEventFilter_3028_0.can_issue()) {
|
|
return cb_sceneEventFilter_3028_0.issue<QGraphicsObject_Adaptor, bool, QGraphicsItem *, QEvent *>(&QGraphicsObject_Adaptor::cbs_sceneEventFilter_3028_0, watched, event);
|
|
} else {
|
|
return QGraphicsObject::sceneEventFilter(watched, event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::setExtension(QGraphicsItem::Extension extension, const QVariant &variant)
|
|
void cbs_setExtension_4817_0(unsigned int extension, const QVariant &variant)
|
|
{
|
|
QGraphicsObject::setExtension(QGraphicsItem::Extension(extension), variant);
|
|
}
|
|
|
|
virtual void setExtension(QGraphicsItem::Extension extension, const QVariant &variant)
|
|
{
|
|
if (cb_setExtension_4817_0.can_issue()) {
|
|
cb_setExtension_4817_0.issue<QGraphicsObject_Adaptor, unsigned int, const QVariant &>(&QGraphicsObject_Adaptor::cbs_setExtension_4817_0, (unsigned int)(extension), variant);
|
|
} else {
|
|
QGraphicsObject::setExtension(extension, variant);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsObject::supportsExtension(QGraphicsItem::Extension extension)
|
|
bool cbs_supportsExtension_c2806_0(unsigned int extension) const
|
|
{
|
|
return QGraphicsObject::supportsExtension(QGraphicsItem::Extension(extension));
|
|
}
|
|
|
|
virtual bool supportsExtension(QGraphicsItem::Extension extension) const
|
|
{
|
|
if (cb_supportsExtension_c2806_0.can_issue()) {
|
|
return cb_supportsExtension_c2806_0.issue<QGraphicsObject_Adaptor, bool, unsigned int>(&QGraphicsObject_Adaptor::cbs_supportsExtension_c2806_0, (unsigned int)(extension));
|
|
} else {
|
|
return QGraphicsObject::supportsExtension(extension);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::timerEvent(QTimerEvent *)
|
|
void cbs_timerEvent_1730_0(QTimerEvent *arg1)
|
|
{
|
|
QGraphicsObject::timerEvent(arg1);
|
|
}
|
|
|
|
virtual void timerEvent(QTimerEvent *arg1)
|
|
{
|
|
if (cb_timerEvent_1730_0.can_issue()) {
|
|
cb_timerEvent_1730_0.issue<QGraphicsObject_Adaptor, QTimerEvent *>(&QGraphicsObject_Adaptor::cbs_timerEvent_1730_0, arg1);
|
|
} else {
|
|
QGraphicsObject::timerEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::visibleChanged()
|
|
void emitter_QGraphicsObject_visibleChanged_0()
|
|
{
|
|
emit QGraphicsObject::visibleChanged();
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent *event)
|
|
void cbs_wheelEvent_3029_0(QGraphicsSceneWheelEvent *event)
|
|
{
|
|
QGraphicsObject::wheelEvent(event);
|
|
}
|
|
|
|
virtual void wheelEvent(QGraphicsSceneWheelEvent *event)
|
|
{
|
|
if (cb_wheelEvent_3029_0.can_issue()) {
|
|
cb_wheelEvent_3029_0.issue<QGraphicsObject_Adaptor, QGraphicsSceneWheelEvent *>(&QGraphicsObject_Adaptor::cbs_wheelEvent_3029_0, event);
|
|
} else {
|
|
QGraphicsObject::wheelEvent(event);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::xChanged()
|
|
void emitter_QGraphicsObject_xChanged_0()
|
|
{
|
|
emit QGraphicsObject::xChanged();
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::yChanged()
|
|
void emitter_QGraphicsObject_yChanged_0()
|
|
{
|
|
emit QGraphicsObject::yChanged();
|
|
}
|
|
|
|
// [emitter impl] void QGraphicsObject::zChanged()
|
|
void emitter_QGraphicsObject_zChanged_0()
|
|
{
|
|
emit QGraphicsObject::zChanged();
|
|
}
|
|
|
|
gsi::Callback cb_advance_767_0;
|
|
gsi::Callback cb_boundingRect_c0_0;
|
|
gsi::Callback cb_collidesWithItem_c4977_1;
|
|
gsi::Callback cb_collidesWithPath_c4877_1;
|
|
gsi::Callback cb_contains_c1986_0;
|
|
gsi::Callback cb_event_1217_0;
|
|
gsi::Callback cb_eventFilter_2411_0;
|
|
gsi::Callback cb_isObscuredBy_c2614_0;
|
|
gsi::Callback cb_opaqueArea_c0_0;
|
|
gsi::Callback cb_paint_6301_1;
|
|
gsi::Callback cb_shape_c0_0;
|
|
gsi::Callback cb_type_c0_0;
|
|
gsi::Callback cb_childEvent_1701_0;
|
|
gsi::Callback cb_contextMenuEvent_3674_0;
|
|
gsi::Callback cb_customEvent_1217_0;
|
|
gsi::Callback cb_disconnectNotify_1731_0;
|
|
gsi::Callback cb_dragEnterEvent_3315_0;
|
|
gsi::Callback cb_dragLeaveEvent_3315_0;
|
|
gsi::Callback cb_dragMoveEvent_3315_0;
|
|
gsi::Callback cb_dropEvent_3315_0;
|
|
gsi::Callback cb_extension_c2119_0;
|
|
gsi::Callback cb_focusInEvent_1729_0;
|
|
gsi::Callback cb_focusOutEvent_1729_0;
|
|
gsi::Callback cb_hoverEnterEvent_3044_0;
|
|
gsi::Callback cb_hoverLeaveEvent_3044_0;
|
|
gsi::Callback cb_hoverMoveEvent_3044_0;
|
|
gsi::Callback cb_inputMethodEvent_2354_0;
|
|
gsi::Callback cb_inputMethodQuery_c2420_0;
|
|
gsi::Callback cb_itemChange_5658_0;
|
|
gsi::Callback cb_keyPressEvent_1514_0;
|
|
gsi::Callback cb_keyReleaseEvent_1514_0;
|
|
gsi::Callback cb_mouseDoubleClickEvent_3049_0;
|
|
gsi::Callback cb_mouseMoveEvent_3049_0;
|
|
gsi::Callback cb_mousePressEvent_3049_0;
|
|
gsi::Callback cb_mouseReleaseEvent_3049_0;
|
|
gsi::Callback cb_sceneEvent_1217_0;
|
|
gsi::Callback cb_sceneEventFilter_3028_0;
|
|
gsi::Callback cb_setExtension_4817_0;
|
|
gsi::Callback cb_supportsExtension_c2806_0;
|
|
gsi::Callback cb_timerEvent_1730_0;
|
|
gsi::Callback cb_wheelEvent_3029_0;
|
|
};
|
|
|
|
QGraphicsObject_Adaptor::~QGraphicsObject_Adaptor() { }
|
|
|
|
// Constructor QGraphicsObject::QGraphicsObject(QGraphicsItem *parent) (adaptor class)
|
|
|
|
static void _init_ctor_QGraphicsObject_Adaptor_1919 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
|
|
decl->add_arg<QGraphicsItem * > (argspec_0);
|
|
decl->set_return_new<QGraphicsObject_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QGraphicsObject_Adaptor_1919 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsItem *arg1 = args ? args.read<QGraphicsItem * > (heap) : (QGraphicsItem *)(0);
|
|
ret.write<QGraphicsObject_Adaptor *> (new QGraphicsObject_Adaptor (arg1));
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsObject::addToIndex()
|
|
|
|
static void _init_fp_addToIndex_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_addToIndex_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_addToIndex_0 ();
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::advance(int phase)
|
|
|
|
static void _init_cbs_advance_767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("phase");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_advance_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_advance_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_advance_767_0 = cb;
|
|
}
|
|
|
|
|
|
// QRectF QGraphicsObject::boundingRect()
|
|
|
|
static void _init_cbs_boundingRect_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QRectF > ();
|
|
}
|
|
|
|
static void _call_cbs_boundingRect_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QRectF > ((QRectF)((QGraphicsObject_Adaptor *)cls)->cbs_boundingRect_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_boundingRect_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_boundingRect_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::childEvent(QChildEvent *)
|
|
|
|
static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QChildEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QChildEvent *arg1 = args.read<QChildEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_childEvent_1701_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::collidesWithItem(const QGraphicsItem *other, Qt::ItemSelectionMode mode)
|
|
|
|
static void _init_cbs_collidesWithItem_c4977_1 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("other");
|
|
decl->add_arg<const QGraphicsItem * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QGraphicsItem *arg1 = args.read<const QGraphicsItem * > (heap);
|
|
const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & arg2 = args.read<const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & > (heap);
|
|
ret.write<bool > ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_collidesWithItem_c4977_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_collidesWithItem_c4977_1 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::collidesWithPath(const QPainterPath &path, Qt::ItemSelectionMode mode)
|
|
|
|
static void _init_cbs_collidesWithPath_c4877_1 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("path");
|
|
decl->add_arg<const QPainterPath & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPainterPath &arg1 = args.read<const QPainterPath & > (heap);
|
|
const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & arg2 = args.read<const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type & > (heap);
|
|
ret.write<bool > ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_collidesWithPath_c4877_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_collidesWithPath_c4877_1 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::contains(const QPointF &point)
|
|
|
|
static void _init_cbs_contains_c1986_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("point");
|
|
decl->add_arg<const QPointF & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPointF &arg1 = args.read<const QPointF & > (heap);
|
|
ret.write<bool > ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_contains_c1986_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_contains_c1986_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_contains_c1986_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
static void _init_cbs_contextMenuEvent_3674_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneContextMenuEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneContextMenuEvent *arg1 = args.read<QGraphicsSceneContextMenuEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_contextMenuEvent_3674_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_contextMenuEvent_3674_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::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);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_customEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::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);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_destroyed_1302 (arg1);
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::disconnectNotify(const char *signal)
|
|
|
|
static void _init_cbs_disconnectNotify_1731_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("signal");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_disconnectNotify_1731_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_disconnectNotify_1731_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
|
|
|
static void _init_cbs_dragEnterEvent_3315_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneDragDropEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneDragDropEvent *arg1 = args.read<QGraphicsSceneDragDropEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragEnterEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_dragEnterEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
|
|
|
static void _init_cbs_dragLeaveEvent_3315_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneDragDropEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneDragDropEvent *arg1 = args.read<QGraphicsSceneDragDropEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragLeaveEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_dragLeaveEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
|
|
|
static void _init_cbs_dragMoveEvent_3315_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneDragDropEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneDragDropEvent *arg1 = args.read<QGraphicsSceneDragDropEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragMoveEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_dragMoveEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
|
|
static void _init_cbs_dropEvent_3315_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneDragDropEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneDragDropEvent *arg1 = args.read<QGraphicsSceneDragDropEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dropEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_dropEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::enabledChanged()
|
|
|
|
static void _init_emitter_enabledChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_enabledChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_enabledChanged_0 ();
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::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)((QGraphicsObject_Adaptor *)cls)->cbs_event_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_event_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::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)((QGraphicsObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_eventFilter_2411_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsObject::extension(const QVariant &variant)
|
|
|
|
static void _init_cbs_extension_c2119_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("variant");
|
|
decl->add_arg<const QVariant & > (argspec_0);
|
|
decl->set_return<QVariant > ();
|
|
}
|
|
|
|
static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QVariant &arg1 = args.read<const QVariant & > (heap);
|
|
ret.write<QVariant > ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_extension_c2119_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_extension_c2119_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_extension_c2119_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::focusInEvent(QFocusEvent *event)
|
|
|
|
static void _init_cbs_focusInEvent_1729_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QFocusEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFocusEvent *arg1 = args.read<QFocusEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusInEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_focusInEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::focusOutEvent(QFocusEvent *event)
|
|
|
|
static void _init_cbs_focusOutEvent_1729_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QFocusEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFocusEvent *arg1 = args.read<QFocusEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusOutEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_focusOutEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
static void _init_cbs_hoverEnterEvent_3044_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneHoverEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneHoverEvent *arg1 = args.read<QGraphicsSceneHoverEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverEnterEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_hoverEnterEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
static void _init_cbs_hoverLeaveEvent_3044_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneHoverEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneHoverEvent *arg1 = args.read<QGraphicsSceneHoverEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverLeaveEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_hoverLeaveEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
static void _init_cbs_hoverMoveEvent_3044_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneHoverEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneHoverEvent *arg1 = args.read<QGraphicsSceneHoverEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverMoveEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_hoverMoveEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::inputMethodEvent(QInputMethodEvent *event)
|
|
|
|
static void _init_cbs_inputMethodEvent_2354_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QInputMethodEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QInputMethodEvent *arg1 = args.read<QInputMethodEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodEvent_2354_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_inputMethodEvent_2354_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery query)
|
|
|
|
static void _init_cbs_inputMethodQuery_c2420_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("query");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & > (argspec_0);
|
|
decl->set_return<QVariant > ();
|
|
}
|
|
|
|
static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & > (heap);
|
|
ret.write<QVariant > ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodQuery_c2420_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_inputMethodQuery_c2420_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::isObscuredBy(const QGraphicsItem *item)
|
|
|
|
static void _init_cbs_isObscuredBy_c2614_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("item");
|
|
decl->add_arg<const QGraphicsItem * > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QGraphicsItem *arg1 = args.read<const QGraphicsItem * > (heap);
|
|
ret.write<bool > ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_isObscuredBy_c2614_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_isObscuredBy_c2614_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
|
|
static void _init_cbs_itemChange_5658_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("change");
|
|
decl->add_arg<const qt_gsi::Converter<QGraphicsItem::GraphicsItemChange>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("value");
|
|
decl->add_arg<const QVariant & > (argspec_1);
|
|
decl->set_return<QVariant > ();
|
|
}
|
|
|
|
static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QGraphicsItem::GraphicsItemChange>::target_type & arg1 = args.read<const qt_gsi::Converter<QGraphicsItem::GraphicsItemChange>::target_type & > (heap);
|
|
const QVariant &arg2 = args.read<const QVariant & > (heap);
|
|
ret.write<QVariant > ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_itemChange_5658_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_itemChange_5658_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::keyPressEvent(QKeyEvent *event)
|
|
|
|
static void _init_cbs_keyPressEvent_1514_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QKeyEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QKeyEvent *arg1 = args.read<QKeyEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyPressEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_keyPressEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::keyReleaseEvent(QKeyEvent *event)
|
|
|
|
static void _init_cbs_keyReleaseEvent_1514_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QKeyEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QKeyEvent *arg1 = args.read<QKeyEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyReleaseEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_keyReleaseEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
static void _init_cbs_mouseDoubleClickEvent_3049_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneMouseEvent *arg1 = args.read<QGraphicsSceneMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseDoubleClickEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_mouseDoubleClickEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
static void _init_cbs_mouseMoveEvent_3049_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneMouseEvent *arg1 = args.read<QGraphicsSceneMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseMoveEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_mouseMoveEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
static void _init_cbs_mousePressEvent_3049_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneMouseEvent *arg1 = args.read<QGraphicsSceneMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mousePressEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_mousePressEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
static void _init_cbs_mouseReleaseEvent_3049_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneMouseEvent *arg1 = args.read<QGraphicsSceneMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseReleaseEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_mouseReleaseEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::opacityChanged()
|
|
|
|
static void _init_emitter_opacityChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_opacityChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_opacityChanged_0 ();
|
|
}
|
|
|
|
|
|
// QPainterPath QGraphicsObject::opaqueArea()
|
|
|
|
static void _init_cbs_opaqueArea_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPainterPath > ();
|
|
}
|
|
|
|
static void _call_cbs_opaqueArea_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPainterPath > ((QPainterPath)((QGraphicsObject_Adaptor *)cls)->cbs_opaqueArea_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_opaqueArea_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_opaqueArea_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
|
|
static void _init_cbs_paint_6301_1 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("painter");
|
|
decl->add_arg<QPainter * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("option");
|
|
decl->add_arg<const QStyleOptionGraphicsItem * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("widget");
|
|
decl->add_arg<QWidget * > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QPainter *arg1 = args.read<QPainter * > (heap);
|
|
const QStyleOptionGraphicsItem *arg2 = args.read<const QStyleOptionGraphicsItem * > (heap);
|
|
QWidget *arg3 = args.read<QWidget * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_paint_6301_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_paint_6301_1 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::parentChanged()
|
|
|
|
static void _init_emitter_parentChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_parentChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_parentChanged_0 ();
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsObject::prepareGeometryChange()
|
|
|
|
static void _init_fp_prepareGeometryChange_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_prepareGeometryChange_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_prepareGeometryChange_0 ();
|
|
}
|
|
|
|
|
|
// exposed int QGraphicsObject::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)((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_receivers_c1731 (arg1));
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsObject::removeFromIndex()
|
|
|
|
static void _init_fp_removeFromIndex_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_removeFromIndex_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_removeFromIndex_0 ();
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::rotationChanged()
|
|
|
|
static void _init_emitter_rotationChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_rotationChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_rotationChanged_0 ();
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::scaleChanged()
|
|
|
|
static void _init_emitter_scaleChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_scaleChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_scaleChanged_0 ();
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::sceneEvent(QEvent *event)
|
|
|
|
static void _init_cbs_sceneEvent_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QEvent * > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_sceneEvent_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)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sceneEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_sceneEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::sceneEventFilter(QGraphicsItem *watched, QEvent *event)
|
|
|
|
static void _init_cbs_sceneEventFilter_3028_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("watched");
|
|
decl->add_arg<QGraphicsItem * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("event");
|
|
decl->add_arg<QEvent * > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsItem *arg1 = args.read<QGraphicsItem * > (heap);
|
|
QEvent *arg2 = args.read<QEvent * > (heap);
|
|
ret.write<bool > ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_sceneEventFilter_3028_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_sceneEventFilter_3028_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed QObject *QGraphicsObject::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 *)((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_sender_c0 ());
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::setExtension(QGraphicsItem::Extension extension, const QVariant &variant)
|
|
|
|
static void _init_cbs_setExtension_4817_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("extension");
|
|
decl->add_arg<unsigned int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("variant");
|
|
decl->add_arg<const QVariant & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
unsigned int arg1 = args.read<unsigned int > (heap);
|
|
const QVariant &arg2 = args.read<const QVariant & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_setExtension_4817_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_setExtension_4817_0 = cb;
|
|
}
|
|
|
|
|
|
// QPainterPath QGraphicsObject::shape()
|
|
|
|
static void _init_cbs_shape_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPainterPath > ();
|
|
}
|
|
|
|
static void _call_cbs_shape_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPainterPath > ((QPainterPath)((QGraphicsObject_Adaptor *)cls)->cbs_shape_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_shape_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_shape_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsObject::supportsExtension(QGraphicsItem::Extension extension)
|
|
|
|
static void _init_cbs_supportsExtension_c2806_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("extension");
|
|
decl->add_arg<unsigned int > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
unsigned int arg1 = args.read<unsigned int > (heap);
|
|
ret.write<bool > ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_supportsExtension_c2806_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_supportsExtension_c2806_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::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);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_timerEvent_1730_0 = cb;
|
|
}
|
|
|
|
|
|
// int QGraphicsObject::type()
|
|
|
|
static void _init_cbs_type_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_type_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QGraphicsObject_Adaptor *)cls)->cbs_type_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_type_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_type_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::visibleChanged()
|
|
|
|
static void _init_emitter_visibleChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_visibleChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_visibleChanged_0 ();
|
|
}
|
|
|
|
|
|
// void QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent *event)
|
|
|
|
static void _init_cbs_wheelEvent_3029_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("event");
|
|
decl->add_arg<QGraphicsSceneWheelEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QGraphicsSceneWheelEvent *arg1 = args.read<QGraphicsSceneWheelEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsObject_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_wheelEvent_3029_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsObject_Adaptor *)cls)->cb_wheelEvent_3029_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::xChanged()
|
|
|
|
static void _init_emitter_xChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_xChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_xChanged_0 ();
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::yChanged()
|
|
|
|
static void _init_emitter_yChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_yChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_yChanged_0 ();
|
|
}
|
|
|
|
|
|
// emitter void QGraphicsObject::zChanged()
|
|
|
|
static void _init_emitter_zChanged_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_zChanged_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_zChanged_0 ();
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QGraphicsObject> &qtdecl_QGraphicsObject ();
|
|
|
|
static gsi::Methods methods_QGraphicsObject_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QGraphicsObject::QGraphicsObject(QGraphicsItem *parent)\nThis method creates an object of class QGraphicsObject.", &_init_ctor_QGraphicsObject_Adaptor_1919, &_call_ctor_QGraphicsObject_Adaptor_1919);
|
|
methods += new qt_gsi::GenericMethod ("*addToIndex", "@brief Method void QGraphicsObject::addToIndex()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_addToIndex_0, &_call_fp_addToIndex_0);
|
|
methods += new qt_gsi::GenericMethod ("advance", "@hide", false, &_init_cbs_advance_767_0, &_call_cbs_advance_767_0);
|
|
methods += new qt_gsi::GenericMethod ("advance", "@brief Virtual method void QGraphicsObject::advance(int phase)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_advance_767_0, &_call_cbs_advance_767_0, &_set_callback_cbs_advance_767_0);
|
|
methods += new qt_gsi::GenericMethod ("boundingRect", "@hide", true, &_init_cbs_boundingRect_c0_0, &_call_cbs_boundingRect_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Virtual method QRectF QGraphicsObject::boundingRect()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_boundingRect_c0_0, &_call_cbs_boundingRect_c0_0, &_set_callback_cbs_boundingRect_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
|
|
methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QGraphicsObject::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0);
|
|
methods += new qt_gsi::GenericMethod ("collidesWithItem", "@hide", true, &_init_cbs_collidesWithItem_c4977_1, &_call_cbs_collidesWithItem_c4977_1);
|
|
methods += new qt_gsi::GenericMethod ("collidesWithItem", "@brief Virtual method bool QGraphicsObject::collidesWithItem(const QGraphicsItem *other, Qt::ItemSelectionMode mode)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_collidesWithItem_c4977_1, &_call_cbs_collidesWithItem_c4977_1, &_set_callback_cbs_collidesWithItem_c4977_1);
|
|
methods += new qt_gsi::GenericMethod ("collidesWithPath", "@hide", true, &_init_cbs_collidesWithPath_c4877_1, &_call_cbs_collidesWithPath_c4877_1);
|
|
methods += new qt_gsi::GenericMethod ("collidesWithPath", "@brief Virtual method bool QGraphicsObject::collidesWithPath(const QPainterPath &path, Qt::ItemSelectionMode mode)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_collidesWithPath_c4877_1, &_call_cbs_collidesWithPath_c4877_1, &_set_callback_cbs_collidesWithPath_c4877_1);
|
|
methods += new qt_gsi::GenericMethod ("contains", "@hide", true, &_init_cbs_contains_c1986_0, &_call_cbs_contains_c1986_0);
|
|
methods += new qt_gsi::GenericMethod ("contains", "@brief Virtual method bool QGraphicsObject::contains(const QPointF &point)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_contains_c1986_0, &_call_cbs_contains_c1986_0, &_set_callback_cbs_contains_c1986_0);
|
|
methods += new qt_gsi::GenericMethod ("*contextMenuEvent", "@hide", false, &_init_cbs_contextMenuEvent_3674_0, &_call_cbs_contextMenuEvent_3674_0);
|
|
methods += new qt_gsi::GenericMethod ("*contextMenuEvent", "@brief Virtual method void QGraphicsObject::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_contextMenuEvent_3674_0, &_call_cbs_contextMenuEvent_3674_0, &_set_callback_cbs_contextMenuEvent_3674_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 QGraphicsObject::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 QGraphicsObject::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_1731_0, &_call_cbs_disconnectNotify_1731_0);
|
|
methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QGraphicsObject::disconnectNotify(const char *signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_1731_0, &_call_cbs_disconnectNotify_1731_0, &_set_callback_cbs_disconnectNotify_1731_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragEnterEvent", "@hide", false, &_init_cbs_dragEnterEvent_3315_0, &_call_cbs_dragEnterEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragEnterEvent", "@brief Virtual method void QGraphicsObject::dragEnterEvent(QGraphicsSceneDragDropEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragEnterEvent_3315_0, &_call_cbs_dragEnterEvent_3315_0, &_set_callback_cbs_dragEnterEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragLeaveEvent", "@hide", false, &_init_cbs_dragLeaveEvent_3315_0, &_call_cbs_dragLeaveEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragLeaveEvent", "@brief Virtual method void QGraphicsObject::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragLeaveEvent_3315_0, &_call_cbs_dragLeaveEvent_3315_0, &_set_callback_cbs_dragLeaveEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragMoveEvent", "@hide", false, &_init_cbs_dragMoveEvent_3315_0, &_call_cbs_dragMoveEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragMoveEvent", "@brief Virtual method void QGraphicsObject::dragMoveEvent(QGraphicsSceneDragDropEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragMoveEvent_3315_0, &_call_cbs_dragMoveEvent_3315_0, &_set_callback_cbs_dragMoveEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dropEvent", "@hide", false, &_init_cbs_dropEvent_3315_0, &_call_cbs_dropEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dropEvent", "@brief Virtual method void QGraphicsObject::dropEvent(QGraphicsSceneDragDropEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dropEvent_3315_0, &_call_cbs_dropEvent_3315_0, &_set_callback_cbs_dropEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_enabledChanged", "@brief Emitter for signal void QGraphicsObject::enabledChanged()\nCall this method to emit this signal.", false, &_init_emitter_enabledChanged_0, &_call_emitter_enabledChanged_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 QGraphicsObject::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 QGraphicsObject::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 ("*extension", "@hide", true, &_init_cbs_extension_c2119_0, &_call_cbs_extension_c2119_0);
|
|
methods += new qt_gsi::GenericMethod ("*extension", "@brief Virtual method QVariant QGraphicsObject::extension(const QVariant &variant)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_extension_c2119_0, &_call_cbs_extension_c2119_0, &_set_callback_cbs_extension_c2119_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusInEvent", "@hide", false, &_init_cbs_focusInEvent_1729_0, &_call_cbs_focusInEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusInEvent", "@brief Virtual method void QGraphicsObject::focusInEvent(QFocusEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusInEvent_1729_0, &_call_cbs_focusInEvent_1729_0, &_set_callback_cbs_focusInEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusOutEvent", "@hide", false, &_init_cbs_focusOutEvent_1729_0, &_call_cbs_focusOutEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusOutEvent", "@brief Virtual method void QGraphicsObject::focusOutEvent(QFocusEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusOutEvent_1729_0, &_call_cbs_focusOutEvent_1729_0, &_set_callback_cbs_focusOutEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*hoverEnterEvent", "@hide", false, &_init_cbs_hoverEnterEvent_3044_0, &_call_cbs_hoverEnterEvent_3044_0);
|
|
methods += new qt_gsi::GenericMethod ("*hoverEnterEvent", "@brief Virtual method void QGraphicsObject::hoverEnterEvent(QGraphicsSceneHoverEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_hoverEnterEvent_3044_0, &_call_cbs_hoverEnterEvent_3044_0, &_set_callback_cbs_hoverEnterEvent_3044_0);
|
|
methods += new qt_gsi::GenericMethod ("*hoverLeaveEvent", "@hide", false, &_init_cbs_hoverLeaveEvent_3044_0, &_call_cbs_hoverLeaveEvent_3044_0);
|
|
methods += new qt_gsi::GenericMethod ("*hoverLeaveEvent", "@brief Virtual method void QGraphicsObject::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_hoverLeaveEvent_3044_0, &_call_cbs_hoverLeaveEvent_3044_0, &_set_callback_cbs_hoverLeaveEvent_3044_0);
|
|
methods += new qt_gsi::GenericMethod ("*hoverMoveEvent", "@hide", false, &_init_cbs_hoverMoveEvent_3044_0, &_call_cbs_hoverMoveEvent_3044_0);
|
|
methods += new qt_gsi::GenericMethod ("*hoverMoveEvent", "@brief Virtual method void QGraphicsObject::hoverMoveEvent(QGraphicsSceneHoverEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_hoverMoveEvent_3044_0, &_call_cbs_hoverMoveEvent_3044_0, &_set_callback_cbs_hoverMoveEvent_3044_0);
|
|
methods += new qt_gsi::GenericMethod ("*inputMethodEvent", "@hide", false, &_init_cbs_inputMethodEvent_2354_0, &_call_cbs_inputMethodEvent_2354_0);
|
|
methods += new qt_gsi::GenericMethod ("*inputMethodEvent", "@brief Virtual method void QGraphicsObject::inputMethodEvent(QInputMethodEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_inputMethodEvent_2354_0, &_call_cbs_inputMethodEvent_2354_0, &_set_callback_cbs_inputMethodEvent_2354_0);
|
|
methods += new qt_gsi::GenericMethod ("*inputMethodQuery", "@hide", true, &_init_cbs_inputMethodQuery_c2420_0, &_call_cbs_inputMethodQuery_c2420_0);
|
|
methods += new qt_gsi::GenericMethod ("*inputMethodQuery", "@brief Virtual method QVariant QGraphicsObject::inputMethodQuery(Qt::InputMethodQuery query)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_inputMethodQuery_c2420_0, &_call_cbs_inputMethodQuery_c2420_0, &_set_callback_cbs_inputMethodQuery_c2420_0);
|
|
methods += new qt_gsi::GenericMethod ("isObscuredBy", "@hide", true, &_init_cbs_isObscuredBy_c2614_0, &_call_cbs_isObscuredBy_c2614_0);
|
|
methods += new qt_gsi::GenericMethod ("isObscuredBy", "@brief Virtual method bool QGraphicsObject::isObscuredBy(const QGraphicsItem *item)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_isObscuredBy_c2614_0, &_call_cbs_isObscuredBy_c2614_0, &_set_callback_cbs_isObscuredBy_c2614_0);
|
|
methods += new qt_gsi::GenericMethod ("*itemChange", "@hide", false, &_init_cbs_itemChange_5658_0, &_call_cbs_itemChange_5658_0);
|
|
methods += new qt_gsi::GenericMethod ("*itemChange", "@brief Virtual method QVariant QGraphicsObject::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_itemChange_5658_0, &_call_cbs_itemChange_5658_0, &_set_callback_cbs_itemChange_5658_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyPressEvent", "@hide", false, &_init_cbs_keyPressEvent_1514_0, &_call_cbs_keyPressEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyPressEvent", "@brief Virtual method void QGraphicsObject::keyPressEvent(QKeyEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_keyPressEvent_1514_0, &_call_cbs_keyPressEvent_1514_0, &_set_callback_cbs_keyPressEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyReleaseEvent", "@hide", false, &_init_cbs_keyReleaseEvent_1514_0, &_call_cbs_keyReleaseEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyReleaseEvent", "@brief Virtual method void QGraphicsObject::keyReleaseEvent(QKeyEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_keyReleaseEvent_1514_0, &_call_cbs_keyReleaseEvent_1514_0, &_set_callback_cbs_keyReleaseEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseDoubleClickEvent", "@hide", false, &_init_cbs_mouseDoubleClickEvent_3049_0, &_call_cbs_mouseDoubleClickEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseDoubleClickEvent", "@brief Virtual method void QGraphicsObject::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseDoubleClickEvent_3049_0, &_call_cbs_mouseDoubleClickEvent_3049_0, &_set_callback_cbs_mouseDoubleClickEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseMoveEvent", "@hide", false, &_init_cbs_mouseMoveEvent_3049_0, &_call_cbs_mouseMoveEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseMoveEvent", "@brief Virtual method void QGraphicsObject::mouseMoveEvent(QGraphicsSceneMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseMoveEvent_3049_0, &_call_cbs_mouseMoveEvent_3049_0, &_set_callback_cbs_mouseMoveEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("*mousePressEvent", "@hide", false, &_init_cbs_mousePressEvent_3049_0, &_call_cbs_mousePressEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("*mousePressEvent", "@brief Virtual method void QGraphicsObject::mousePressEvent(QGraphicsSceneMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mousePressEvent_3049_0, &_call_cbs_mousePressEvent_3049_0, &_set_callback_cbs_mousePressEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseReleaseEvent", "@hide", false, &_init_cbs_mouseReleaseEvent_3049_0, &_call_cbs_mouseReleaseEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseReleaseEvent", "@brief Virtual method void QGraphicsObject::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseReleaseEvent_3049_0, &_call_cbs_mouseReleaseEvent_3049_0, &_set_callback_cbs_mouseReleaseEvent_3049_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_opacityChanged", "@brief Emitter for signal void QGraphicsObject::opacityChanged()\nCall this method to emit this signal.", false, &_init_emitter_opacityChanged_0, &_call_emitter_opacityChanged_0);
|
|
methods += new qt_gsi::GenericMethod ("opaqueArea", "@hide", true, &_init_cbs_opaqueArea_c0_0, &_call_cbs_opaqueArea_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Virtual method QPainterPath QGraphicsObject::opaqueArea()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_opaqueArea_c0_0, &_call_cbs_opaqueArea_c0_0, &_set_callback_cbs_opaqueArea_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("paint", "@hide", false, &_init_cbs_paint_6301_1, &_call_cbs_paint_6301_1);
|
|
methods += new qt_gsi::GenericMethod ("paint", "@brief Virtual method void QGraphicsObject::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_paint_6301_1, &_call_cbs_paint_6301_1, &_set_callback_cbs_paint_6301_1);
|
|
methods += new qt_gsi::GenericMethod ("emit_parentChanged", "@brief Emitter for signal void QGraphicsObject::parentChanged()\nCall this method to emit this signal.", false, &_init_emitter_parentChanged_0, &_call_emitter_parentChanged_0);
|
|
methods += new qt_gsi::GenericMethod ("*prepareGeometryChange", "@brief Method void QGraphicsObject::prepareGeometryChange()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_prepareGeometryChange_0, &_call_fp_prepareGeometryChange_0);
|
|
methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QGraphicsObject::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 ("*removeFromIndex", "@brief Method void QGraphicsObject::removeFromIndex()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_removeFromIndex_0, &_call_fp_removeFromIndex_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_rotationChanged", "@brief Emitter for signal void QGraphicsObject::rotationChanged()\nCall this method to emit this signal.", false, &_init_emitter_rotationChanged_0, &_call_emitter_rotationChanged_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_scaleChanged", "@brief Emitter for signal void QGraphicsObject::scaleChanged()\nCall this method to emit this signal.", false, &_init_emitter_scaleChanged_0, &_call_emitter_scaleChanged_0);
|
|
methods += new qt_gsi::GenericMethod ("*sceneEvent", "@hide", false, &_init_cbs_sceneEvent_1217_0, &_call_cbs_sceneEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*sceneEvent", "@brief Virtual method bool QGraphicsObject::sceneEvent(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_sceneEvent_1217_0, &_call_cbs_sceneEvent_1217_0, &_set_callback_cbs_sceneEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*sceneEventFilter", "@hide", false, &_init_cbs_sceneEventFilter_3028_0, &_call_cbs_sceneEventFilter_3028_0);
|
|
methods += new qt_gsi::GenericMethod ("*sceneEventFilter", "@brief Virtual method bool QGraphicsObject::sceneEventFilter(QGraphicsItem *watched, QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_sceneEventFilter_3028_0, &_call_cbs_sceneEventFilter_3028_0, &_set_callback_cbs_sceneEventFilter_3028_0);
|
|
methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QGraphicsObject::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 ("*setExtension", "@hide", false, &_init_cbs_setExtension_4817_0, &_call_cbs_setExtension_4817_0);
|
|
methods += new qt_gsi::GenericMethod ("*setExtension", "@brief Virtual method void QGraphicsObject::setExtension(QGraphicsItem::Extension extension, const QVariant &variant)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setExtension_4817_0, &_call_cbs_setExtension_4817_0, &_set_callback_cbs_setExtension_4817_0);
|
|
methods += new qt_gsi::GenericMethod ("shape", "@hide", true, &_init_cbs_shape_c0_0, &_call_cbs_shape_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("shape", "@brief Virtual method QPainterPath QGraphicsObject::shape()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_shape_c0_0, &_call_cbs_shape_c0_0, &_set_callback_cbs_shape_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*supportsExtension", "@hide", true, &_init_cbs_supportsExtension_c2806_0, &_call_cbs_supportsExtension_c2806_0);
|
|
methods += new qt_gsi::GenericMethod ("*supportsExtension", "@brief Virtual method bool QGraphicsObject::supportsExtension(QGraphicsItem::Extension extension)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_supportsExtension_c2806_0, &_call_cbs_supportsExtension_c2806_0, &_set_callback_cbs_supportsExtension_c2806_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 QGraphicsObject::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 ("type", "@hide", true, &_init_cbs_type_c0_0, &_call_cbs_type_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("type", "@brief Virtual method int QGraphicsObject::type()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_type_c0_0, &_call_cbs_type_c0_0, &_set_callback_cbs_type_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_visibleChanged", "@brief Emitter for signal void QGraphicsObject::visibleChanged()\nCall this method to emit this signal.", false, &_init_emitter_visibleChanged_0, &_call_emitter_visibleChanged_0);
|
|
methods += new qt_gsi::GenericMethod ("*wheelEvent", "@hide", false, &_init_cbs_wheelEvent_3029_0, &_call_cbs_wheelEvent_3029_0);
|
|
methods += new qt_gsi::GenericMethod ("*wheelEvent", "@brief Virtual method void QGraphicsObject::wheelEvent(QGraphicsSceneWheelEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_wheelEvent_3029_0, &_call_cbs_wheelEvent_3029_0, &_set_callback_cbs_wheelEvent_3029_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_xChanged", "@brief Emitter for signal void QGraphicsObject::xChanged()\nCall this method to emit this signal.", false, &_init_emitter_xChanged_0, &_call_emitter_xChanged_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_yChanged", "@brief Emitter for signal void QGraphicsObject::yChanged()\nCall this method to emit this signal.", false, &_init_emitter_yChanged_0, &_call_emitter_yChanged_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_zChanged", "@brief Emitter for signal void QGraphicsObject::zChanged()\nCall this method to emit this signal.", false, &_init_emitter_zChanged_0, &_call_emitter_zChanged_0);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QGraphicsObject_Adaptor> decl_QGraphicsObject_Adaptor (qtdecl_QGraphicsObject (), "QGraphicsObject",
|
|
methods_QGraphicsObject_Adaptor (),
|
|
"@qt\n@brief Binding of QGraphicsObject");
|
|
|
|
}
|
|
|