mirror of https://github.com/KLayout/klayout.git
1926 lines
85 KiB
C++
1926 lines
85 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 gsiDeclQGraphicsSimpleTextItem.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QGraphicsSimpleTextItem>
|
|
#include <QBrush>
|
|
#include <QCursor>
|
|
#include <QEvent>
|
|
#include <QFocusEvent>
|
|
#include <QFont>
|
|
#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 <QPen>
|
|
#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 QGraphicsSimpleTextItem
|
|
|
|
// () 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)((QGraphicsSimpleTextItem *)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)((QGraphicsSimpleTextItem *)cls)->contains (arg1));
|
|
}
|
|
|
|
|
|
// QFont QGraphicsSimpleTextItem::font()
|
|
|
|
|
|
static void _init_f_font_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QFont > ();
|
|
}
|
|
|
|
static void _call_f_font_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QFont > ((QFont)((QGraphicsSimpleTextItem *)cls)->font ());
|
|
}
|
|
|
|
|
|
// (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)((QGraphicsSimpleTextItem *)cls)->isObscuredBy (arg1));
|
|
}
|
|
|
|
|
|
// () 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)((QGraphicsSimpleTextItem *)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);
|
|
((QGraphicsSimpleTextItem *)cls)->paint (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::setFont(const QFont &font)
|
|
|
|
|
|
static void _init_f_setFont_1801 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("font");
|
|
decl->add_arg<const QFont & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QFont &arg1 = args.read<const QFont & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsSimpleTextItem *)cls)->setFont (arg1);
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::setText(const QString &text)
|
|
|
|
|
|
static void _init_f_setText_2025 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("text");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QString &arg1 = args.read<const QString & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QGraphicsSimpleTextItem *)cls)->setText (arg1);
|
|
}
|
|
|
|
|
|
// () 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)((QGraphicsSimpleTextItem *)cls)->shape ());
|
|
}
|
|
|
|
|
|
// QString QGraphicsSimpleTextItem::text()
|
|
|
|
|
|
static void _init_f_text_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_text_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QString > ((QString)((QGraphicsSimpleTextItem *)cls)->text ());
|
|
}
|
|
|
|
|
|
// () 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)((QGraphicsSimpleTextItem *)cls)->type ());
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QGraphicsSimpleTextItem () {
|
|
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 (":font", "@brief Method QFont QGraphicsSimpleTextItem::font()\n", true, &_init_f_font_c0, &_call_f_font_c0);
|
|
methods += new qt_gsi::GenericMethod ("isObscuredBy?", "@brief Method (const QGraphicsItem *) const\nThis is a reimplementation of QAbstractGraphicsShapeItem::isObscuredBy", true, &_init_f_isObscuredBy_c2614, &_call_f_isObscuredBy_c2614);
|
|
methods += new qt_gsi::GenericMethod ("opaqueArea", "@brief Method () const\nThis is a reimplementation of QAbstractGraphicsShapeItem::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 ("setFont|font=", "@brief Method void QGraphicsSimpleTextItem::setFont(const QFont &font)\n", false, &_init_f_setFont_1801, &_call_f_setFont_1801);
|
|
methods += new qt_gsi::GenericMethod ("setText|text=", "@brief Method void QGraphicsSimpleTextItem::setText(const QString &text)\n", false, &_init_f_setText_2025, &_call_f_setText_2025);
|
|
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 (":text", "@brief Method QString QGraphicsSimpleTextItem::text()\n", true, &_init_f_text_c0, &_call_f_text_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<QAbstractGraphicsShapeItem> &qtdecl_QAbstractGraphicsShapeItem ();
|
|
|
|
gsi::Class<QGraphicsSimpleTextItem> decl_QGraphicsSimpleTextItem (qtdecl_QAbstractGraphicsShapeItem (), "QGraphicsSimpleTextItem_Native",
|
|
methods_QGraphicsSimpleTextItem (),
|
|
"@hide\n@alias QGraphicsSimpleTextItem");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QGraphicsSimpleTextItem> &qtdecl_QGraphicsSimpleTextItem () { return decl_QGraphicsSimpleTextItem; }
|
|
|
|
}
|
|
|
|
|
|
class QGraphicsSimpleTextItem_Adaptor : public QGraphicsSimpleTextItem, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QGraphicsSimpleTextItem_Adaptor();
|
|
|
|
// [adaptor ctor] QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsSimpleTextItem_Adaptor() : QGraphicsSimpleTextItem()
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsSimpleTextItem_Adaptor(QGraphicsItem *parent) : QGraphicsSimpleTextItem(parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsSimpleTextItem_Adaptor(QGraphicsItem *parent, QGraphicsScene *scene) : QGraphicsSimpleTextItem(parent, scene)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(const QString &text, QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsSimpleTextItem_Adaptor(const QString &text) : QGraphicsSimpleTextItem(text)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(const QString &text, QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsSimpleTextItem_Adaptor(const QString &text, QGraphicsItem *parent) : QGraphicsSimpleTextItem(text, parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(const QString &text, QGraphicsItem *parent, QGraphicsScene *scene)
|
|
QGraphicsSimpleTextItem_Adaptor(const QString &text, QGraphicsItem *parent, QGraphicsScene *scene) : QGraphicsSimpleTextItem(text, parent, scene)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [expose] void QGraphicsSimpleTextItem::addToIndex()
|
|
void fp_QGraphicsSimpleTextItem_addToIndex_0 () {
|
|
QGraphicsSimpleTextItem::addToIndex();
|
|
}
|
|
|
|
// [expose] void QGraphicsSimpleTextItem::prepareGeometryChange()
|
|
void fp_QGraphicsSimpleTextItem_prepareGeometryChange_0 () {
|
|
QGraphicsSimpleTextItem::prepareGeometryChange();
|
|
}
|
|
|
|
// [expose] void QGraphicsSimpleTextItem::removeFromIndex()
|
|
void fp_QGraphicsSimpleTextItem_removeFromIndex_0 () {
|
|
QGraphicsSimpleTextItem::removeFromIndex();
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::advance(int phase)
|
|
void cbs_advance_767_0(int phase)
|
|
{
|
|
QGraphicsSimpleTextItem::advance(phase);
|
|
}
|
|
|
|
virtual void advance(int phase)
|
|
{
|
|
if (cb_advance_767_0.can_issue()) {
|
|
cb_advance_767_0.issue<QGraphicsSimpleTextItem_Adaptor, int>(&QGraphicsSimpleTextItem_Adaptor::cbs_advance_767_0, phase);
|
|
} else {
|
|
QGraphicsSimpleTextItem::advance(phase);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QRectF QGraphicsSimpleTextItem::boundingRect()
|
|
QRectF cbs_boundingRect_c0_0() const
|
|
{
|
|
return QGraphicsSimpleTextItem::boundingRect();
|
|
}
|
|
|
|
virtual QRectF boundingRect() const
|
|
{
|
|
if (cb_boundingRect_c0_0.can_issue()) {
|
|
return cb_boundingRect_c0_0.issue<QGraphicsSimpleTextItem_Adaptor, QRectF>(&QGraphicsSimpleTextItem_Adaptor::cbs_boundingRect_c0_0);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::boundingRect();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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<QGraphicsSimpleTextItem_Adaptor, bool, const QGraphicsItem *, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type &>(&QGraphicsSimpleTextItem_Adaptor::cbs_collidesWithItem_c4977_1, other, qt_gsi::CppToQtAdaptor<Qt::ItemSelectionMode>(mode));
|
|
} else {
|
|
return QGraphicsSimpleTextItem::collidesWithItem(other, mode);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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<QGraphicsSimpleTextItem_Adaptor, bool, const QPainterPath &, const qt_gsi::Converter<Qt::ItemSelectionMode>::target_type &>(&QGraphicsSimpleTextItem_Adaptor::cbs_collidesWithPath_c4877_1, path, qt_gsi::CppToQtAdaptor<Qt::ItemSelectionMode>(mode));
|
|
} else {
|
|
return QGraphicsSimpleTextItem::collidesWithPath(path, mode);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsSimpleTextItem::contains(const QPointF &point)
|
|
bool cbs_contains_c1986_0(const QPointF &point) const
|
|
{
|
|
return QGraphicsSimpleTextItem::contains(point);
|
|
}
|
|
|
|
virtual bool contains(const QPointF &point) const
|
|
{
|
|
if (cb_contains_c1986_0.can_issue()) {
|
|
return cb_contains_c1986_0.issue<QGraphicsSimpleTextItem_Adaptor, bool, const QPointF &>(&QGraphicsSimpleTextItem_Adaptor::cbs_contains_c1986_0, point);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::contains(point);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsSimpleTextItem::isObscuredBy(const QGraphicsItem *item)
|
|
bool cbs_isObscuredBy_c2614_0(const QGraphicsItem *item) const
|
|
{
|
|
return QGraphicsSimpleTextItem::isObscuredBy(item);
|
|
}
|
|
|
|
virtual bool isObscuredBy(const QGraphicsItem *item) const
|
|
{
|
|
if (cb_isObscuredBy_c2614_0.can_issue()) {
|
|
return cb_isObscuredBy_c2614_0.issue<QGraphicsSimpleTextItem_Adaptor, bool, const QGraphicsItem *>(&QGraphicsSimpleTextItem_Adaptor::cbs_isObscuredBy_c2614_0, item);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::isObscuredBy(item);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPainterPath QGraphicsSimpleTextItem::opaqueArea()
|
|
QPainterPath cbs_opaqueArea_c0_0() const
|
|
{
|
|
return QGraphicsSimpleTextItem::opaqueArea();
|
|
}
|
|
|
|
virtual QPainterPath opaqueArea() const
|
|
{
|
|
if (cb_opaqueArea_c0_0.can_issue()) {
|
|
return cb_opaqueArea_c0_0.issue<QGraphicsSimpleTextItem_Adaptor, QPainterPath>(&QGraphicsSimpleTextItem_Adaptor::cbs_opaqueArea_c0_0);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::opaqueArea();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
void cbs_paint_6301_0(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
{
|
|
QGraphicsSimpleTextItem::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<QGraphicsSimpleTextItem_Adaptor, QPainter *, const QStyleOptionGraphicsItem *, QWidget *>(&QGraphicsSimpleTextItem_Adaptor::cbs_paint_6301_0, painter, option, widget);
|
|
} else {
|
|
QGraphicsSimpleTextItem::paint(painter, option, widget);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPainterPath QGraphicsSimpleTextItem::shape()
|
|
QPainterPath cbs_shape_c0_0() const
|
|
{
|
|
return QGraphicsSimpleTextItem::shape();
|
|
}
|
|
|
|
virtual QPainterPath shape() const
|
|
{
|
|
if (cb_shape_c0_0.can_issue()) {
|
|
return cb_shape_c0_0.issue<QGraphicsSimpleTextItem_Adaptor, QPainterPath>(&QGraphicsSimpleTextItem_Adaptor::cbs_shape_c0_0);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::shape();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QGraphicsSimpleTextItem::type()
|
|
int cbs_type_c0_0() const
|
|
{
|
|
return QGraphicsSimpleTextItem::type();
|
|
}
|
|
|
|
virtual int type() const
|
|
{
|
|
if (cb_type_c0_0.can_issue()) {
|
|
return cb_type_c0_0.issue<QGraphicsSimpleTextItem_Adaptor, int>(&QGraphicsSimpleTextItem_Adaptor::cbs_type_c0_0);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::type();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
void cbs_contextMenuEvent_3674_0(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::contextMenuEvent(event);
|
|
}
|
|
|
|
virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
if (cb_contextMenuEvent_3674_0.can_issue()) {
|
|
cb_contextMenuEvent_3674_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneContextMenuEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_contextMenuEvent_3674_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::contextMenuEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragEnterEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::dragEnterEvent(event);
|
|
}
|
|
|
|
virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragEnterEvent_3315_0.can_issue()) {
|
|
cb_dragEnterEvent_3315_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_dragEnterEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::dragEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragLeaveEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::dragLeaveEvent(event);
|
|
}
|
|
|
|
virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragLeaveEvent_3315_0.can_issue()) {
|
|
cb_dragLeaveEvent_3315_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_dragLeaveEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::dragLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dragMoveEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::dragMoveEvent(event);
|
|
}
|
|
|
|
virtual void dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dragMoveEvent_3315_0.can_issue()) {
|
|
cb_dragMoveEvent_3315_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_dragMoveEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::dragMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
void cbs_dropEvent_3315_0(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::dropEvent(event);
|
|
}
|
|
|
|
virtual void dropEvent(QGraphicsSceneDragDropEvent *event)
|
|
{
|
|
if (cb_dropEvent_3315_0.can_issue()) {
|
|
cb_dropEvent_3315_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneDragDropEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_dropEvent_3315_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::dropEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsSimpleTextItem::extension(const QVariant &variant)
|
|
QVariant cbs_extension_c2119_0(const QVariant &variant) const
|
|
{
|
|
return QGraphicsSimpleTextItem::extension(variant);
|
|
}
|
|
|
|
virtual QVariant extension(const QVariant &variant) const
|
|
{
|
|
if (cb_extension_c2119_0.can_issue()) {
|
|
return cb_extension_c2119_0.issue<QGraphicsSimpleTextItem_Adaptor, QVariant, const QVariant &>(&QGraphicsSimpleTextItem_Adaptor::cbs_extension_c2119_0, variant);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::extension(variant);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::focusInEvent(QFocusEvent *event)
|
|
void cbs_focusInEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::focusInEvent(event);
|
|
}
|
|
|
|
virtual void focusInEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusInEvent_1729_0.can_issue()) {
|
|
cb_focusInEvent_1729_0.issue<QGraphicsSimpleTextItem_Adaptor, QFocusEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_focusInEvent_1729_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::focusInEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::focusOutEvent(QFocusEvent *event)
|
|
void cbs_focusOutEvent_1729_0(QFocusEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::focusOutEvent(event);
|
|
}
|
|
|
|
virtual void focusOutEvent(QFocusEvent *event)
|
|
{
|
|
if (cb_focusOutEvent_1729_0.can_issue()) {
|
|
cb_focusOutEvent_1729_0.issue<QGraphicsSimpleTextItem_Adaptor, QFocusEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_focusOutEvent_1729_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::focusOutEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverEnterEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::hoverEnterEvent(event);
|
|
}
|
|
|
|
virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverEnterEvent_3044_0.can_issue()) {
|
|
cb_hoverEnterEvent_3044_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_hoverEnterEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::hoverEnterEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverLeaveEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::hoverLeaveEvent(event);
|
|
}
|
|
|
|
virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverLeaveEvent_3044_0.can_issue()) {
|
|
cb_hoverLeaveEvent_3044_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_hoverLeaveEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::hoverLeaveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
void cbs_hoverMoveEvent_3044_0(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::hoverMoveEvent(event);
|
|
}
|
|
|
|
virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
if (cb_hoverMoveEvent_3044_0.can_issue()) {
|
|
cb_hoverMoveEvent_3044_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneHoverEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_hoverMoveEvent_3044_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::hoverMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::inputMethodEvent(QInputMethodEvent *event)
|
|
void cbs_inputMethodEvent_2354_0(QInputMethodEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::inputMethodEvent(event);
|
|
}
|
|
|
|
virtual void inputMethodEvent(QInputMethodEvent *event)
|
|
{
|
|
if (cb_inputMethodEvent_2354_0.can_issue()) {
|
|
cb_inputMethodEvent_2354_0.issue<QGraphicsSimpleTextItem_Adaptor, QInputMethodEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_inputMethodEvent_2354_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::inputMethodEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsSimpleTextItem::inputMethodQuery(Qt::InputMethodQuery query)
|
|
QVariant cbs_inputMethodQuery_c2420_0(const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & query) const
|
|
{
|
|
return QGraphicsSimpleTextItem::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<QGraphicsSimpleTextItem_Adaptor, QVariant, const qt_gsi::Converter<Qt::InputMethodQuery>::target_type &>(&QGraphicsSimpleTextItem_Adaptor::cbs_inputMethodQuery_c2420_0, qt_gsi::CppToQtAdaptor<Qt::InputMethodQuery>(query));
|
|
} else {
|
|
return QGraphicsSimpleTextItem::inputMethodQuery(query);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QVariant QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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<QGraphicsSimpleTextItem_Adaptor, QVariant, const qt_gsi::Converter<QGraphicsItem::GraphicsItemChange>::target_type &, const QVariant &>(&QGraphicsSimpleTextItem_Adaptor::cbs_itemChange_5658_0, qt_gsi::CppToQtAdaptor<QGraphicsItem::GraphicsItemChange>(change), value);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::itemChange(change, value);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::keyPressEvent(QKeyEvent *event)
|
|
void cbs_keyPressEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::keyPressEvent(event);
|
|
}
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyPressEvent_1514_0.can_issue()) {
|
|
cb_keyPressEvent_1514_0.issue<QGraphicsSimpleTextItem_Adaptor, QKeyEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_keyPressEvent_1514_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::keyPressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::keyReleaseEvent(QKeyEvent *event)
|
|
void cbs_keyReleaseEvent_1514_0(QKeyEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::keyReleaseEvent(event);
|
|
}
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *event)
|
|
{
|
|
if (cb_keyReleaseEvent_1514_0.can_issue()) {
|
|
cb_keyReleaseEvent_1514_0.issue<QGraphicsSimpleTextItem_Adaptor, QKeyEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_keyReleaseEvent_1514_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::keyReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseDoubleClickEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::mouseDoubleClickEvent(event);
|
|
}
|
|
|
|
virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseDoubleClickEvent_3049_0.can_issue()) {
|
|
cb_mouseDoubleClickEvent_3049_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_mouseDoubleClickEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::mouseDoubleClickEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseMoveEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::mouseMoveEvent(event);
|
|
}
|
|
|
|
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseMoveEvent_3049_0.can_issue()) {
|
|
cb_mouseMoveEvent_3049_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_mouseMoveEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::mouseMoveEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mousePressEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::mousePressEvent(event);
|
|
}
|
|
|
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mousePressEvent_3049_0.can_issue()) {
|
|
cb_mousePressEvent_3049_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_mousePressEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::mousePressEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
void cbs_mouseReleaseEvent_3049_0(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::mouseReleaseEvent(event);
|
|
}
|
|
|
|
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (cb_mouseReleaseEvent_3049_0.can_issue()) {
|
|
cb_mouseReleaseEvent_3049_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneMouseEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_mouseReleaseEvent_3049_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::mouseReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsSimpleTextItem::sceneEvent(QEvent *event)
|
|
bool cbs_sceneEvent_1217_0(QEvent *event)
|
|
{
|
|
return QGraphicsSimpleTextItem::sceneEvent(event);
|
|
}
|
|
|
|
virtual bool sceneEvent(QEvent *event)
|
|
{
|
|
if (cb_sceneEvent_1217_0.can_issue()) {
|
|
return cb_sceneEvent_1217_0.issue<QGraphicsSimpleTextItem_Adaptor, bool, QEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_sceneEvent_1217_0, event);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::sceneEvent(event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsSimpleTextItem::sceneEventFilter(QGraphicsItem *watched, QEvent *event)
|
|
bool cbs_sceneEventFilter_3028_0(QGraphicsItem *watched, QEvent *event)
|
|
{
|
|
return QGraphicsSimpleTextItem::sceneEventFilter(watched, event);
|
|
}
|
|
|
|
virtual bool sceneEventFilter(QGraphicsItem *watched, QEvent *event)
|
|
{
|
|
if (cb_sceneEventFilter_3028_0.can_issue()) {
|
|
return cb_sceneEventFilter_3028_0.issue<QGraphicsSimpleTextItem_Adaptor, bool, QGraphicsItem *, QEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_sceneEventFilter_3028_0, watched, event);
|
|
} else {
|
|
return QGraphicsSimpleTextItem::sceneEventFilter(watched, event);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::setExtension(QGraphicsItem::Extension extension, const QVariant &variant)
|
|
void cbs_setExtension_4817_0(unsigned int extension, const QVariant &variant)
|
|
{
|
|
QGraphicsSimpleTextItem::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<QGraphicsSimpleTextItem_Adaptor, unsigned int, const QVariant &>(&QGraphicsSimpleTextItem_Adaptor::cbs_setExtension_4817_0, (unsigned int)(extension), variant);
|
|
} else {
|
|
QGraphicsSimpleTextItem::setExtension(extension, variant);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QGraphicsSimpleTextItem::supportsExtension(QGraphicsItem::Extension extension)
|
|
bool cbs_supportsExtension_c2806_0(unsigned int extension) const
|
|
{
|
|
return QGraphicsSimpleTextItem::supportsExtension(QGraphicsItem::Extension(extension));
|
|
}
|
|
|
|
virtual bool supportsExtension(QGraphicsItem::Extension extension) const
|
|
{
|
|
if (cb_supportsExtension_c2806_0.can_issue()) {
|
|
return cb_supportsExtension_c2806_0.issue<QGraphicsSimpleTextItem_Adaptor, bool, unsigned int>(&QGraphicsSimpleTextItem_Adaptor::cbs_supportsExtension_c2806_0, (unsigned int)(extension));
|
|
} else {
|
|
return QGraphicsSimpleTextItem::supportsExtension(extension);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QGraphicsSimpleTextItem::wheelEvent(QGraphicsSceneWheelEvent *event)
|
|
void cbs_wheelEvent_3029_0(QGraphicsSceneWheelEvent *event)
|
|
{
|
|
QGraphicsSimpleTextItem::wheelEvent(event);
|
|
}
|
|
|
|
virtual void wheelEvent(QGraphicsSceneWheelEvent *event)
|
|
{
|
|
if (cb_wheelEvent_3029_0.can_issue()) {
|
|
cb_wheelEvent_3029_0.issue<QGraphicsSimpleTextItem_Adaptor, QGraphicsSceneWheelEvent *>(&QGraphicsSimpleTextItem_Adaptor::cbs_wheelEvent_3029_0, event);
|
|
} else {
|
|
QGraphicsSimpleTextItem::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;
|
|
};
|
|
|
|
QGraphicsSimpleTextItem_Adaptor::~QGraphicsSimpleTextItem_Adaptor() { }
|
|
|
|
// Constructor QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(QGraphicsItem *parent, QGraphicsScene *scene) (adaptor class)
|
|
|
|
static void _init_ctor_QGraphicsSimpleTextItem_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<QGraphicsSimpleTextItem_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QGraphicsSimpleTextItem_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<QGraphicsSimpleTextItem_Adaptor *> (new QGraphicsSimpleTextItem_Adaptor (arg1, arg2));
|
|
}
|
|
|
|
|
|
// Constructor QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(const QString &text, QGraphicsItem *parent, QGraphicsScene *scene) (adaptor class)
|
|
|
|
static void _init_ctor_QGraphicsSimpleTextItem_Adaptor_5742 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("text");
|
|
decl->add_arg<const QString & > (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<QGraphicsSimpleTextItem_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QGraphicsSimpleTextItem_Adaptor_5742 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QString &arg1 = args.read<const QString & > (heap);
|
|
QGraphicsItem *arg2 = args ? args.read<QGraphicsItem * > (heap) : (QGraphicsItem *)(0);
|
|
QGraphicsScene *arg3 = args ? args.read<QGraphicsScene * > (heap) : (QGraphicsScene *)(0);
|
|
ret.write<QGraphicsSimpleTextItem_Adaptor *> (new QGraphicsSimpleTextItem_Adaptor (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->fp_QGraphicsSimpleTextItem_addToIndex_0 ();
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_advance_767_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_advance_767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_advance_767_0 = cb;
|
|
}
|
|
|
|
|
|
// QRectF QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_boundingRect_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_boundingRect_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_boundingRect_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_collidesWithItem_c4977_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_collidesWithItem_c4977_1 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_collidesWithPath_c4877_1 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_collidesWithPath_c4877_1 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_contains_c1986_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_contains_c1986_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_contextMenuEvent_3674_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_contextMenuEvent_3674_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragEnterEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_dragEnterEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragLeaveEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_dragLeaveEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragMoveEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_dragMoveEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dropEvent_3315_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_dropEvent_3315_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_extension_c2119_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_extension_c2119_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusInEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_focusInEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusOutEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_focusOutEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverEnterEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_hoverEnterEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverLeaveEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_hoverLeaveEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hoverMoveEvent_3044_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_hoverMoveEvent_3044_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodEvent_2354_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_inputMethodEvent_2354_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodQuery_c2420_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_inputMethodQuery_c2420_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_isObscuredBy_c2614_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_isObscuredBy_c2614_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_itemChange_5658_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_itemChange_5658_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyPressEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_keyPressEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyReleaseEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_keyReleaseEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseDoubleClickEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_mouseDoubleClickEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseMoveEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_mouseMoveEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mousePressEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_mousePressEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseReleaseEvent_3049_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_mouseReleaseEvent_3049_0 = cb;
|
|
}
|
|
|
|
|
|
// QPainterPath QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_opaqueArea_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_opaqueArea_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_opaqueArea_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3);
|
|
}
|
|
|
|
static void _set_callback_cbs_paint_6301_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_paint_6301_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->fp_QGraphicsSimpleTextItem_prepareGeometryChange_0 ();
|
|
}
|
|
|
|
|
|
// exposed void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->fp_QGraphicsSimpleTextItem_removeFromIndex_0 ();
|
|
}
|
|
|
|
|
|
// bool QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_sceneEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_sceneEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_sceneEventFilter_3028_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_sceneEventFilter_3028_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2);
|
|
}
|
|
|
|
static void _set_callback_cbs_setExtension_4817_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_setExtension_4817_0 = cb;
|
|
}
|
|
|
|
|
|
// QPainterPath QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_shape_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_shape_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_shape_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_supportsExtension_c2806_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_supportsExtension_c2806_0 = cb;
|
|
}
|
|
|
|
|
|
// int QGraphicsSimpleTextItem::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)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_type_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_type_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_type_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QGraphicsSimpleTextItem::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);
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_wheelEvent_3029_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QGraphicsSimpleTextItem_Adaptor *)cls)->cb_wheelEvent_3029_0 = cb;
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QGraphicsSimpleTextItem> &qtdecl_QGraphicsSimpleTextItem ();
|
|
|
|
static gsi::Methods methods_QGraphicsSimpleTextItem_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(QGraphicsItem *parent, QGraphicsScene *scene)\nThis method creates an object of class QGraphicsSimpleTextItem.", &_init_ctor_QGraphicsSimpleTextItem_Adaptor_3825, &_call_ctor_QGraphicsSimpleTextItem_Adaptor_3825);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QGraphicsSimpleTextItem::QGraphicsSimpleTextItem(const QString &text, QGraphicsItem *parent, QGraphicsScene *scene)\nThis method creates an object of class QGraphicsSimpleTextItem.", &_init_ctor_QGraphicsSimpleTextItem_Adaptor_5742, &_call_ctor_QGraphicsSimpleTextItem_Adaptor_5742);
|
|
methods += new qt_gsi::GenericMethod ("*addToIndex", "@brief Method void QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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 QGraphicsSimpleTextItem::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<QGraphicsSimpleTextItem_Adaptor> decl_QGraphicsSimpleTextItem_Adaptor (qtdecl_QGraphicsSimpleTextItem (), "QGraphicsSimpleTextItem",
|
|
methods_QGraphicsSimpleTextItem_Adaptor (),
|
|
"@qt\n@brief Binding of QGraphicsSimpleTextItem");
|
|
|
|
}
|
|
|