mirror of https://github.com/KLayout/klayout.git
2043 lines
89 KiB
C++
2043 lines
89 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 gsiDeclQGraphicsPixmapItem.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QGraphicsPixmapItem>
|
|
#include <QCursor>
|
|
#include <QEvent>
|
|
#include <QFocusEvent>
|
|
#include <QGraphicsEffect>
|
|
#include <QGraphicsItem>
|
|
#include <QGraphicsItemGroup>
|
|
#include <QGraphicsObject>
|
|
#include <QGraphicsScene>
|
|
#include <QGraphicsSceneContextMenuEvent>
|
|
#include <QGraphicsSceneDragDropEvent>
|
|
#include <QGraphicsSceneHoverEvent>
|
|
#include <QGraphicsSceneMouseEvent>
|
|
#include <QGraphicsSceneWheelEvent>
|
|
#include <QGraphicsWidget>
|
|
#include <QInputMethodEvent>
|
|
#include <QKeyEvent>
|
|
#include <QMatrix>
|
|
#include <QPainter>
|
|
#include <QPainterPath>
|
|
#include <QPixmap>
|
|
#include <QPointF>
|
|
#include <QPolygonF>
|
|
#include <QRectF>
|
|
#include <QRegion>
|
|
#include <QSize>
|
|
#include <QStyleOptionGraphicsItem>
|
|
#include <QTransform>
|
|
#include <QWidget>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QGraphicsPixmapItem
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_boundingRect_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QRectF > ();
|
|
}
|
|
|
|
static void _call_f_boundingRect_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QRectF > ((QRectF)((QGraphicsPixmapItem *)cls)->boundingRect ());
|
|
}
|
|
|
|
|
|
// (const QPointF &) const
|
|
|
|
|
|
static void _init_f_contains_c1986 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("point");
|
|
decl->add_arg<const QPointF & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_contains_c1986 (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)((QGraphicsPixmapItem *)cls)->contains (arg1));
|
|
}
|
|
|
|
|
|
// (const QGraphicsItem *) const
|
|
|
|
|
|
static void _init_f_isObscuredBy_c2614 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("item");
|
|
decl->add_arg<const QGraphicsItem * > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isObscuredBy_c2614 (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)((QGraphicsPixmapItem *)cls)->isObscuredBy (arg1));
|
|
}
|
|
|
|
|
|
// QPointF QGraphicsPixmapItem::offset()
|
|
|
|
|
|
static void _init_f_offset_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPointF > ();
|
|
}
|
|
|
|
static void _call_f_offset_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPointF > ((QPointF)((QGraphicsPixmapItem *)cls)->offset ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_opaqueArea_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPainterPath > ();
|
|
}
|
|
|
|
static void _call_f_opaqueArea_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPainterPath > ((QPainterPath)((QGraphicsPixmapItem *)cls)->opaqueArea ());
|
|
}
|
|
|
|
|
|
// (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)
|
|
|
|
|
|
static void _init_f_paint_6301 (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_f_paint_6301 (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);
|
|
((QGraphicsPixmapItem *)cls)->paint (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// QPixmap QGraphicsPixmapItem::pixmap()
|
|
|
|
|
|
static void _init_f_pixmap_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPixmap > ();
|
|
}
|
|
|
|
static void _call_f_pixmap_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPixmap > ((QPixmap)((QGraphicsPixmapItem *)cls)->pixmap ());
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::setOffset(const QPointF &offset)
|
|
|
|
|
|
static void _init_f_setOffset_1986 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("offset");
|
|
decl->add_arg<const QPointF & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setOffset_1986 (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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsPixmapItem *)cls)->setOffset (arg1);
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::setOffset(double x, double y)
|
|
|
|
|
|
static void _init_f_setOffset_2034 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<double > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("y");
|
|
decl->add_arg<double > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setOffset_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
double arg1 = args.read<double > (heap);
|
|
double arg2 = args.read<double > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsPixmapItem *)cls)->setOffset (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::setPixmap(const QPixmap &pixmap)
|
|
|
|
|
|
static void _init_f_setPixmap_2017 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pixmap");
|
|
decl->add_arg<const QPixmap & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPixmap &arg1 = args.read<const QPixmap & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsPixmapItem *)cls)->setPixmap (arg1);
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::setShapeMode(QGraphicsPixmapItem::ShapeMode mode)
|
|
|
|
|
|
static void _init_f_setShapeMode_3358 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<QGraphicsPixmapItem::ShapeMode>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setShapeMode_3358 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QGraphicsPixmapItem::ShapeMode>::target_type & arg1 = args.read<const qt_gsi::Converter<QGraphicsPixmapItem::ShapeMode>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsPixmapItem *)cls)->setShapeMode (qt_gsi::QtToCppAdaptor<QGraphicsPixmapItem::ShapeMode>(arg1).cref());
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::setTransformationMode(Qt::TransformationMode mode)
|
|
|
|
|
|
static void _init_f_setTransformationMode_2633 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("mode");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setTransformationMode_2633 (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::TransformationMode>::target_type & arg1 = args.read<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsPixmapItem *)cls)->setTransformationMode (qt_gsi::QtToCppAdaptor<Qt::TransformationMode>(arg1).cref());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_shape_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPainterPath > ();
|
|
}
|
|
|
|
static void _call_f_shape_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPainterPath > ((QPainterPath)((QGraphicsPixmapItem *)cls)->shape ());
|
|
}
|
|
|
|
|
|
// QGraphicsPixmapItem::ShapeMode QGraphicsPixmapItem::shapeMode()
|
|
|
|
|
|
static void _init_f_shapeMode_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qt_gsi::Converter<QGraphicsPixmapItem::ShapeMode>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_shapeMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qt_gsi::Converter<QGraphicsPixmapItem::ShapeMode>::target_type > ((qt_gsi::Converter<QGraphicsPixmapItem::ShapeMode>::target_type)qt_gsi::CppToQtAdaptor<QGraphicsPixmapItem::ShapeMode>(((QGraphicsPixmapItem *)cls)->shapeMode ()));
|
|
}
|
|
|
|
|
|
// Qt::TransformationMode QGraphicsPixmapItem::transformationMode()
|
|
|
|
|
|
static void _init_f_transformationMode_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qt_gsi::Converter<Qt::TransformationMode>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_transformationMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qt_gsi::Converter<Qt::TransformationMode>::target_type > ((qt_gsi::Converter<Qt::TransformationMode>::target_type)qt_gsi::CppToQtAdaptor<Qt::TransformationMode>(((QGraphicsPixmapItem *)cls)->transformationMode ()));
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_type_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_type_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QGraphicsPixmapItem *)cls)->type ());
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QGraphicsPixmapItem () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericMethod ("boundingRect", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::boundingRect", true, &_init_f_boundingRect_c0, &_call_f_boundingRect_c0);
|
|
methods += new qt_gsi::GenericMethod ("contains", "@brief Method (const QPointF &) const\nThis is a reimplementation of QGraphicsItem::contains", true, &_init_f_contains_c1986, &_call_f_contains_c1986);
|
|
methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QGraphicsItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614);
|
|
methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPointF QGraphicsPixmapItem::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0);
|
|
methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::opaqueArea", true, &_init_f_opaqueArea_c0, &_call_f_opaqueArea_c0);
|
|
methods += new qt_gsi::GenericMethod ("paint", "@brief Method (QPainter *, const QStyleOptionGraphicsItem *, QWidget *)\nThis is a reimplementation of QGraphicsItem::paint", false, &_init_f_paint_6301, &_call_f_paint_6301);
|
|
methods += new qt_gsi::GenericMethod (":pixmap", "@brief Method QPixmap QGraphicsPixmapItem::pixmap()\n", true, &_init_f_pixmap_c0, &_call_f_pixmap_c0);
|
|
methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QGraphicsPixmapItem::setOffset(const QPointF &offset)\n", false, &_init_f_setOffset_1986, &_call_f_setOffset_1986);
|
|
methods += new qt_gsi::GenericMethod ("setOffset", "@brief Method void QGraphicsPixmapItem::setOffset(double x, double y)\n", false, &_init_f_setOffset_2034, &_call_f_setOffset_2034);
|
|
methods += new qt_gsi::GenericMethod ("setPixmap|pixmap=", "@brief Method void QGraphicsPixmapItem::setPixmap(const QPixmap &pixmap)\n", false, &_init_f_setPixmap_2017, &_call_f_setPixmap_2017);
|
|
methods += new qt_gsi::GenericMethod ("setShapeMode|shapeMode=", "@brief Method void QGraphicsPixmapItem::setShapeMode(QGraphicsPixmapItem::ShapeMode mode)\n", false, &_init_f_setShapeMode_3358, &_call_f_setShapeMode_3358);
|
|
methods += new qt_gsi::GenericMethod ("setTransformationMode|transformationMode=", "@brief Method void QGraphicsPixmapItem::setTransformationMode(Qt::TransformationMode mode)\n", false, &_init_f_setTransformationMode_2633, &_call_f_setTransformationMode_2633);
|
|
methods += new qt_gsi::GenericMethod ("shape", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::shape", true, &_init_f_shape_c0, &_call_f_shape_c0);
|
|
methods += new qt_gsi::GenericMethod (":shapeMode", "@brief Method QGraphicsPixmapItem::ShapeMode QGraphicsPixmapItem::shapeMode()\n", true, &_init_f_shapeMode_c0, &_call_f_shapeMode_c0);
|
|
methods += new qt_gsi::GenericMethod (":transformationMode", "@brief Method Qt::TransformationMode QGraphicsPixmapItem::transformationMode()\n", true, &_init_f_transformationMode_c0, &_call_f_transformationMode_c0);
|
|
methods += new qt_gsi::GenericMethod ("type", "@brief Method () const\nThis is a reimplementation of QGraphicsItem::type", true, &_init_f_type_c0, &_call_f_type_c0);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QGraphicsItem> &qtdecl_QGraphicsItem ();
|
|
|
|
gsi::Class<QGraphicsPixmapItem> decl_QGraphicsPixmapItem (qtdecl_QGraphicsItem (), "QGraphicsPixmapItem_Native",
|
|
methods_QGraphicsPixmapItem (),
|
|
"@hide\n@alias QGraphicsPixmapItem");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QGraphicsPixmapItem> &qtdecl_QGraphicsPixmapItem () { return decl_QGraphicsPixmapItem; }
|
|
|
|
}
|
|
|
|
|
|
class QGraphicsPixmapItem_Adaptor : public QGraphicsPixmapItem, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QGraphicsPixmapItem_Adaptor();
|
|
|
|
// [adaptor ctor] QGraphicsPixmapItem::QGraphicsPixmapItem(QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsPixmapItem_Adaptor() : QGraphicsPixmapItem()
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsPixmapItem::QGraphicsPixmapItem(QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsPixmapItem_Adaptor(QGraphicsItem *parent) : QGraphicsPixmapItem(parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsPixmapItem::QGraphicsPixmapItem(QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsPixmapItem_Adaptor(QGraphicsItem *parent, QGraphicsScene *scene) : QGraphicsPixmapItem(parent, scene)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsPixmapItem::QGraphicsPixmapItem(const QPixmap &pixmap, QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsPixmapItem_Adaptor(const QPixmap &pixmap) : QGraphicsPixmapItem(pixmap)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsPixmapItem::QGraphicsPixmapItem(const QPixmap &pixmap, QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsPixmapItem_Adaptor(const QPixmap &pixmap, QGraphicsItem *parent) : QGraphicsPixmapItem(pixmap, parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsPixmapItem::QGraphicsPixmapItem(const QPixmap &pixmap, QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsPixmapItem_Adaptor(const QPixmap &pixmap, QGraphicsItem *parent, QGraphicsScene *scene) : QGraphicsPixmapItem(pixmap, parent, scene)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [expose] void QGraphicsPixmapItem::addToIndex()
|
|
void fp_QGraphicsPixmapItem_addToIndex_0 () {
|
|
QGraphicsPixmapItem::addToIndex();
|
|
}
|
|
|
|
// [expose] void QGraphicsPixmapItem::prepareGeometryChange()
|
|
void fp_QGraphicsPixmapItem_prepareGeometryChange_0 () {
|
|
QGraphicsPixmapItem::prepareGeometryChange();
|
|
}
|
|
|
|
// [expose] void QGraphicsPixmapItem::removeFromIndex()
|
|
void fp_QGraphicsPixmapItem_removeFromIndex_0 () {
|
|
QGraphicsPixmapItem::removeFromIndex();
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::advance(int phase)
|
|
void cbs_advance_767_0(int phase)
|
|
{
|
|
QGraphicsPixmapItem::advance(phase);
|
|
}
|
|
|
|
virtual void advance(int phase)
|
|
{
|
|
if (cb_advance_767_0.can_issue()) {
|
|
cb_advance_767_0.issue<QGraphicsPixmapItem_Adaptor, int>(&QGraphicsPixmapItem_Adaptor::cbs_advance_767_0, phase);
|
|
} else {
|
|
QGraphicsPixmapItem::advance(phase);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRectF QGraphicsPixmapItem::boundingRect()
|
|
QRectF cbs_boundingRect_c0_0() const
|
|
{
|
|
return QGraphicsPixmapItem::boundingRect();
|
|
}
|
|
|
|
virtual QRectF boundingRect() const
|
|
{
|
|
if (cb_boundingRect_c0_0.can_issue()) {
|
|
return cb_boundingRect_c0_0.issue<QGraphicsPixmapItem_Adaptor, QRectF>(&QGraphicsPixmapItem_Adaptor::cbs_boundingRect_c0_0);
|
|
} else {
|
|
return QGraphicsPixmapItem::boundingRect();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsPixmapItem::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 QGraphicsPixmapItem::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<QGraphicsPixmapItem_Adaptor, bool, const QGraphicsItem *, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type &>(&QGraphicsPixmapItem_Adaptor::cbs_collidesWithItem_c4977_1, other, qt_gsi::CppToQtAdaptor<Qt::ItemSelectionMode>(mode));
|
|
} else {
|
|
return QGraphicsPixmapItem::collidesWithItem(other, mode);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsPixmapItem::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 QGraphicsPixmapItem::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<QGraphicsPixmapItem_Adaptor, bool, const QPainterPath &, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type &>(&QGraphicsPixmapItem_Adaptor::cbs_collidesWithPath_c4877_1, path, qt_gsi::CppToQtAdaptor<Qt::ItemSelectionMode>(mode));
|
|
} else {
|
|
return QGraphicsPixmapItem::collidesWithPath(path, mode);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsPixmapItem::contains(const QPointF &point)
|
|
bool cbs_contains_c1986_0(const QPointF &point) const
|
|
{
|
|
return QGraphicsPixmapItem::contains(point);
|
|
}
|
|
|
|
virtual bool contains(const QPointF &point) const
|
|
{
|
|
if (cb_contains_c1986_0.can_issue()) {
|
|
return cb_contains_c1986_0.issue<QGraphicsPixmapItem_Adaptor, bool, const QPointF &>(&QGraphicsPixmapItem_Adaptor::cbs_contains_c1986_0, point);
|
|
} else {
|
|
return QGraphicsPixmapItem::contains(point);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsPixmapItem::isObscuredBy(const QGraphicsItem *item)
|
|
bool cbs_isObscuredBy_c2614_0(const QGraphicsItem *item) const
|
|
{
|
|
return QGraphicsPixmapItem::isObscuredBy(item);
|
|
}
|
|
|
|
virtual bool isObscuredBy(const QGraphicsItem *item) const
|
|
{
|
|
if (cb_isObscuredBy_c2614_0.can_issue()) {
|
|
return cb_isObscuredBy_c2614_0.issue<QGraphicsPixmapItem_Adaptor, bool, const QGraphicsItem *>(&QGraphicsPixmapItem_Adaptor::cbs_isObscuredBy_c2614_0, item);
|
|
} else {
|
|
return QGraphicsPixmapItem::isObscuredBy(item);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPainterPath QGraphicsPixmapItem::opaqueArea()
|
|
QPainterPath cbs_opaqueArea_c0_0() const
|
|
{
|
|
return QGraphicsPixmapItem::opaqueArea();
|
|
}
|
|
|
|
virtual QPainterPath opaqueArea() const
|
|
{
|
|
if (cb_opaqueArea_c0_0.can_issue()) {
|
|
return cb_opaqueArea_c0_0.issue<QGraphicsPixmapItem_Adaptor, QPainterPath>(&QGraphicsPixmapItem_Adaptor::cbs_opaqueArea_c0_0);
|
|
} else {
|
|
return QGraphicsPixmapItem::opaqueArea();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
void cbs_paint_6301_0(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
{
|
|
QGraphicsPixmapItem::paint(painter, option, widget);
|
|
}
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
{
|
|
if (cb_paint_6301_0.can_issue()) {
|
|
cb_paint_6301_0.issue<QGraphicsPixmapItem_Adaptor, QPainter *, const QStyleOptionGraphicsItem *, QWidget *>(&QGraphicsPixmapItem_Adaptor::cbs_paint_6301_0, painter, option, widget);
|
|
} else {
|
|
QGraphicsPixmapItem::paint(painter, option, widget);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPainterPath QGraphicsPixmapItem::shape()
|
|
QPainterPath cbs_shape_c0_0() const
|
|
{
|
|
return QGraphicsPixmapItem::shape();
|
|
}
|
|
|
|
virtual QPainterPath shape() const
|
|
{
|
|
if (cb_shape_c0_0.can_issue()) {
|
|
return cb_shape_c0_0.issue<QGraphicsPixmapItem_Adaptor, QPainterPath>(&QGraphicsPixmapItem_Adaptor::cbs_shape_c0_0);
|
|
} else {
|
|
return QGraphicsPixmapItem::shape();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QGraphicsPixmapItem::type()
|
|
int cbs_type_c0_0() const
|
|
{
|
|
return QGraphicsPixmapItem::type();
|
|
}
|
|
|
|
virtual int type() const
|
|
{
|
|
if (cb_type_c0_0.can_issue()) {
|
|
return cb_type_c0_0.issue<QGraphicsPixmapItem_Adaptor, int>(&QGraphicsPixmapItem_Adaptor::cbs_type_c0_0);
|
|
} else {
|
|
return QGraphicsPixmapItem::type();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
void cbs_contextMenuEvent_3674_0(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::contextMenuEvent(event);
|
|
}
|
|
|
|
virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
if (cb_contextMenuEvent_3674_0.can_issue()) {
|
|
cb_contextMenuEvent_3674_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneContextMenuEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_contextMenuEvent_3674_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::contextMenuEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragEnterEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::dragEnterEvent(event);
|
|
}
|
|
|
|
virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragEnterEvent_3315_0.can_issue()) {
|
|
cb_dragEnterEvent_3315_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_dragEnterEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::dragEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragLeaveEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::dragLeaveEvent(event);
|
|
}
|
|
|
|
virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragLeaveEvent_3315_0.can_issue()) {
|
|
cb_dragLeaveEvent_3315_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_dragLeaveEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::dragLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragMoveEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::dragMoveEvent(event);
|
|
}
|
|
|
|
virtual void dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragMoveEvent_3315_0.can_issue()) {
|
|
cb_dragMoveEvent_3315_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_dragMoveEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::dragMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dropEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::dropEvent(event);
|
|
}
|
|
|
|
virtual void dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dropEvent_3315_0.can_issue()) {
|
|
cb_dropEvent_3315_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_dropEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::dropEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsPixmapItem::extension(const QVariant &variant)
|
|
QVariant cbs_extension_c2119_0(const QVariant &variant) const
|
|
{
|
|
return QGraphicsPixmapItem::extension(variant);
|
|
}
|
|
|
|
virtual QVariant extension(const QVariant &variant) const
|
|
{
|
|
if (cb_extension_c2119_0.can_issue()) {
|
|
return cb_extension_c2119_0.issue<QGraphicsPixmapItem_Adaptor, QVariant, const QVariant &>(&QGraphicsPixmapItem_Adaptor::cbs_extension_c2119_0, variant);
|
|
} else {
|
|
return QGraphicsPixmapItem::extension(variant);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::focusInEvent(QFocusEvent *event)
|
|
void cbs_focusInEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::focusInEvent(event);
|
|
}
|
|
|
|
virtual void focusInEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusInEvent_1729_0.can_issue()) {
|
|
cb_focusInEvent_1729_0.issue<QGraphicsPixmapItem_Adaptor, QFocusEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_focusInEvent_1729_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::focusInEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::focusOutEvent(QFocusEvent *event)
|
|
void cbs_focusOutEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::focusOutEvent(event);
|
|
}
|
|
|
|
virtual void focusOutEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusOutEvent_1729_0.can_issue()) {
|
|
cb_focusOutEvent_1729_0.issue<QGraphicsPixmapItem_Adaptor, QFocusEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_focusOutEvent_1729_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::focusOutEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverEnterEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::hoverEnterEvent(event);
|
|
}
|
|
|
|
virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverEnterEvent_3044_0.can_issue()) {
|
|
cb_hoverEnterEvent_3044_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_hoverEnterEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::hoverEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverLeaveEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::hoverLeaveEvent(event);
|
|
}
|
|
|
|
virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverLeaveEvent_3044_0.can_issue()) {
|
|
cb_hoverLeaveEvent_3044_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_hoverLeaveEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::hoverLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverMoveEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::hoverMoveEvent(event);
|
|
}
|
|
|
|
virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverMoveEvent_3044_0.can_issue()) {
|
|
cb_hoverMoveEvent_3044_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_hoverMoveEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::hoverMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::inputMethodEvent(QInputMethodEvent *event)
|
|
void cbs_inputMethodEvent_2354_0(QInputMethodEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::inputMethodEvent(event);
|
|
}
|
|
|
|
virtual void inputMethodEvent(QInputMethodEvent *event)
|
|
{
|
|
if (cb_inputMethodEvent_2354_0.can_issue()) {
|
|
cb_inputMethodEvent_2354_0.issue<QGraphicsPixmapItem_Adaptor, QInputMethodEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_inputMethodEvent_2354_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::inputMethodEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsPixmapItem::inputMethodQuery(Qt::InputMethodQuery query)
|
|
QVariant cbs_inputMethodQuery_c2420_0(const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & query) const
|
|
{
|
|
return QGraphicsPixmapItem::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<QGraphicsPixmapItem_Adaptor, QVariant, const qt_gsi::Converter<Qt::InputMethodQuery>::target_type &>(&QGraphicsPixmapItem_Adaptor::cbs_inputMethodQuery_c2420_0, qt_gsi::CppToQtAdaptor<Qt::InputMethodQuery>(query));
|
|
} else {
|
|
return QGraphicsPixmapItem::inputMethodQuery(query);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsPixmapItem::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 QGraphicsPixmapItem::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<QGraphicsPixmapItem_Adaptor, QVariant, const qt_gsi::Converter<QGraphicsItem::GraphicsItemChange>::target_type &, const QVariant &>(&QGraphicsPixmapItem_Adaptor::cbs_itemChange_5658_0, qt_gsi::CppToQtAdaptor<QGraphicsItem::GraphicsItemChange>(change), value);
|
|
} else {
|
|
return QGraphicsPixmapItem::itemChange(change, value);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::keyPressEvent(QKeyEvent *event)
|
|
void cbs_keyPressEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::keyPressEvent(event);
|
|
}
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyPressEvent_1514_0.can_issue()) {
|
|
cb_keyPressEvent_1514_0.issue<QGraphicsPixmapItem_Adaptor, QKeyEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_keyPressEvent_1514_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::keyPressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::keyReleaseEvent(QKeyEvent *event)
|
|
void cbs_keyReleaseEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::keyReleaseEvent(event);
|
|
}
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyReleaseEvent_1514_0.can_issue()) {
|
|
cb_keyReleaseEvent_1514_0.issue<QGraphicsPixmapItem_Adaptor, QKeyEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_keyReleaseEvent_1514_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::keyReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseDoubleClickEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::mouseDoubleClickEvent(event);
|
|
}
|
|
|
|
virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseDoubleClickEvent_3049_0.can_issue()) {
|
|
cb_mouseDoubleClickEvent_3049_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_mouseDoubleClickEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::mouseDoubleClickEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseMoveEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::mouseMoveEvent(event);
|
|
}
|
|
|
|
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseMoveEvent_3049_0.can_issue()) {
|
|
cb_mouseMoveEvent_3049_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_mouseMoveEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::mouseMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mousePressEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::mousePressEvent(event);
|
|
}
|
|
|
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mousePressEvent_3049_0.can_issue()) {
|
|
cb_mousePressEvent_3049_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_mousePressEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::mousePressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseReleaseEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::mouseReleaseEvent(event);
|
|
}
|
|
|
|
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseReleaseEvent_3049_0.can_issue()) {
|
|
cb_mouseReleaseEvent_3049_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_mouseReleaseEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::mouseReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsPixmapItem::sceneEvent(QEvent *event)
|
|
bool cbs_sceneEvent_1217_0(QEvent *event)
|
|
{
|
|
return QGraphicsPixmapItem::sceneEvent(event);
|
|
}
|
|
|
|
virtual bool sceneEvent(QEvent *event)
|
|
{
|
|
if (cb_sceneEvent_1217_0.can_issue()) {
|
|
return cb_sceneEvent_1217_0.issue<QGraphicsPixmapItem_Adaptor, bool, QEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_sceneEvent_1217_0, event);
|
|
} else {
|
|
return QGraphicsPixmapItem::sceneEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsPixmapItem::sceneEventFilter(QGraphicsItem *watched, QEvent *event)
|
|
bool cbs_sceneEventFilter_3028_0(QGraphicsItem *watched, QEvent *event)
|
|
{
|
|
return QGraphicsPixmapItem::sceneEventFilter(watched, event);
|
|
}
|
|
|
|
virtual bool sceneEventFilter(QGraphicsItem *watched, QEvent *event)
|
|
{
|
|
if (cb_sceneEventFilter_3028_0.can_issue()) {
|
|
return cb_sceneEventFilter_3028_0.issue<QGraphicsPixmapItem_Adaptor, bool, QGraphicsItem *, QEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_sceneEventFilter_3028_0, watched, event);
|
|
} else {
|
|
return QGraphicsPixmapItem::sceneEventFilter(watched, event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::setExtension(QGraphicsItem::Extension extension, const QVariant &variant)
|
|
void cbs_setExtension_4817_0(unsigned int extension, const QVariant &variant)
|
|
{
|
|
QGraphicsPixmapItem::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<QGraphicsPixmapItem_Adaptor, unsigned int, const QVariant &>(&QGraphicsPixmapItem_Adaptor::cbs_setExtension_4817_0, (unsigned int)(extension), variant);
|
|
} else {
|
|
QGraphicsPixmapItem::setExtension(extension, variant);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extension extension)
|
|
bool cbs_supportsExtension_c2806_0(unsigned int extension) const
|
|
{
|
|
return QGraphicsPixmapItem::supportsExtension(QGraphicsItem::Extension(extension));
|
|
}
|
|
|
|
virtual bool supportsExtension(QGraphicsItem::Extension extension) const
|
|
{
|
|
if (cb_supportsExtension_c2806_0.can_issue()) {
|
|
return cb_supportsExtension_c2806_0.issue<QGraphicsPixmapItem_Adaptor, bool, unsigned int>(&QGraphicsPixmapItem_Adaptor::cbs_supportsExtension_c2806_0, (unsigned int)(extension));
|
|
} else {
|
|
return QGraphicsPixmapItem::supportsExtension(extension);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsPixmapItem::wheelEvent(QGraphicsSceneWheelEvent *event)
|
|
void cbs_wheelEvent_3029_0(QGraphicsSceneWheelEvent *event)
|
|
{
|
|
QGraphicsPixmapItem::wheelEvent(event);
|
|
}
|
|
|
|
virtual void wheelEvent(QGraphicsSceneWheelEvent *event)
|
|
{
|
|
if (cb_wheelEvent_3029_0.can_issue()) {
|
|
cb_wheelEvent_3029_0.issue<QGraphicsPixmapItem_Adaptor, QGraphicsSceneWheelEvent *>(&QGraphicsPixmapItem_Adaptor::cbs_wheelEvent_3029_0, event);
|
|
} else {
|
|
QGraphicsPixmapItem::wheelEvent(event);
|
|
}
|
|
}
|
|
|
|
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_isObscuredBy_c2614_0;
|
|
gsi::Callback cb_opaqueArea_c0_0;
|
|
gsi::Callback cb_paint_6301_0;
|
|
gsi::Callback cb_shape_c0_0;
|
|
gsi::Callback cb_type_c0_0;
|
|
gsi::Callback cb_contextMenuEvent_3674_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_wheelEvent_3029_0;
|
|
};
|
|
|
|
QGraphicsPixmapItem_Adaptor::~QGraphicsPixmapItem_Adaptor() { }
|
|
|
|
// Constructor QGraphicsPixmapItem::QGraphicsPixmapItem(QGraphicsItem *parent, QGraphicsScene *scene) (adaptor class)
|
|
|
|
static void _init_ctor_QGraphicsPixmapItem_Adaptor_3825 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
|
|
decl->add_arg<QGraphicsItem * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("scene", true, "0");
|
|
decl->add_arg<QGraphicsScene * > (argspec_1);
|
|
decl->set_return_new<QGraphicsPixmapItem_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QGraphicsPixmapItem_Adaptor_3825 (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);
|
|
QGraphicsScene *arg2 = args ? args.read<QGraphicsScene * > (heap) : (QGraphicsScene *)(0);
|
|
ret.write<QGraphicsPixmapItem_Adaptor *> (new QGraphicsPixmapItem_Adaptor (arg1, arg2));
|
|
}
|
|
|
|
|
|
// Constructor QGraphicsPixmapItem::QGraphicsPixmapItem(const QPixmap &pixmap, QGraphicsItem *parent, QGraphicsScene *scene) (adaptor class)
|
|
|
|
static void _init_ctor_QGraphicsPixmapItem_Adaptor_5734 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pixmap");
|
|
decl->add_arg<const QPixmap & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("parent", true, "0");
|
|
decl->add_arg<QGraphicsItem * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("scene", true, "0");
|
|
decl->add_arg<QGraphicsScene * > (argspec_2);
|
|
decl->set_return_new<QGraphicsPixmapItem_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QGraphicsPixmapItem_Adaptor_5734 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPixmap &arg1 = args.read<const QPixmap & > (heap);
|
|
QGraphicsItem *arg2 = args ? args.read<QGraphicsItem * > (heap) : (QGraphicsItem *)(0);
|
|
QGraphicsScene *arg3 = args ? args.read<QGraphicsScene * > (heap) : (QGraphicsScene *)(0);
|
|
ret.write<QGraphicsPixmapItem_Adaptor *> (new QGraphicsPixmapItem_Adaptor (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->fp_QGraphicsPixmapItem_addToIndex_0 ();
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_advance_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_advance_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_advance_767_0 = cb;
|
|
}
|
|
|
|
|
|
// QRectF QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_boundingRect_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_boundingRect_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_boundingRect_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_collidesWithItem_c4977_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_collidesWithItem_c4977_1 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_collidesWithPath_c4877_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_collidesWithPath_c4877_1 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_contains_c1986_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_contains_c1986_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_contextMenuEvent_3674_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_contextMenuEvent_3674_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragEnterEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_dragEnterEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragLeaveEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_dragLeaveEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragMoveEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_dragMoveEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dropEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_dropEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_extension_c2119_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_extension_c2119_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusInEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_focusInEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusOutEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_focusOutEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverEnterEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_hoverEnterEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverLeaveEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_hoverLeaveEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverMoveEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_hoverMoveEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodEvent_2354_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_inputMethodEvent_2354_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodQuery_c2420_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_inputMethodQuery_c2420_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_isObscuredBy_c2614_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_isObscuredBy_c2614_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_itemChange_5658_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_itemChange_5658_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyPressEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_keyPressEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyReleaseEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_keyReleaseEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseDoubleClickEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_mouseDoubleClickEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseMoveEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_mouseMoveEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mousePressEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_mousePressEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseReleaseEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_mouseReleaseEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// QPainterPath QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_opaqueArea_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_opaqueArea_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_opaqueArea_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
|
|
static void _init_cbs_paint_6301_0 (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_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QPainter *arg1 = args.read<QPainter * > (heap);
|
|
const QStyleOptionGraphicsItem *arg2 = args.read<const QStyleOptionGraphicsItem * > (heap);
|
|
QWidget *arg3 = args.read<QWidget * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_paint_6301_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_paint_6301_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->fp_QGraphicsPixmapItem_prepareGeometryChange_0 ();
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->fp_QGraphicsPixmapItem_removeFromIndex_0 ();
|
|
}
|
|
|
|
|
|
// bool QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sceneEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_sceneEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_sceneEventFilter_3028_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_sceneEventFilter_3028_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_setExtension_4817_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_setExtension_4817_0 = cb;
|
|
}
|
|
|
|
|
|
// QPainterPath QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_shape_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_shape_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_shape_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_supportsExtension_c2806_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_supportsExtension_c2806_0 = cb;
|
|
}
|
|
|
|
|
|
// int QGraphicsPixmapItem::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)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_type_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_type_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_type_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsPixmapItem::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);
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_wheelEvent_3029_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsPixmapItem_Adaptor *)cls)->cb_wheelEvent_3029_0 = cb;
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QGraphicsPixmapItem> &qtdecl_QGraphicsPixmapItem ();
|
|
|
|
static gsi::Methods methods_QGraphicsPixmapItem_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QGraphicsPixmapItem::QGraphicsPixmapItem(QGraphicsItem *parent, QGraphicsScene *scene)\nThis method creates an object of class QGraphicsPixmapItem.", &_init_ctor_QGraphicsPixmapItem_Adaptor_3825, &_call_ctor_QGraphicsPixmapItem_Adaptor_3825);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QGraphicsPixmapItem::QGraphicsPixmapItem(const QPixmap &pixmap, QGraphicsItem *parent, QGraphicsScene *scene)\nThis method creates an object of class QGraphicsPixmapItem.", &_init_ctor_QGraphicsPixmapItem_Adaptor_5734, &_call_ctor_QGraphicsPixmapItem_Adaptor_5734);
|
|
methods += new qt_gsi::GenericMethod ("*addToIndex", "@brief Method void QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 ("collidesWithItem", "@hide", true, &_init_cbs_collidesWithItem_c4977_1, &_call_cbs_collidesWithItem_c4977_1);
|
|
methods += new qt_gsi::GenericMethod ("collidesWithItem", "@brief Virtual method bool QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 ("*dragEnterEvent", "@hide", false, &_init_cbs_dragEnterEvent_3315_0, &_call_cbs_dragEnterEvent_3315_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragEnterEvent", "@brief Virtual method void QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 ("*extension", "@hide", true, &_init_cbs_extension_c2119_0, &_call_cbs_extension_c2119_0);
|
|
methods += new qt_gsi::GenericMethod ("*extension", "@brief Virtual method QVariant QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 ("opaqueArea", "@hide", true, &_init_cbs_opaqueArea_c0_0, &_call_cbs_opaqueArea_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Virtual method QPainterPath QGraphicsPixmapItem::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_0, &_call_cbs_paint_6301_0);
|
|
methods += new qt_gsi::GenericMethod ("paint", "@brief Virtual method void QGraphicsPixmapItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_paint_6301_0, &_call_cbs_paint_6301_0, &_set_callback_cbs_paint_6301_0);
|
|
methods += new qt_gsi::GenericMethod ("*prepareGeometryChange", "@brief Method void QGraphicsPixmapItem::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 ("*removeFromIndex", "@brief Method void QGraphicsPixmapItem::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 ("*sceneEvent", "@hide", false, &_init_cbs_sceneEvent_1217_0, &_call_cbs_sceneEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*sceneEvent", "@brief Virtual method bool QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 ("*setExtension", "@hide", false, &_init_cbs_setExtension_4817_0, &_call_cbs_setExtension_4817_0);
|
|
methods += new qt_gsi::GenericMethod ("*setExtension", "@brief Virtual method void QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 QGraphicsPixmapItem::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 ("type", "@hide", true, &_init_cbs_type_c0_0, &_call_cbs_type_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("type", "@brief Virtual method int QGraphicsPixmapItem::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 ("*wheelEvent", "@hide", false, &_init_cbs_wheelEvent_3029_0, &_call_cbs_wheelEvent_3029_0);
|
|
methods += new qt_gsi::GenericMethod ("*wheelEvent", "@brief Virtual method void QGraphicsPixmapItem::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);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QGraphicsPixmapItem_Adaptor> decl_QGraphicsPixmapItem_Adaptor (qtdecl_QGraphicsPixmapItem (), "QGraphicsPixmapItem",
|
|
methods_QGraphicsPixmapItem_Adaptor (),
|
|
"@qt\n@brief Binding of QGraphicsPixmapItem");
|
|
|
|
}
|
|
|
|
|
|
// Implementation of the enum wrapper class for QGraphicsPixmapItem::ShapeMode
|
|
namespace qt_gsi
|
|
{
|
|
|
|
static gsi::Enum<QGraphicsPixmapItem::ShapeMode> decl_QGraphicsPixmapItem_ShapeMode_Enum ("QGraphicsPixmapItem_ShapeMode",
|
|
gsi::enum_const ("MaskShape", QGraphicsPixmapItem::MaskShape, "@brief Enum constant QGraphicsPixmapItem::MaskShape") +
|
|
gsi::enum_const ("BoundingRectShape", QGraphicsPixmapItem::BoundingRectShape, "@brief Enum constant QGraphicsPixmapItem::BoundingRectShape") +
|
|
gsi::enum_const ("HeuristicMaskShape", QGraphicsPixmapItem::HeuristicMaskShape, "@brief Enum constant QGraphicsPixmapItem::HeuristicMaskShape"),
|
|
"@qt\n@brief This class represents the QGraphicsPixmapItem::ShapeMode enum");
|
|
|
|
static gsi::QFlagsClass<QGraphicsPixmapItem::ShapeMode > decl_QGraphicsPixmapItem_ShapeMode_Enums ("QGraphicsPixmapItem_QFlags_ShapeMode",
|
|
"@qt\n@brief This class represents the QFlags<QGraphicsPixmapItem::ShapeMode> flag set");
|
|
|
|
// Inject the declarations into the parent
|
|
static gsi::ClassExt<QGraphicsPixmapItem> inject_QGraphicsPixmapItem_ShapeMode_Enum_in_parent (decl_QGraphicsPixmapItem_ShapeMode_Enum.defs ());
|
|
static gsi::ClassExt<QGraphicsPixmapItem> decl_QGraphicsPixmapItem_ShapeMode_Enum_as_child (decl_QGraphicsPixmapItem_ShapeMode_Enum, "ShapeMode");
|
|
static gsi::ClassExt<QGraphicsPixmapItem> decl_QGraphicsPixmapItem_ShapeMode_Enums_as_child (decl_QGraphicsPixmapItem_ShapeMode_Enums, "QFlags_ShapeMode");
|
|
|
|
}
|
|
|