mirror of https://github.com/KLayout/klayout.git
3464 lines
132 KiB
C++
3464 lines
132 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2018 Matthias Koefferlein
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
/**
|
|
* @file gsiDeclQMenu.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QMenu>
|
|
#include <QAction>
|
|
#include <QActionEvent>
|
|
#include <QBackingStore>
|
|
#include <QBitmap>
|
|
#include <QChildEvent>
|
|
#include <QCloseEvent>
|
|
#include <QContextMenuEvent>
|
|
#include <QCursor>
|
|
#include <QDragEnterEvent>
|
|
#include <QDragLeaveEvent>
|
|
#include <QDragMoveEvent>
|
|
#include <QDropEvent>
|
|
#include <QEvent>
|
|
#include <QFocusEvent>
|
|
#include <QFont>
|
|
#include <QFontInfo>
|
|
#include <QFontMetrics>
|
|
#include <QGraphicsEffect>
|
|
#include <QGraphicsProxyWidget>
|
|
#include <QHideEvent>
|
|
#include <QIcon>
|
|
#include <QInputMethodEvent>
|
|
#include <QKeyEvent>
|
|
#include <QKeySequence>
|
|
#include <QLayout>
|
|
#include <QLocale>
|
|
#include <QMargins>
|
|
#include <QMetaMethod>
|
|
#include <QMouseEvent>
|
|
#include <QMoveEvent>
|
|
#include <QObject>
|
|
#include <QPaintDevice>
|
|
#include <QPaintEngine>
|
|
#include <QPaintEvent>
|
|
#include <QPainter>
|
|
#include <QPalette>
|
|
#include <QPixmap>
|
|
#include <QPoint>
|
|
#include <QRect>
|
|
#include <QRegion>
|
|
#include <QResizeEvent>
|
|
#include <QShowEvent>
|
|
#include <QSize>
|
|
#include <QSizePolicy>
|
|
#include <QStyle>
|
|
#include <QStyleOptionMenuItem>
|
|
#include <QTabletEvent>
|
|
#include <QThread>
|
|
#include <QTimerEvent>
|
|
#include <QWheelEvent>
|
|
#include <QWidget>
|
|
#include <QWindow>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QMenu
|
|
|
|
// get static meta object
|
|
|
|
static void _init_smo (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
decl->set_return<const QMetaObject &> ();
|
|
}
|
|
|
|
static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<const QMetaObject &> (QMenu::staticMetaObject);
|
|
}
|
|
|
|
|
|
// QAction *QMenu::actionAt(const QPoint &)
|
|
|
|
|
|
static void _init_f_actionAt_c1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_actionAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->actionAt (arg1));
|
|
}
|
|
|
|
|
|
// QRect QMenu::actionGeometry(QAction *)
|
|
|
|
|
|
static void _init_f_actionGeometry_c1309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
ret.write<QRect > ((QRect)((QMenu *)cls)->actionGeometry (arg1));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::activeAction()
|
|
|
|
|
|
static void _init_f_activeAction_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_activeAction_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->activeAction ());
|
|
}
|
|
|
|
|
|
// (QAction *)
|
|
|
|
|
|
static void _init_f_addAction_1309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("action");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->addAction (arg1);
|
|
}
|
|
|
|
|
|
// (const QString &)
|
|
|
|
|
|
static void _init_f_addAction_2025 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("text");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addAction_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);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addAction (arg1));
|
|
}
|
|
|
|
|
|
// (const QIcon &, const QString &)
|
|
|
|
|
|
static void _init_f_addAction_3704 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("icon");
|
|
decl->add_arg<const QIcon & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("text");
|
|
decl->add_arg<const QString & > (argspec_1);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QIcon &arg1 = args.read<const QIcon & > (heap);
|
|
const QString &arg2 = args.read<const QString & > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addAction (arg1, arg2));
|
|
}
|
|
|
|
|
|
// (const QString &, const QObject *, const char *, const QKeySequence &)
|
|
|
|
|
|
static void _init_f_addAction_7945 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("text");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("receiver");
|
|
decl->add_arg<const QObject * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("member");
|
|
decl->add_arg<const char * > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("shortcut", true, "0");
|
|
decl->add_arg<const QKeySequence & > (argspec_3);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addAction_7945 (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);
|
|
const QObject *arg2 = args.read<const QObject * > (heap);
|
|
const char *arg3 = args.read<const char * > (heap);
|
|
const QKeySequence &arg4 = args ? args.read<const QKeySequence & > (heap) : (const QKeySequence &)(0);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addAction (arg1, arg2, arg3, arg4));
|
|
}
|
|
|
|
|
|
// (const QIcon &, const QString &, const QObject *, const char *, const QKeySequence &)
|
|
|
|
|
|
static void _init_f_addAction_9624 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("icon");
|
|
decl->add_arg<const QIcon & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("text");
|
|
decl->add_arg<const QString & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("receiver");
|
|
decl->add_arg<const QObject * > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("member");
|
|
decl->add_arg<const char * > (argspec_3);
|
|
static gsi::ArgSpecBase argspec_4 ("shortcut", true, "0");
|
|
decl->add_arg<const QKeySequence & > (argspec_4);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addAction_9624 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QIcon &arg1 = args.read<const QIcon & > (heap);
|
|
const QString &arg2 = args.read<const QString & > (heap);
|
|
const QObject *arg3 = args.read<const QObject * > (heap);
|
|
const char *arg4 = args.read<const char * > (heap);
|
|
const QKeySequence &arg5 = args ? args.read<const QKeySequence & > (heap) : (const QKeySequence &)(0);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addAction (arg1, arg2, arg3, arg4, arg5));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::addMenu(QMenu *menu)
|
|
|
|
|
|
static void _init_f_addMenu_1108 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("menu");
|
|
decl->add_arg<QMenu * > (argspec_0);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMenu *arg1 = args.read<QMenu * > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addMenu (arg1));
|
|
}
|
|
|
|
|
|
// QMenu *QMenu::addMenu(const QString &title)
|
|
|
|
|
|
static void _init_f_addMenu_2025 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("title");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<QMenu * > ();
|
|
}
|
|
|
|
static void _call_f_addMenu_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);
|
|
ret.write<QMenu * > ((QMenu *)((QMenu *)cls)->addMenu (arg1));
|
|
}
|
|
|
|
|
|
// QMenu *QMenu::addMenu(const QIcon &icon, const QString &title)
|
|
|
|
|
|
static void _init_f_addMenu_3704 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("icon");
|
|
decl->add_arg<const QIcon & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("title");
|
|
decl->add_arg<const QString & > (argspec_1);
|
|
decl->set_return<QMenu * > ();
|
|
}
|
|
|
|
static void _call_f_addMenu_3704 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QIcon &arg1 = args.read<const QIcon & > (heap);
|
|
const QString &arg2 = args.read<const QString & > (heap);
|
|
ret.write<QMenu * > ((QMenu *)((QMenu *)cls)->addMenu (arg1, arg2));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::addSection(const QString &text)
|
|
|
|
|
|
static void _init_f_addSection_2025 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("text");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addSection_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);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addSection (arg1));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::addSection(const QIcon &icon, const QString &text)
|
|
|
|
|
|
static void _init_f_addSection_3704 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("icon");
|
|
decl->add_arg<const QIcon & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("text");
|
|
decl->add_arg<const QString & > (argspec_1);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addSection_3704 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QIcon &arg1 = args.read<const QIcon & > (heap);
|
|
const QString &arg2 = args.read<const QString & > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addSection (arg1, arg2));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::addSeparator()
|
|
|
|
|
|
static void _init_f_addSeparator_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_addSeparator_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->addSeparator ());
|
|
}
|
|
|
|
|
|
// void QMenu::clear()
|
|
|
|
|
|
static void _init_f_clear_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->clear ();
|
|
}
|
|
|
|
|
|
// QAction *QMenu::defaultAction()
|
|
|
|
|
|
static void _init_f_defaultAction_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_defaultAction_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->defaultAction ());
|
|
}
|
|
|
|
|
|
// QAction *QMenu::exec()
|
|
|
|
|
|
static void _init_f_exec_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_exec_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->exec ());
|
|
}
|
|
|
|
|
|
// QAction *QMenu::exec(const QPoint &pos, QAction *at)
|
|
|
|
|
|
static void _init_f_exec_3117 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pos");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("at", true, "0");
|
|
decl->add_arg<QAction * > (argspec_1);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_exec_3117 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
QAction *arg2 = args ? args.read<QAction * > (heap) : (QAction *)(0);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->exec (arg1, arg2));
|
|
}
|
|
|
|
|
|
// void QMenu::hideTearOffMenu()
|
|
|
|
|
|
static void _init_f_hideTearOffMenu_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_hideTearOffMenu_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->hideTearOffMenu ();
|
|
}
|
|
|
|
|
|
// QIcon QMenu::icon()
|
|
|
|
|
|
static void _init_f_icon_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QIcon > ();
|
|
}
|
|
|
|
static void _call_f_icon_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QIcon > ((QIcon)((QMenu *)cls)->icon ());
|
|
}
|
|
|
|
|
|
// QAction *QMenu::insertMenu(QAction *before, QMenu *menu)
|
|
|
|
|
|
static void _init_f_insertMenu_2309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("before");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("menu");
|
|
decl->add_arg<QMenu * > (argspec_1);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_insertMenu_2309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
QMenu *arg2 = args.read<QMenu * > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->insertMenu (arg1, arg2));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::insertSection(QAction *before, const QString &text)
|
|
|
|
|
|
static void _init_f_insertSection_3226 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("before");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("text");
|
|
decl->add_arg<const QString & > (argspec_1);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_insertSection_3226 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
const QString &arg2 = args.read<const QString & > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->insertSection (arg1, arg2));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::insertSection(QAction *before, const QIcon &icon, const QString &text)
|
|
|
|
|
|
static void _init_f_insertSection_4905 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("before");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("icon");
|
|
decl->add_arg<const QIcon & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("text");
|
|
decl->add_arg<const QString & > (argspec_2);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_insertSection_4905 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
const QIcon &arg2 = args.read<const QIcon & > (heap);
|
|
const QString &arg3 = args.read<const QString & > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->insertSection (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// QAction *QMenu::insertSeparator(QAction *before)
|
|
|
|
|
|
static void _init_f_insertSeparator_1309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("before");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_insertSeparator_1309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->insertSeparator (arg1));
|
|
}
|
|
|
|
|
|
// bool QMenu::isEmpty()
|
|
|
|
|
|
static void _init_f_isEmpty_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isEmpty_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu *)cls)->isEmpty ());
|
|
}
|
|
|
|
|
|
// bool QMenu::isTearOffEnabled()
|
|
|
|
|
|
static void _init_f_isTearOffEnabled_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isTearOffEnabled_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu *)cls)->isTearOffEnabled ());
|
|
}
|
|
|
|
|
|
// bool QMenu::isTearOffMenuVisible()
|
|
|
|
|
|
static void _init_f_isTearOffMenuVisible_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isTearOffMenuVisible_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu *)cls)->isTearOffMenuVisible ());
|
|
}
|
|
|
|
|
|
// QAction *QMenu::menuAction()
|
|
|
|
|
|
static void _init_f_menuAction_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_menuAction_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QAction * > ((QAction *)((QMenu *)cls)->menuAction ());
|
|
}
|
|
|
|
|
|
// void QMenu::popup(const QPoint &pos, QAction *at)
|
|
|
|
|
|
static void _init_f_popup_3117 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pos");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("at", true, "0");
|
|
decl->add_arg<QAction * > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_popup_3117 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
QAction *arg2 = args ? args.read<QAction * > (heap) : (QAction *)(0);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->popup (arg1, arg2);
|
|
}
|
|
|
|
|
|
// bool QMenu::separatorsCollapsible()
|
|
|
|
|
|
static void _init_f_separatorsCollapsible_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_separatorsCollapsible_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu *)cls)->separatorsCollapsible ());
|
|
}
|
|
|
|
|
|
// void QMenu::setActiveAction(QAction *act)
|
|
|
|
|
|
static void _init_f_setActiveAction_1309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("act");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setActiveAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->setActiveAction (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::setDefaultAction(QAction *)
|
|
|
|
|
|
static void _init_f_setDefaultAction_1309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setDefaultAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->setDefaultAction (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::setIcon(const QIcon &icon)
|
|
|
|
|
|
static void _init_f_setIcon_1787 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("icon");
|
|
decl->add_arg<const QIcon & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QIcon &arg1 = args.read<const QIcon & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->setIcon (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::setNoReplayFor(QWidget *widget)
|
|
|
|
|
|
static void _init_f_setNoReplayFor_1315 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("widget");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setNoReplayFor_1315 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWidget *arg1 = args.read<QWidget * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->setNoReplayFor (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::setSeparatorsCollapsible(bool collapse)
|
|
|
|
|
|
static void _init_f_setSeparatorsCollapsible_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("collapse");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setSeparatorsCollapsible_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args.read<bool > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->setSeparatorsCollapsible (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::setTearOffEnabled(bool)
|
|
|
|
|
|
static void _init_f_setTearOffEnabled_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setTearOffEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args.read<bool > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->setTearOffEnabled (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::setTitle(const QString &title)
|
|
|
|
|
|
static void _init_f_setTitle_2025 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("title");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setTitle_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);
|
|
((QMenu *)cls)->setTitle (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::setToolTipsVisible(bool visible)
|
|
|
|
|
|
static void _init_f_setToolTipsVisible_864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("visible");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setToolTipsVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args.read<bool > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu *)cls)->setToolTipsVisible (arg1);
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_sizeHint_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_sizeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QMenu *)cls)->sizeHint ());
|
|
}
|
|
|
|
|
|
// QString QMenu::title()
|
|
|
|
|
|
static void _init_f_title_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_title_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QString > ((QString)((QMenu *)cls)->title ());
|
|
}
|
|
|
|
|
|
// bool QMenu::toolTipsVisible()
|
|
|
|
|
|
static void _init_f_toolTipsVisible_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_toolTipsVisible_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu *)cls)->toolTipsVisible ());
|
|
}
|
|
|
|
|
|
// static QAction *QMenu::exec(QList<QAction*> actions, const QPoint &pos, QAction *at, QWidget *parent)
|
|
|
|
|
|
static void _init_f_exec_5996 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("actions");
|
|
decl->add_arg<QList<QAction*> > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("pos");
|
|
decl->add_arg<const QPoint & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("at", true, "0");
|
|
decl->add_arg<QAction * > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("parent", true, "0");
|
|
decl->add_arg<QWidget * > (argspec_3);
|
|
decl->set_return<QAction * > ();
|
|
}
|
|
|
|
static void _call_f_exec_5996 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QList<QAction*> arg1 = args.read<QList<QAction*> > (heap);
|
|
const QPoint &arg2 = args.read<const QPoint & > (heap);
|
|
QAction *arg3 = args ? args.read<QAction * > (heap) : (QAction *)(0);
|
|
QWidget *arg4 = args ? args.read<QWidget * > (heap) : (QWidget *)(0);
|
|
ret.write<QAction * > ((QAction *)QMenu::exec (arg1, arg2, arg3, arg4));
|
|
}
|
|
|
|
|
|
// static QString QMenu::tr(const char *s, const char *c, int n)
|
|
|
|
|
|
static void _init_f_tr_4013 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c", true, "__null");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n", true, "-1");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(__null);
|
|
int arg3 = args ? args.read<int > (heap) : (int)(-1);
|
|
ret.write<QString > ((QString)QMenu::tr (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QString QMenu::trUtf8(const char *s, const char *c, int n)
|
|
|
|
|
|
static void _init_f_trUtf8_4013 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c", true, "__null");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n", true, "-1");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(__null);
|
|
int arg3 = args ? args.read<int > (heap) : (int)(-1);
|
|
ret.write<QString > ((QString)QMenu::trUtf8 (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QMenu () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo);
|
|
methods += new qt_gsi::GenericMethod ("actionAt", "@brief Method QAction *QMenu::actionAt(const QPoint &)\n", true, &_init_f_actionAt_c1916, &_call_f_actionAt_c1916);
|
|
methods += new qt_gsi::GenericMethod ("actionGeometry", "@brief Method QRect QMenu::actionGeometry(QAction *)\n", true, &_init_f_actionGeometry_c1309, &_call_f_actionGeometry_c1309);
|
|
methods += new qt_gsi::GenericMethod (":activeAction", "@brief Method QAction *QMenu::activeAction()\n", true, &_init_f_activeAction_c0, &_call_f_activeAction_c0);
|
|
methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (QAction *)\n", false, &_init_f_addAction_1309, &_call_f_addAction_1309);
|
|
methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &)\n", false, &_init_f_addAction_2025, &_call_f_addAction_2025);
|
|
methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &)\n", false, &_init_f_addAction_3704, &_call_f_addAction_3704);
|
|
methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QString &, const QObject *, const char *, const QKeySequence &)\n", false, &_init_f_addAction_7945, &_call_f_addAction_7945);
|
|
methods += new qt_gsi::GenericMethod ("addAction", "@brief Method (const QIcon &, const QString &, const QObject *, const char *, const QKeySequence &)\n", false, &_init_f_addAction_9624, &_call_f_addAction_9624);
|
|
methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QAction *QMenu::addMenu(QMenu *menu)\n", false, &_init_f_addMenu_1108, &_call_f_addMenu_1108);
|
|
methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenu::addMenu(const QString &title)\n", false, &_init_f_addMenu_2025, &_call_f_addMenu_2025);
|
|
methods += new qt_gsi::GenericMethod ("addMenu", "@brief Method QMenu *QMenu::addMenu(const QIcon &icon, const QString &title)\n", false, &_init_f_addMenu_3704, &_call_f_addMenu_3704);
|
|
methods += new qt_gsi::GenericMethod ("addSection", "@brief Method QAction *QMenu::addSection(const QString &text)\n", false, &_init_f_addSection_2025, &_call_f_addSection_2025);
|
|
methods += new qt_gsi::GenericMethod ("addSection", "@brief Method QAction *QMenu::addSection(const QIcon &icon, const QString &text)\n", false, &_init_f_addSection_3704, &_call_f_addSection_3704);
|
|
methods += new qt_gsi::GenericMethod ("addSeparator", "@brief Method QAction *QMenu::addSeparator()\n", false, &_init_f_addSeparator_0, &_call_f_addSeparator_0);
|
|
methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QMenu::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0);
|
|
methods += new qt_gsi::GenericMethod (":defaultAction", "@brief Method QAction *QMenu::defaultAction()\n", true, &_init_f_defaultAction_c0, &_call_f_defaultAction_c0);
|
|
methods += new qt_gsi::GenericMethod ("exec", "@brief Method QAction *QMenu::exec()\n", false, &_init_f_exec_0, &_call_f_exec_0);
|
|
methods += new qt_gsi::GenericMethod ("exec", "@brief Method QAction *QMenu::exec(const QPoint &pos, QAction *at)\n", false, &_init_f_exec_3117, &_call_f_exec_3117);
|
|
methods += new qt_gsi::GenericMethod ("hideTearOffMenu", "@brief Method void QMenu::hideTearOffMenu()\n", false, &_init_f_hideTearOffMenu_0, &_call_f_hideTearOffMenu_0);
|
|
methods += new qt_gsi::GenericMethod (":icon", "@brief Method QIcon QMenu::icon()\n", true, &_init_f_icon_c0, &_call_f_icon_c0);
|
|
methods += new qt_gsi::GenericMethod ("insertMenu", "@brief Method QAction *QMenu::insertMenu(QAction *before, QMenu *menu)\n", false, &_init_f_insertMenu_2309, &_call_f_insertMenu_2309);
|
|
methods += new qt_gsi::GenericMethod ("insertSection", "@brief Method QAction *QMenu::insertSection(QAction *before, const QString &text)\n", false, &_init_f_insertSection_3226, &_call_f_insertSection_3226);
|
|
methods += new qt_gsi::GenericMethod ("insertSection", "@brief Method QAction *QMenu::insertSection(QAction *before, const QIcon &icon, const QString &text)\n", false, &_init_f_insertSection_4905, &_call_f_insertSection_4905);
|
|
methods += new qt_gsi::GenericMethod ("insertSeparator", "@brief Method QAction *QMenu::insertSeparator(QAction *before)\n", false, &_init_f_insertSeparator_1309, &_call_f_insertSeparator_1309);
|
|
methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QMenu::isEmpty()\n", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0);
|
|
methods += new qt_gsi::GenericMethod ("isTearOffEnabled?|:tearOffEnabled", "@brief Method bool QMenu::isTearOffEnabled()\n", true, &_init_f_isTearOffEnabled_c0, &_call_f_isTearOffEnabled_c0);
|
|
methods += new qt_gsi::GenericMethod ("isTearOffMenuVisible?", "@brief Method bool QMenu::isTearOffMenuVisible()\n", true, &_init_f_isTearOffMenuVisible_c0, &_call_f_isTearOffMenuVisible_c0);
|
|
methods += new qt_gsi::GenericMethod ("menuAction", "@brief Method QAction *QMenu::menuAction()\n", true, &_init_f_menuAction_c0, &_call_f_menuAction_c0);
|
|
methods += new qt_gsi::GenericMethod ("popup", "@brief Method void QMenu::popup(const QPoint &pos, QAction *at)\n", false, &_init_f_popup_3117, &_call_f_popup_3117);
|
|
methods += new qt_gsi::GenericMethod (":separatorsCollapsible", "@brief Method bool QMenu::separatorsCollapsible()\n", true, &_init_f_separatorsCollapsible_c0, &_call_f_separatorsCollapsible_c0);
|
|
methods += new qt_gsi::GenericMethod ("setActiveAction|activeAction=", "@brief Method void QMenu::setActiveAction(QAction *act)\n", false, &_init_f_setActiveAction_1309, &_call_f_setActiveAction_1309);
|
|
methods += new qt_gsi::GenericMethod ("setDefaultAction|defaultAction=", "@brief Method void QMenu::setDefaultAction(QAction *)\n", false, &_init_f_setDefaultAction_1309, &_call_f_setDefaultAction_1309);
|
|
methods += new qt_gsi::GenericMethod ("setIcon|icon=", "@brief Method void QMenu::setIcon(const QIcon &icon)\n", false, &_init_f_setIcon_1787, &_call_f_setIcon_1787);
|
|
methods += new qt_gsi::GenericMethod ("setNoReplayFor", "@brief Method void QMenu::setNoReplayFor(QWidget *widget)\n", false, &_init_f_setNoReplayFor_1315, &_call_f_setNoReplayFor_1315);
|
|
methods += new qt_gsi::GenericMethod ("setSeparatorsCollapsible|separatorsCollapsible=", "@brief Method void QMenu::setSeparatorsCollapsible(bool collapse)\n", false, &_init_f_setSeparatorsCollapsible_864, &_call_f_setSeparatorsCollapsible_864);
|
|
methods += new qt_gsi::GenericMethod ("setTearOffEnabled|tearOffEnabled=", "@brief Method void QMenu::setTearOffEnabled(bool)\n", false, &_init_f_setTearOffEnabled_864, &_call_f_setTearOffEnabled_864);
|
|
methods += new qt_gsi::GenericMethod ("setTitle|title=", "@brief Method void QMenu::setTitle(const QString &title)\n", false, &_init_f_setTitle_2025, &_call_f_setTitle_2025);
|
|
methods += new qt_gsi::GenericMethod ("setToolTipsVisible|toolTipsVisible=", "@brief Method void QMenu::setToolTipsVisible(bool visible)\n", false, &_init_f_setToolTipsVisible_864, &_call_f_setToolTipsVisible_864);
|
|
methods += new qt_gsi::GenericMethod (":sizeHint", "@brief Method () const\nThis is a reimplementation of QWidget::sizeHint", true, &_init_f_sizeHint_c0, &_call_f_sizeHint_c0);
|
|
methods += new qt_gsi::GenericMethod (":title", "@brief Method QString QMenu::title()\n", true, &_init_f_title_c0, &_call_f_title_c0);
|
|
methods += new qt_gsi::GenericMethod (":toolTipsVisible", "@brief Method bool QMenu::toolTipsVisible()\n", true, &_init_f_toolTipsVisible_c0, &_call_f_toolTipsVisible_c0);
|
|
methods += gsi::qt_signal ("aboutToHide()", "aboutToHide", "@brief Signal declaration for QMenu::aboutToHide()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("aboutToShow()", "aboutToShow", "@brief Signal declaration for QMenu::aboutToShow()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QPoint & > ("customContextMenuRequested(const QPoint &)", "customContextMenuRequested", gsi::arg("pos"), "@brief Signal declaration for QMenu::customContextMenuRequested(const QPoint &pos)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<QObject * > ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QMenu::destroyed(QObject *)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<QAction * > ("hovered(QAction *)", "hovered", gsi::arg("action"), "@brief Signal declaration for QMenu::hovered(QAction *action)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<QAction * > ("triggered(QAction *)", "triggered", gsi::arg("action"), "@brief Signal declaration for QMenu::triggered(QAction *action)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QIcon & > ("windowIconChanged(const QIcon &)", "windowIconChanged", gsi::arg("icon"), "@brief Signal declaration for QMenu::windowIconChanged(const QIcon &icon)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QString & > ("windowIconTextChanged(const QString &)", "windowIconTextChanged", gsi::arg("iconText"), "@brief Signal declaration for QMenu::windowIconTextChanged(const QString &iconText)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QString & > ("windowTitleChanged(const QString &)", "windowTitleChanged", gsi::arg("title"), "@brief Signal declaration for QMenu::windowTitleChanged(const QString &title)\nYou can bind a procedure to this signal.");
|
|
methods += new qt_gsi::GenericStaticMethod ("exec", "@brief Static method QAction *QMenu::exec(QList<QAction*> actions, const QPoint &pos, QAction *at, QWidget *parent)\nThis method is static and can be called without an instance.", &_init_f_exec_5996, &_call_f_exec_5996);
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QMenu::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013);
|
|
methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QMenu::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QWidget> &qtdecl_QWidget ();
|
|
|
|
qt_gsi::QtNativeClass<QMenu> decl_QMenu (qtdecl_QWidget (), "QMenu_Native",
|
|
methods_QMenu (),
|
|
"@hide\n@alias QMenu");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QMenu> &qtdecl_QMenu () { return decl_QMenu; }
|
|
|
|
}
|
|
|
|
|
|
class QMenu_Adaptor : public QMenu, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QMenu_Adaptor();
|
|
|
|
// [adaptor ctor] QMenu::QMenu(QWidget *parent)
|
|
QMenu_Adaptor() : QMenu()
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QMenu::QMenu(QWidget *parent)
|
|
QMenu_Adaptor(QWidget *parent) : QMenu(parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QMenu::QMenu(const QString &title, QWidget *parent)
|
|
QMenu_Adaptor(const QString &title) : QMenu(title)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QMenu::QMenu(const QString &title, QWidget *parent)
|
|
QMenu_Adaptor(const QString &title, QWidget *parent) : QMenu(title, parent)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [expose] int QMenu::columnCount()
|
|
int fp_QMenu_columnCount_c0 () const {
|
|
return QMenu::columnCount();
|
|
}
|
|
|
|
// [expose] void QMenu::create(WId, bool initializeWindow, bool destroyOldWindow)
|
|
void fp_QMenu_create_2208 (const qt_gsi::Converter<WId>::target_type & arg1, bool initializeWindow, bool destroyOldWindow) {
|
|
QMenu::create(qt_gsi::QtToCppAdaptor<WId>(arg1).cref(), initializeWindow, destroyOldWindow);
|
|
}
|
|
|
|
// [expose] void QMenu::destroy(bool destroyWindow, bool destroySubWindows)
|
|
void fp_QMenu_destroy_1620 (bool destroyWindow, bool destroySubWindows) {
|
|
QMenu::destroy(destroyWindow, destroySubWindows);
|
|
}
|
|
|
|
// [expose] bool QMenu::focusNextChild()
|
|
bool fp_QMenu_focusNextChild_0 () {
|
|
return QMenu::focusNextChild();
|
|
}
|
|
|
|
// [expose] bool QMenu::focusPreviousChild()
|
|
bool fp_QMenu_focusPreviousChild_0 () {
|
|
return QMenu::focusPreviousChild();
|
|
}
|
|
|
|
// [expose] void QMenu::initStyleOption(QStyleOptionMenuItem *option, const QAction *action)
|
|
void fp_QMenu_initStyleOption_c4565 (QStyleOptionMenuItem *option, const QAction *action) const {
|
|
QMenu::initStyleOption(option, action);
|
|
}
|
|
|
|
// [expose] bool QMenu::isSignalConnected(const QMetaMethod &signal)
|
|
bool fp_QMenu_isSignalConnected_c2394 (const QMetaMethod &signal) const {
|
|
return QMenu::isSignalConnected(signal);
|
|
}
|
|
|
|
// [expose] int QMenu::receivers(const char *signal)
|
|
int fp_QMenu_receivers_c1731 (const char *signal) const {
|
|
return QMenu::receivers(signal);
|
|
}
|
|
|
|
// [expose] QObject *QMenu::sender()
|
|
QObject * fp_QMenu_sender_c0 () const {
|
|
return QMenu::sender();
|
|
}
|
|
|
|
// [expose] int QMenu::senderSignalIndex()
|
|
int fp_QMenu_senderSignalIndex_c0 () const {
|
|
return QMenu::senderSignalIndex();
|
|
}
|
|
|
|
// [expose] void QMenu::updateMicroFocus()
|
|
void fp_QMenu_updateMicroFocus_0 () {
|
|
QMenu::updateMicroFocus();
|
|
}
|
|
|
|
// [emitter impl] void QMenu::aboutToHide()
|
|
void emitter_QMenu_aboutToHide_0()
|
|
{
|
|
emit QMenu::aboutToHide();
|
|
}
|
|
|
|
// [emitter impl] void QMenu::aboutToShow()
|
|
void emitter_QMenu_aboutToShow_0()
|
|
{
|
|
emit QMenu::aboutToShow();
|
|
}
|
|
|
|
// [emitter impl] void QMenu::customContextMenuRequested(const QPoint &pos)
|
|
void emitter_QMenu_customContextMenuRequested_1916(const QPoint &pos)
|
|
{
|
|
emit QMenu::customContextMenuRequested(pos);
|
|
}
|
|
|
|
// [emitter impl] void QMenu::destroyed(QObject *)
|
|
void emitter_QMenu_destroyed_1302(QObject *arg1)
|
|
{
|
|
emit QMenu::destroyed(arg1);
|
|
}
|
|
|
|
// [adaptor impl] bool QMenu::eventFilter(QObject *, QEvent *)
|
|
bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2)
|
|
{
|
|
return QMenu::eventFilter(arg1, arg2);
|
|
}
|
|
|
|
virtual bool eventFilter(QObject *arg1, QEvent *arg2)
|
|
{
|
|
if (cb_eventFilter_2411_0.can_issue()) {
|
|
return cb_eventFilter_2411_0.issue<QMenu_Adaptor, bool, QObject *, QEvent *>(&QMenu_Adaptor::cbs_eventFilter_2411_0, arg1, arg2);
|
|
} else {
|
|
return QMenu::eventFilter(arg1, arg2);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QMenu::hasHeightForWidth()
|
|
bool cbs_hasHeightForWidth_c0_0() const
|
|
{
|
|
return QMenu::hasHeightForWidth();
|
|
}
|
|
|
|
virtual bool hasHeightForWidth() const
|
|
{
|
|
if (cb_hasHeightForWidth_c0_0.can_issue()) {
|
|
return cb_hasHeightForWidth_c0_0.issue<QMenu_Adaptor, bool>(&QMenu_Adaptor::cbs_hasHeightForWidth_c0_0);
|
|
} else {
|
|
return QMenu::hasHeightForWidth();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QMenu::heightForWidth(int)
|
|
int cbs_heightForWidth_c767_0(int arg1) const
|
|
{
|
|
return QMenu::heightForWidth(arg1);
|
|
}
|
|
|
|
virtual int heightForWidth(int arg1) const
|
|
{
|
|
if (cb_heightForWidth_c767_0.can_issue()) {
|
|
return cb_heightForWidth_c767_0.issue<QMenu_Adaptor, int, int>(&QMenu_Adaptor::cbs_heightForWidth_c767_0, arg1);
|
|
} else {
|
|
return QMenu::heightForWidth(arg1);
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QMenu::hovered(QAction *action)
|
|
void emitter_QMenu_hovered_1309(QAction *action)
|
|
{
|
|
emit QMenu::hovered(action);
|
|
}
|
|
|
|
// [adaptor impl] QVariant QMenu::inputMethodQuery(Qt::InputMethodQuery)
|
|
QVariant cbs_inputMethodQuery_c2420_0(const qt_gsi::Converter<Qt::InputMethodQuery>::target_type & arg1) const
|
|
{
|
|
return QMenu::inputMethodQuery(qt_gsi::QtToCppAdaptor<Qt::InputMethodQuery>(arg1).cref());
|
|
}
|
|
|
|
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg1) const
|
|
{
|
|
if (cb_inputMethodQuery_c2420_0.can_issue()) {
|
|
return cb_inputMethodQuery_c2420_0.issue<QMenu_Adaptor, QVariant, const qt_gsi::Converter<Qt::InputMethodQuery>::target_type &>(&QMenu_Adaptor::cbs_inputMethodQuery_c2420_0, qt_gsi::CppToQtAdaptor<Qt::InputMethodQuery>(arg1));
|
|
} else {
|
|
return QMenu::inputMethodQuery(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QMenu::minimumSizeHint()
|
|
QSize cbs_minimumSizeHint_c0_0() const
|
|
{
|
|
return QMenu::minimumSizeHint();
|
|
}
|
|
|
|
virtual QSize minimumSizeHint() const
|
|
{
|
|
if (cb_minimumSizeHint_c0_0.can_issue()) {
|
|
return cb_minimumSizeHint_c0_0.issue<QMenu_Adaptor, QSize>(&QMenu_Adaptor::cbs_minimumSizeHint_c0_0);
|
|
} else {
|
|
return QMenu::minimumSizeHint();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPaintEngine *QMenu::paintEngine()
|
|
QPaintEngine * cbs_paintEngine_c0_0() const
|
|
{
|
|
return QMenu::paintEngine();
|
|
}
|
|
|
|
virtual QPaintEngine * paintEngine() const
|
|
{
|
|
if (cb_paintEngine_c0_0.can_issue()) {
|
|
return cb_paintEngine_c0_0.issue<QMenu_Adaptor, QPaintEngine *>(&QMenu_Adaptor::cbs_paintEngine_c0_0);
|
|
} else {
|
|
return QMenu::paintEngine();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::setVisible(bool visible)
|
|
void cbs_setVisible_864_0(bool visible)
|
|
{
|
|
QMenu::setVisible(visible);
|
|
}
|
|
|
|
virtual void setVisible(bool visible)
|
|
{
|
|
if (cb_setVisible_864_0.can_issue()) {
|
|
cb_setVisible_864_0.issue<QMenu_Adaptor, bool>(&QMenu_Adaptor::cbs_setVisible_864_0, visible);
|
|
} else {
|
|
QMenu::setVisible(visible);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QSize QMenu::sizeHint()
|
|
QSize cbs_sizeHint_c0_0() const
|
|
{
|
|
return QMenu::sizeHint();
|
|
}
|
|
|
|
virtual QSize sizeHint() const
|
|
{
|
|
if (cb_sizeHint_c0_0.can_issue()) {
|
|
return cb_sizeHint_c0_0.issue<QMenu_Adaptor, QSize>(&QMenu_Adaptor::cbs_sizeHint_c0_0);
|
|
} else {
|
|
return QMenu::sizeHint();
|
|
}
|
|
}
|
|
|
|
// [emitter impl] void QMenu::triggered(QAction *action)
|
|
void emitter_QMenu_triggered_1309(QAction *action)
|
|
{
|
|
emit QMenu::triggered(action);
|
|
}
|
|
|
|
// [emitter impl] void QMenu::windowIconChanged(const QIcon &icon)
|
|
void emitter_QMenu_windowIconChanged_1787(const QIcon &icon)
|
|
{
|
|
emit QMenu::windowIconChanged(icon);
|
|
}
|
|
|
|
// [emitter impl] void QMenu::windowIconTextChanged(const QString &iconText)
|
|
void emitter_QMenu_windowIconTextChanged_2025(const QString &iconText)
|
|
{
|
|
emit QMenu::windowIconTextChanged(iconText);
|
|
}
|
|
|
|
// [emitter impl] void QMenu::windowTitleChanged(const QString &title)
|
|
void emitter_QMenu_windowTitleChanged_2025(const QString &title)
|
|
{
|
|
emit QMenu::windowTitleChanged(title);
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::actionEvent(QActionEvent *)
|
|
void cbs_actionEvent_1823_0(QActionEvent *arg1)
|
|
{
|
|
QMenu::actionEvent(arg1);
|
|
}
|
|
|
|
virtual void actionEvent(QActionEvent *arg1)
|
|
{
|
|
if (cb_actionEvent_1823_0.can_issue()) {
|
|
cb_actionEvent_1823_0.issue<QMenu_Adaptor, QActionEvent *>(&QMenu_Adaptor::cbs_actionEvent_1823_0, arg1);
|
|
} else {
|
|
QMenu::actionEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::changeEvent(QEvent *)
|
|
void cbs_changeEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QMenu::changeEvent(arg1);
|
|
}
|
|
|
|
virtual void changeEvent(QEvent *arg1)
|
|
{
|
|
if (cb_changeEvent_1217_0.can_issue()) {
|
|
cb_changeEvent_1217_0.issue<QMenu_Adaptor, QEvent *>(&QMenu_Adaptor::cbs_changeEvent_1217_0, arg1);
|
|
} else {
|
|
QMenu::changeEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::childEvent(QChildEvent *)
|
|
void cbs_childEvent_1701_0(QChildEvent *arg1)
|
|
{
|
|
QMenu::childEvent(arg1);
|
|
}
|
|
|
|
virtual void childEvent(QChildEvent *arg1)
|
|
{
|
|
if (cb_childEvent_1701_0.can_issue()) {
|
|
cb_childEvent_1701_0.issue<QMenu_Adaptor, QChildEvent *>(&QMenu_Adaptor::cbs_childEvent_1701_0, arg1);
|
|
} else {
|
|
QMenu::childEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::closeEvent(QCloseEvent *)
|
|
void cbs_closeEvent_1719_0(QCloseEvent *arg1)
|
|
{
|
|
QMenu::closeEvent(arg1);
|
|
}
|
|
|
|
virtual void closeEvent(QCloseEvent *arg1)
|
|
{
|
|
if (cb_closeEvent_1719_0.can_issue()) {
|
|
cb_closeEvent_1719_0.issue<QMenu_Adaptor, QCloseEvent *>(&QMenu_Adaptor::cbs_closeEvent_1719_0, arg1);
|
|
} else {
|
|
QMenu::closeEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::contextMenuEvent(QContextMenuEvent *)
|
|
void cbs_contextMenuEvent_2363_0(QContextMenuEvent *arg1)
|
|
{
|
|
QMenu::contextMenuEvent(arg1);
|
|
}
|
|
|
|
virtual void contextMenuEvent(QContextMenuEvent *arg1)
|
|
{
|
|
if (cb_contextMenuEvent_2363_0.can_issue()) {
|
|
cb_contextMenuEvent_2363_0.issue<QMenu_Adaptor, QContextMenuEvent *>(&QMenu_Adaptor::cbs_contextMenuEvent_2363_0, arg1);
|
|
} else {
|
|
QMenu::contextMenuEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::customEvent(QEvent *)
|
|
void cbs_customEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QMenu::customEvent(arg1);
|
|
}
|
|
|
|
virtual void customEvent(QEvent *arg1)
|
|
{
|
|
if (cb_customEvent_1217_0.can_issue()) {
|
|
cb_customEvent_1217_0.issue<QMenu_Adaptor, QEvent *>(&QMenu_Adaptor::cbs_customEvent_1217_0, arg1);
|
|
} else {
|
|
QMenu::customEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::disconnectNotify(const QMetaMethod &signal)
|
|
void cbs_disconnectNotify_2394_0(const QMetaMethod &signal)
|
|
{
|
|
QMenu::disconnectNotify(signal);
|
|
}
|
|
|
|
virtual void disconnectNotify(const QMetaMethod &signal)
|
|
{
|
|
if (cb_disconnectNotify_2394_0.can_issue()) {
|
|
cb_disconnectNotify_2394_0.issue<QMenu_Adaptor, const QMetaMethod &>(&QMenu_Adaptor::cbs_disconnectNotify_2394_0, signal);
|
|
} else {
|
|
QMenu::disconnectNotify(signal);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::dragEnterEvent(QDragEnterEvent *)
|
|
void cbs_dragEnterEvent_2109_0(QDragEnterEvent *arg1)
|
|
{
|
|
QMenu::dragEnterEvent(arg1);
|
|
}
|
|
|
|
virtual void dragEnterEvent(QDragEnterEvent *arg1)
|
|
{
|
|
if (cb_dragEnterEvent_2109_0.can_issue()) {
|
|
cb_dragEnterEvent_2109_0.issue<QMenu_Adaptor, QDragEnterEvent *>(&QMenu_Adaptor::cbs_dragEnterEvent_2109_0, arg1);
|
|
} else {
|
|
QMenu::dragEnterEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::dragLeaveEvent(QDragLeaveEvent *)
|
|
void cbs_dragLeaveEvent_2092_0(QDragLeaveEvent *arg1)
|
|
{
|
|
QMenu::dragLeaveEvent(arg1);
|
|
}
|
|
|
|
virtual void dragLeaveEvent(QDragLeaveEvent *arg1)
|
|
{
|
|
if (cb_dragLeaveEvent_2092_0.can_issue()) {
|
|
cb_dragLeaveEvent_2092_0.issue<QMenu_Adaptor, QDragLeaveEvent *>(&QMenu_Adaptor::cbs_dragLeaveEvent_2092_0, arg1);
|
|
} else {
|
|
QMenu::dragLeaveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::dragMoveEvent(QDragMoveEvent *)
|
|
void cbs_dragMoveEvent_2006_0(QDragMoveEvent *arg1)
|
|
{
|
|
QMenu::dragMoveEvent(arg1);
|
|
}
|
|
|
|
virtual void dragMoveEvent(QDragMoveEvent *arg1)
|
|
{
|
|
if (cb_dragMoveEvent_2006_0.can_issue()) {
|
|
cb_dragMoveEvent_2006_0.issue<QMenu_Adaptor, QDragMoveEvent *>(&QMenu_Adaptor::cbs_dragMoveEvent_2006_0, arg1);
|
|
} else {
|
|
QMenu::dragMoveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::dropEvent(QDropEvent *)
|
|
void cbs_dropEvent_1622_0(QDropEvent *arg1)
|
|
{
|
|
QMenu::dropEvent(arg1);
|
|
}
|
|
|
|
virtual void dropEvent(QDropEvent *arg1)
|
|
{
|
|
if (cb_dropEvent_1622_0.can_issue()) {
|
|
cb_dropEvent_1622_0.issue<QMenu_Adaptor, QDropEvent *>(&QMenu_Adaptor::cbs_dropEvent_1622_0, arg1);
|
|
} else {
|
|
QMenu::dropEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::enterEvent(QEvent *)
|
|
void cbs_enterEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QMenu::enterEvent(arg1);
|
|
}
|
|
|
|
virtual void enterEvent(QEvent *arg1)
|
|
{
|
|
if (cb_enterEvent_1217_0.can_issue()) {
|
|
cb_enterEvent_1217_0.issue<QMenu_Adaptor, QEvent *>(&QMenu_Adaptor::cbs_enterEvent_1217_0, arg1);
|
|
} else {
|
|
QMenu::enterEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QMenu::event(QEvent *)
|
|
bool cbs_event_1217_0(QEvent *arg1)
|
|
{
|
|
return QMenu::event(arg1);
|
|
}
|
|
|
|
virtual bool event(QEvent *arg1)
|
|
{
|
|
if (cb_event_1217_0.can_issue()) {
|
|
return cb_event_1217_0.issue<QMenu_Adaptor, bool, QEvent *>(&QMenu_Adaptor::cbs_event_1217_0, arg1);
|
|
} else {
|
|
return QMenu::event(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::focusInEvent(QFocusEvent *)
|
|
void cbs_focusInEvent_1729_0(QFocusEvent *arg1)
|
|
{
|
|
QMenu::focusInEvent(arg1);
|
|
}
|
|
|
|
virtual void focusInEvent(QFocusEvent *arg1)
|
|
{
|
|
if (cb_focusInEvent_1729_0.can_issue()) {
|
|
cb_focusInEvent_1729_0.issue<QMenu_Adaptor, QFocusEvent *>(&QMenu_Adaptor::cbs_focusInEvent_1729_0, arg1);
|
|
} else {
|
|
QMenu::focusInEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QMenu::focusNextPrevChild(bool next)
|
|
bool cbs_focusNextPrevChild_864_0(bool next)
|
|
{
|
|
return QMenu::focusNextPrevChild(next);
|
|
}
|
|
|
|
virtual bool focusNextPrevChild(bool next)
|
|
{
|
|
if (cb_focusNextPrevChild_864_0.can_issue()) {
|
|
return cb_focusNextPrevChild_864_0.issue<QMenu_Adaptor, bool, bool>(&QMenu_Adaptor::cbs_focusNextPrevChild_864_0, next);
|
|
} else {
|
|
return QMenu::focusNextPrevChild(next);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::focusOutEvent(QFocusEvent *)
|
|
void cbs_focusOutEvent_1729_0(QFocusEvent *arg1)
|
|
{
|
|
QMenu::focusOutEvent(arg1);
|
|
}
|
|
|
|
virtual void focusOutEvent(QFocusEvent *arg1)
|
|
{
|
|
if (cb_focusOutEvent_1729_0.can_issue()) {
|
|
cb_focusOutEvent_1729_0.issue<QMenu_Adaptor, QFocusEvent *>(&QMenu_Adaptor::cbs_focusOutEvent_1729_0, arg1);
|
|
} else {
|
|
QMenu::focusOutEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::hideEvent(QHideEvent *)
|
|
void cbs_hideEvent_1595_0(QHideEvent *arg1)
|
|
{
|
|
QMenu::hideEvent(arg1);
|
|
}
|
|
|
|
virtual void hideEvent(QHideEvent *arg1)
|
|
{
|
|
if (cb_hideEvent_1595_0.can_issue()) {
|
|
cb_hideEvent_1595_0.issue<QMenu_Adaptor, QHideEvent *>(&QMenu_Adaptor::cbs_hideEvent_1595_0, arg1);
|
|
} else {
|
|
QMenu::hideEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::initPainter(QPainter *painter)
|
|
void cbs_initPainter_c1426_0(QPainter *painter) const
|
|
{
|
|
QMenu::initPainter(painter);
|
|
}
|
|
|
|
virtual void initPainter(QPainter *painter) const
|
|
{
|
|
if (cb_initPainter_c1426_0.can_issue()) {
|
|
cb_initPainter_c1426_0.issue<QMenu_Adaptor, QPainter *>(&QMenu_Adaptor::cbs_initPainter_c1426_0, painter);
|
|
} else {
|
|
QMenu::initPainter(painter);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::inputMethodEvent(QInputMethodEvent *)
|
|
void cbs_inputMethodEvent_2354_0(QInputMethodEvent *arg1)
|
|
{
|
|
QMenu::inputMethodEvent(arg1);
|
|
}
|
|
|
|
virtual void inputMethodEvent(QInputMethodEvent *arg1)
|
|
{
|
|
if (cb_inputMethodEvent_2354_0.can_issue()) {
|
|
cb_inputMethodEvent_2354_0.issue<QMenu_Adaptor, QInputMethodEvent *>(&QMenu_Adaptor::cbs_inputMethodEvent_2354_0, arg1);
|
|
} else {
|
|
QMenu::inputMethodEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::keyPressEvent(QKeyEvent *)
|
|
void cbs_keyPressEvent_1514_0(QKeyEvent *arg1)
|
|
{
|
|
QMenu::keyPressEvent(arg1);
|
|
}
|
|
|
|
virtual void keyPressEvent(QKeyEvent *arg1)
|
|
{
|
|
if (cb_keyPressEvent_1514_0.can_issue()) {
|
|
cb_keyPressEvent_1514_0.issue<QMenu_Adaptor, QKeyEvent *>(&QMenu_Adaptor::cbs_keyPressEvent_1514_0, arg1);
|
|
} else {
|
|
QMenu::keyPressEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::keyReleaseEvent(QKeyEvent *)
|
|
void cbs_keyReleaseEvent_1514_0(QKeyEvent *arg1)
|
|
{
|
|
QMenu::keyReleaseEvent(arg1);
|
|
}
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *arg1)
|
|
{
|
|
if (cb_keyReleaseEvent_1514_0.can_issue()) {
|
|
cb_keyReleaseEvent_1514_0.issue<QMenu_Adaptor, QKeyEvent *>(&QMenu_Adaptor::cbs_keyReleaseEvent_1514_0, arg1);
|
|
} else {
|
|
QMenu::keyReleaseEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::leaveEvent(QEvent *)
|
|
void cbs_leaveEvent_1217_0(QEvent *arg1)
|
|
{
|
|
QMenu::leaveEvent(arg1);
|
|
}
|
|
|
|
virtual void leaveEvent(QEvent *arg1)
|
|
{
|
|
if (cb_leaveEvent_1217_0.can_issue()) {
|
|
cb_leaveEvent_1217_0.issue<QMenu_Adaptor, QEvent *>(&QMenu_Adaptor::cbs_leaveEvent_1217_0, arg1);
|
|
} else {
|
|
QMenu::leaveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QMenu::metric(QPaintDevice::PaintDeviceMetric)
|
|
int cbs_metric_c3445_0(const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & arg1) const
|
|
{
|
|
return QMenu::metric(qt_gsi::QtToCppAdaptor<QPaintDevice::PaintDeviceMetric>(arg1).cref());
|
|
}
|
|
|
|
virtual int metric(QPaintDevice::PaintDeviceMetric arg1) const
|
|
{
|
|
if (cb_metric_c3445_0.can_issue()) {
|
|
return cb_metric_c3445_0.issue<QMenu_Adaptor, int, const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type &>(&QMenu_Adaptor::cbs_metric_c3445_0, qt_gsi::CppToQtAdaptor<QPaintDevice::PaintDeviceMetric>(arg1));
|
|
} else {
|
|
return QMenu::metric(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::mouseDoubleClickEvent(QMouseEvent *)
|
|
void cbs_mouseDoubleClickEvent_1738_0(QMouseEvent *arg1)
|
|
{
|
|
QMenu::mouseDoubleClickEvent(arg1);
|
|
}
|
|
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *arg1)
|
|
{
|
|
if (cb_mouseDoubleClickEvent_1738_0.can_issue()) {
|
|
cb_mouseDoubleClickEvent_1738_0.issue<QMenu_Adaptor, QMouseEvent *>(&QMenu_Adaptor::cbs_mouseDoubleClickEvent_1738_0, arg1);
|
|
} else {
|
|
QMenu::mouseDoubleClickEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::mouseMoveEvent(QMouseEvent *)
|
|
void cbs_mouseMoveEvent_1738_0(QMouseEvent *arg1)
|
|
{
|
|
QMenu::mouseMoveEvent(arg1);
|
|
}
|
|
|
|
virtual void mouseMoveEvent(QMouseEvent *arg1)
|
|
{
|
|
if (cb_mouseMoveEvent_1738_0.can_issue()) {
|
|
cb_mouseMoveEvent_1738_0.issue<QMenu_Adaptor, QMouseEvent *>(&QMenu_Adaptor::cbs_mouseMoveEvent_1738_0, arg1);
|
|
} else {
|
|
QMenu::mouseMoveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::mousePressEvent(QMouseEvent *)
|
|
void cbs_mousePressEvent_1738_0(QMouseEvent *arg1)
|
|
{
|
|
QMenu::mousePressEvent(arg1);
|
|
}
|
|
|
|
virtual void mousePressEvent(QMouseEvent *arg1)
|
|
{
|
|
if (cb_mousePressEvent_1738_0.can_issue()) {
|
|
cb_mousePressEvent_1738_0.issue<QMenu_Adaptor, QMouseEvent *>(&QMenu_Adaptor::cbs_mousePressEvent_1738_0, arg1);
|
|
} else {
|
|
QMenu::mousePressEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::mouseReleaseEvent(QMouseEvent *)
|
|
void cbs_mouseReleaseEvent_1738_0(QMouseEvent *arg1)
|
|
{
|
|
QMenu::mouseReleaseEvent(arg1);
|
|
}
|
|
|
|
virtual void mouseReleaseEvent(QMouseEvent *arg1)
|
|
{
|
|
if (cb_mouseReleaseEvent_1738_0.can_issue()) {
|
|
cb_mouseReleaseEvent_1738_0.issue<QMenu_Adaptor, QMouseEvent *>(&QMenu_Adaptor::cbs_mouseReleaseEvent_1738_0, arg1);
|
|
} else {
|
|
QMenu::mouseReleaseEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::moveEvent(QMoveEvent *)
|
|
void cbs_moveEvent_1624_0(QMoveEvent *arg1)
|
|
{
|
|
QMenu::moveEvent(arg1);
|
|
}
|
|
|
|
virtual void moveEvent(QMoveEvent *arg1)
|
|
{
|
|
if (cb_moveEvent_1624_0.can_issue()) {
|
|
cb_moveEvent_1624_0.issue<QMenu_Adaptor, QMoveEvent *>(&QMenu_Adaptor::cbs_moveEvent_1624_0, arg1);
|
|
} else {
|
|
QMenu::moveEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] bool QMenu::nativeEvent(const QByteArray &eventType, void *message, long int *result)
|
|
bool cbs_nativeEvent_4678_0(const QByteArray &eventType, void *message, long int *result)
|
|
{
|
|
return QMenu::nativeEvent(eventType, message, result);
|
|
}
|
|
|
|
virtual bool nativeEvent(const QByteArray &eventType, void *message, long int *result)
|
|
{
|
|
if (cb_nativeEvent_4678_0.can_issue()) {
|
|
return cb_nativeEvent_4678_0.issue<QMenu_Adaptor, bool, const QByteArray &, void *, long int *>(&QMenu_Adaptor::cbs_nativeEvent_4678_0, eventType, message, result);
|
|
} else {
|
|
return QMenu::nativeEvent(eventType, message, result);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::paintEvent(QPaintEvent *)
|
|
void cbs_paintEvent_1725_0(QPaintEvent *arg1)
|
|
{
|
|
QMenu::paintEvent(arg1);
|
|
}
|
|
|
|
virtual void paintEvent(QPaintEvent *arg1)
|
|
{
|
|
if (cb_paintEvent_1725_0.can_issue()) {
|
|
cb_paintEvent_1725_0.issue<QMenu_Adaptor, QPaintEvent *>(&QMenu_Adaptor::cbs_paintEvent_1725_0, arg1);
|
|
} else {
|
|
QMenu::paintEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPaintDevice *QMenu::redirected(QPoint *offset)
|
|
QPaintDevice * cbs_redirected_c1225_0(QPoint *offset) const
|
|
{
|
|
return QMenu::redirected(offset);
|
|
}
|
|
|
|
virtual QPaintDevice * redirected(QPoint *offset) const
|
|
{
|
|
if (cb_redirected_c1225_0.can_issue()) {
|
|
return cb_redirected_c1225_0.issue<QMenu_Adaptor, QPaintDevice *, QPoint *>(&QMenu_Adaptor::cbs_redirected_c1225_0, offset);
|
|
} else {
|
|
return QMenu::redirected(offset);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::resizeEvent(QResizeEvent *)
|
|
void cbs_resizeEvent_1843_0(QResizeEvent *arg1)
|
|
{
|
|
QMenu::resizeEvent(arg1);
|
|
}
|
|
|
|
virtual void resizeEvent(QResizeEvent *arg1)
|
|
{
|
|
if (cb_resizeEvent_1843_0.can_issue()) {
|
|
cb_resizeEvent_1843_0.issue<QMenu_Adaptor, QResizeEvent *>(&QMenu_Adaptor::cbs_resizeEvent_1843_0, arg1);
|
|
} else {
|
|
QMenu::resizeEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] QPainter *QMenu::sharedPainter()
|
|
QPainter * cbs_sharedPainter_c0_0() const
|
|
{
|
|
return QMenu::sharedPainter();
|
|
}
|
|
|
|
virtual QPainter * sharedPainter() const
|
|
{
|
|
if (cb_sharedPainter_c0_0.can_issue()) {
|
|
return cb_sharedPainter_c0_0.issue<QMenu_Adaptor, QPainter *>(&QMenu_Adaptor::cbs_sharedPainter_c0_0);
|
|
} else {
|
|
return QMenu::sharedPainter();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::showEvent(QShowEvent *)
|
|
void cbs_showEvent_1634_0(QShowEvent *arg1)
|
|
{
|
|
QMenu::showEvent(arg1);
|
|
}
|
|
|
|
virtual void showEvent(QShowEvent *arg1)
|
|
{
|
|
if (cb_showEvent_1634_0.can_issue()) {
|
|
cb_showEvent_1634_0.issue<QMenu_Adaptor, QShowEvent *>(&QMenu_Adaptor::cbs_showEvent_1634_0, arg1);
|
|
} else {
|
|
QMenu::showEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::tabletEvent(QTabletEvent *)
|
|
void cbs_tabletEvent_1821_0(QTabletEvent *arg1)
|
|
{
|
|
QMenu::tabletEvent(arg1);
|
|
}
|
|
|
|
virtual void tabletEvent(QTabletEvent *arg1)
|
|
{
|
|
if (cb_tabletEvent_1821_0.can_issue()) {
|
|
cb_tabletEvent_1821_0.issue<QMenu_Adaptor, QTabletEvent *>(&QMenu_Adaptor::cbs_tabletEvent_1821_0, arg1);
|
|
} else {
|
|
QMenu::tabletEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::timerEvent(QTimerEvent *)
|
|
void cbs_timerEvent_1730_0(QTimerEvent *arg1)
|
|
{
|
|
QMenu::timerEvent(arg1);
|
|
}
|
|
|
|
virtual void timerEvent(QTimerEvent *arg1)
|
|
{
|
|
if (cb_timerEvent_1730_0.can_issue()) {
|
|
cb_timerEvent_1730_0.issue<QMenu_Adaptor, QTimerEvent *>(&QMenu_Adaptor::cbs_timerEvent_1730_0, arg1);
|
|
} else {
|
|
QMenu::timerEvent(arg1);
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] void QMenu::wheelEvent(QWheelEvent *)
|
|
void cbs_wheelEvent_1718_0(QWheelEvent *arg1)
|
|
{
|
|
QMenu::wheelEvent(arg1);
|
|
}
|
|
|
|
virtual void wheelEvent(QWheelEvent *arg1)
|
|
{
|
|
if (cb_wheelEvent_1718_0.can_issue()) {
|
|
cb_wheelEvent_1718_0.issue<QMenu_Adaptor, QWheelEvent *>(&QMenu_Adaptor::cbs_wheelEvent_1718_0, arg1);
|
|
} else {
|
|
QMenu::wheelEvent(arg1);
|
|
}
|
|
}
|
|
|
|
gsi::Callback cb_eventFilter_2411_0;
|
|
gsi::Callback cb_hasHeightForWidth_c0_0;
|
|
gsi::Callback cb_heightForWidth_c767_0;
|
|
gsi::Callback cb_inputMethodQuery_c2420_0;
|
|
gsi::Callback cb_minimumSizeHint_c0_0;
|
|
gsi::Callback cb_paintEngine_c0_0;
|
|
gsi::Callback cb_setVisible_864_0;
|
|
gsi::Callback cb_sizeHint_c0_0;
|
|
gsi::Callback cb_actionEvent_1823_0;
|
|
gsi::Callback cb_changeEvent_1217_0;
|
|
gsi::Callback cb_childEvent_1701_0;
|
|
gsi::Callback cb_closeEvent_1719_0;
|
|
gsi::Callback cb_contextMenuEvent_2363_0;
|
|
gsi::Callback cb_customEvent_1217_0;
|
|
gsi::Callback cb_disconnectNotify_2394_0;
|
|
gsi::Callback cb_dragEnterEvent_2109_0;
|
|
gsi::Callback cb_dragLeaveEvent_2092_0;
|
|
gsi::Callback cb_dragMoveEvent_2006_0;
|
|
gsi::Callback cb_dropEvent_1622_0;
|
|
gsi::Callback cb_enterEvent_1217_0;
|
|
gsi::Callback cb_event_1217_0;
|
|
gsi::Callback cb_focusInEvent_1729_0;
|
|
gsi::Callback cb_focusNextPrevChild_864_0;
|
|
gsi::Callback cb_focusOutEvent_1729_0;
|
|
gsi::Callback cb_hideEvent_1595_0;
|
|
gsi::Callback cb_initPainter_c1426_0;
|
|
gsi::Callback cb_inputMethodEvent_2354_0;
|
|
gsi::Callback cb_keyPressEvent_1514_0;
|
|
gsi::Callback cb_keyReleaseEvent_1514_0;
|
|
gsi::Callback cb_leaveEvent_1217_0;
|
|
gsi::Callback cb_metric_c3445_0;
|
|
gsi::Callback cb_mouseDoubleClickEvent_1738_0;
|
|
gsi::Callback cb_mouseMoveEvent_1738_0;
|
|
gsi::Callback cb_mousePressEvent_1738_0;
|
|
gsi::Callback cb_mouseReleaseEvent_1738_0;
|
|
gsi::Callback cb_moveEvent_1624_0;
|
|
gsi::Callback cb_nativeEvent_4678_0;
|
|
gsi::Callback cb_paintEvent_1725_0;
|
|
gsi::Callback cb_redirected_c1225_0;
|
|
gsi::Callback cb_resizeEvent_1843_0;
|
|
gsi::Callback cb_sharedPainter_c0_0;
|
|
gsi::Callback cb_showEvent_1634_0;
|
|
gsi::Callback cb_tabletEvent_1821_0;
|
|
gsi::Callback cb_timerEvent_1730_0;
|
|
gsi::Callback cb_wheelEvent_1718_0;
|
|
};
|
|
|
|
QMenu_Adaptor::~QMenu_Adaptor() { }
|
|
|
|
// Constructor QMenu::QMenu(QWidget *parent) (adaptor class)
|
|
|
|
static void _init_ctor_QMenu_Adaptor_1315 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
|
|
decl->add_arg<QWidget * > (argspec_0);
|
|
decl->set_return_new<QMenu_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QMenu_Adaptor_1315 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWidget *arg1 = args ? args.read<QWidget * > (heap) : (QWidget *)(0);
|
|
ret.write<QMenu_Adaptor *> (new QMenu_Adaptor (arg1));
|
|
}
|
|
|
|
|
|
// Constructor QMenu::QMenu(const QString &title, QWidget *parent) (adaptor class)
|
|
|
|
static void _init_ctor_QMenu_Adaptor_3232 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("title");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("parent", true, "0");
|
|
decl->add_arg<QWidget * > (argspec_1);
|
|
decl->set_return_new<QMenu_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QMenu_Adaptor_3232 (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);
|
|
QWidget *arg2 = args ? args.read<QWidget * > (heap) : (QWidget *)(0);
|
|
ret.write<QMenu_Adaptor *> (new QMenu_Adaptor (arg1, arg2));
|
|
}
|
|
|
|
|
|
// emitter void QMenu::aboutToHide()
|
|
|
|
static void _init_emitter_aboutToHide_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_aboutToHide_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_aboutToHide_0 ();
|
|
}
|
|
|
|
|
|
// emitter void QMenu::aboutToShow()
|
|
|
|
static void _init_emitter_aboutToShow_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_aboutToShow_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_aboutToShow_0 ();
|
|
}
|
|
|
|
|
|
// void QMenu::actionEvent(QActionEvent *)
|
|
|
|
static void _init_cbs_actionEvent_1823_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QActionEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QActionEvent *arg1 = args.read<QActionEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_actionEvent_1823_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_actionEvent_1823_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::changeEvent(QEvent *)
|
|
|
|
static void _init_cbs_changeEvent_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QEvent *arg1 = args.read<QEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_changeEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_changeEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::childEvent(QChildEvent *)
|
|
|
|
static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QChildEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QChildEvent *arg1 = args.read<QChildEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_childEvent_1701_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::closeEvent(QCloseEvent *)
|
|
|
|
static void _init_cbs_closeEvent_1719_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QCloseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QCloseEvent *arg1 = args.read<QCloseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_closeEvent_1719_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_closeEvent_1719_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed int QMenu::columnCount()
|
|
|
|
static void _init_fp_columnCount_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_fp_columnCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QMenu_Adaptor *)cls)->fp_QMenu_columnCount_c0 ());
|
|
}
|
|
|
|
|
|
// void QMenu::contextMenuEvent(QContextMenuEvent *)
|
|
|
|
static void _init_cbs_contextMenuEvent_2363_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QContextMenuEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QContextMenuEvent *arg1 = args.read<QContextMenuEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_contextMenuEvent_2363_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_contextMenuEvent_2363_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QMenu::create(WId, bool initializeWindow, bool destroyOldWindow)
|
|
|
|
static void _init_fp_create_2208 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1", true, "0");
|
|
decl->add_arg<const qt_gsi::Converter<WId>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("initializeWindow", true, "true");
|
|
decl->add_arg<bool > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("destroyOldWindow", true, "true");
|
|
decl->add_arg<bool > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<WId>::target_type & arg1 = args ? args.read<const qt_gsi::Converter<WId>::target_type & > (heap) : (const qt_gsi::Converter<WId>::target_type &)(qt_gsi::CppToQtReadAdaptor<WId>(heap, 0));
|
|
bool arg2 = args ? args.read<bool > (heap) : (bool)(true);
|
|
bool arg3 = args ? args.read<bool > (heap) : (bool)(true);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->fp_QMenu_create_2208 (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// emitter void QMenu::customContextMenuRequested(const QPoint &pos)
|
|
|
|
static void _init_emitter_customContextMenuRequested_1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pos");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_customContextMenuRequested_1916 (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::customEvent(QEvent *)
|
|
|
|
static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QEvent *arg1 = args.read<QEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_customEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QMenu::destroy(bool destroyWindow, bool destroySubWindows)
|
|
|
|
static void _init_fp_destroy_1620 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("destroyWindow", true, "true");
|
|
decl->add_arg<bool > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("destroySubWindows", true, "true");
|
|
decl->add_arg<bool > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args ? args.read<bool > (heap) : (bool)(true);
|
|
bool arg2 = args ? args.read<bool > (heap) : (bool)(true);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->fp_QMenu_destroy_1620 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// emitter void QMenu::destroyed(QObject *)
|
|
|
|
static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1", true, "0");
|
|
decl->add_arg<QObject * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QObject *arg1 = args ? args.read<QObject * > (heap) : (QObject *)(0);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_destroyed_1302 (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::disconnectNotify(const QMetaMethod &signal)
|
|
|
|
static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("signal");
|
|
decl->add_arg<const QMetaMethod & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QMetaMethod &arg1 = args.read<const QMetaMethod & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::dragEnterEvent(QDragEnterEvent *)
|
|
|
|
static void _init_cbs_dragEnterEvent_2109_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QDragEnterEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDragEnterEvent *arg1 = args.read<QDragEnterEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragEnterEvent_2109_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_dragEnterEvent_2109_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::dragLeaveEvent(QDragLeaveEvent *)
|
|
|
|
static void _init_cbs_dragLeaveEvent_2092_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QDragLeaveEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDragLeaveEvent *arg1 = args.read<QDragLeaveEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragLeaveEvent_2092_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_dragLeaveEvent_2092_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::dragMoveEvent(QDragMoveEvent *)
|
|
|
|
static void _init_cbs_dragMoveEvent_2006_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QDragMoveEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDragMoveEvent *arg1 = args.read<QDragMoveEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dragMoveEvent_2006_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_dragMoveEvent_2006_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::dropEvent(QDropEvent *)
|
|
|
|
static void _init_cbs_dropEvent_1622_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QDropEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QDropEvent *arg1 = args.read<QDropEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_dropEvent_1622_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_dropEvent_1622_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::enterEvent(QEvent *)
|
|
|
|
static void _init_cbs_enterEvent_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QEvent *arg1 = args.read<QEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_enterEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_enterEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QMenu::event(QEvent *)
|
|
|
|
static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QEvent * > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QEvent *arg1 = args.read<QEvent * > (heap);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->cbs_event_1217_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_event_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QMenu::eventFilter(QObject *, QEvent *)
|
|
|
|
static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QObject * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("arg2");
|
|
decl->add_arg<QEvent * > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QObject *arg1 = args.read<QObject * > (heap);
|
|
QEvent *arg2 = args.read<QEvent * > (heap);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2));
|
|
}
|
|
|
|
static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_eventFilter_2411_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::focusInEvent(QFocusEvent *)
|
|
|
|
static void _init_cbs_focusInEvent_1729_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
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);
|
|
((QMenu_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusInEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_focusInEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QMenu::focusNextChild()
|
|
|
|
static void _init_fp_focusNextChild_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_fp_focusNextChild_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->fp_QMenu_focusNextChild_0 ());
|
|
}
|
|
|
|
|
|
// bool QMenu::focusNextPrevChild(bool next)
|
|
|
|
static void _init_cbs_focusNextPrevChild_864_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("next");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args.read<bool > (heap);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_focusNextPrevChild_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_focusNextPrevChild_864_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::focusOutEvent(QFocusEvent *)
|
|
|
|
static void _init_cbs_focusOutEvent_1729_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
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);
|
|
((QMenu_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_focusOutEvent_1729_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_focusOutEvent_1729_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QMenu::focusPreviousChild()
|
|
|
|
static void _init_fp_focusPreviousChild_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_fp_focusPreviousChild_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->fp_QMenu_focusPreviousChild_0 ());
|
|
}
|
|
|
|
|
|
// bool QMenu::hasHeightForWidth()
|
|
|
|
static void _init_cbs_hasHeightForWidth_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_hasHeightForWidth_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->cbs_hasHeightForWidth_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_hasHeightForWidth_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_hasHeightForWidth_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// int QMenu::heightForWidth(int)
|
|
|
|
static void _init_cbs_heightForWidth_c767_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
ret.write<int > ((int)((QMenu_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_heightForWidth_c767_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_heightForWidth_c767_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::hideEvent(QHideEvent *)
|
|
|
|
static void _init_cbs_hideEvent_1595_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QHideEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QHideEvent *arg1 = args.read<QHideEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_hideEvent_1595_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_hideEvent_1595_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QMenu::hovered(QAction *action)
|
|
|
|
static void _init_emitter_hovered_1309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("action");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_hovered_1309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_hovered_1309 (arg1);
|
|
}
|
|
|
|
|
|
// void QMenu::initPainter(QPainter *painter)
|
|
|
|
static void _init_cbs_initPainter_c1426_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("painter");
|
|
decl->add_arg<QPainter * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_initPainter_c1426_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);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_initPainter_c1426_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_initPainter_c1426_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed void QMenu::initStyleOption(QStyleOptionMenuItem *option, const QAction *action)
|
|
|
|
static void _init_fp_initStyleOption_c4565 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("option");
|
|
decl->add_arg<QStyleOptionMenuItem * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("action");
|
|
decl->add_arg<const QAction * > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_initStyleOption_c4565 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QStyleOptionMenuItem *arg1 = args.read<QStyleOptionMenuItem * > (heap);
|
|
const QAction *arg2 = args.read<const QAction * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->fp_QMenu_initStyleOption_c4565 (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QMenu::inputMethodEvent(QInputMethodEvent *)
|
|
|
|
static void _init_cbs_inputMethodEvent_2354_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
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);
|
|
((QMenu_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodEvent_2354_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_inputMethodEvent_2354_0 = cb;
|
|
}
|
|
|
|
|
|
// QVariant QMenu::inputMethodQuery(Qt::InputMethodQuery)
|
|
|
|
static void _init_cbs_inputMethodQuery_c2420_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
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)((QMenu_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_inputMethodQuery_c2420_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_inputMethodQuery_c2420_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed bool QMenu::isSignalConnected(const QMetaMethod &signal)
|
|
|
|
static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("signal");
|
|
decl->add_arg<const QMetaMethod & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QMetaMethod &arg1 = args.read<const QMetaMethod & > (heap);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->fp_QMenu_isSignalConnected_c2394 (arg1));
|
|
}
|
|
|
|
|
|
// void QMenu::keyPressEvent(QKeyEvent *)
|
|
|
|
static void _init_cbs_keyPressEvent_1514_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QKeyEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_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);
|
|
((QMenu_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyPressEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_keyPressEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::keyReleaseEvent(QKeyEvent *)
|
|
|
|
static void _init_cbs_keyReleaseEvent_1514_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QKeyEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QKeyEvent *arg1 = args.read<QKeyEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_keyReleaseEvent_1514_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_keyReleaseEvent_1514_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::leaveEvent(QEvent *)
|
|
|
|
static void _init_cbs_leaveEvent_1217_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QEvent *arg1 = args.read<QEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_leaveEvent_1217_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_leaveEvent_1217_0 = cb;
|
|
}
|
|
|
|
|
|
// int QMenu::metric(QPaintDevice::PaintDeviceMetric)
|
|
|
|
static void _init_cbs_metric_c3445_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & arg1 = args.read<const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & > (heap);
|
|
ret.write<int > ((int)((QMenu_Adaptor *)cls)->cbs_metric_c3445_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_metric_c3445_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_metric_c3445_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QMenu::minimumSizeHint()
|
|
|
|
static void _init_cbs_minimumSizeHint_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_cbs_minimumSizeHint_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QMenu_Adaptor *)cls)->cbs_minimumSizeHint_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_minimumSizeHint_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_minimumSizeHint_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::mouseDoubleClickEvent(QMouseEvent *)
|
|
|
|
static void _init_cbs_mouseDoubleClickEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseDoubleClickEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_mouseDoubleClickEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::mouseMoveEvent(QMouseEvent *)
|
|
|
|
static void _init_cbs_mouseMoveEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseMoveEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_mouseMoveEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::mousePressEvent(QMouseEvent *)
|
|
|
|
static void _init_cbs_mousePressEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mousePressEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_mousePressEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::mouseReleaseEvent(QMouseEvent *)
|
|
|
|
static void _init_cbs_mouseReleaseEvent_1738_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QMouseEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMouseEvent *arg1 = args.read<QMouseEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_mouseReleaseEvent_1738_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_mouseReleaseEvent_1738_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::moveEvent(QMoveEvent *)
|
|
|
|
static void _init_cbs_moveEvent_1624_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QMoveEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QMoveEvent *arg1 = args.read<QMoveEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_moveEvent_1624_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_moveEvent_1624_0 = cb;
|
|
}
|
|
|
|
|
|
// bool QMenu::nativeEvent(const QByteArray &eventType, void *message, long int *result)
|
|
|
|
static void _init_cbs_nativeEvent_4678_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("eventType");
|
|
decl->add_arg<const QByteArray & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("message");
|
|
decl->add_arg<void * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("result");
|
|
decl->add_arg<long int * > (argspec_2);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QByteArray &arg1 = args.read<const QByteArray & > (heap);
|
|
void *arg2 = args.read<void * > (heap);
|
|
long int *arg3 = args.read<long int * > (heap);
|
|
ret.write<bool > ((bool)((QMenu_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3));
|
|
}
|
|
|
|
static void _set_callback_cbs_nativeEvent_4678_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_nativeEvent_4678_0 = cb;
|
|
}
|
|
|
|
|
|
// QPaintEngine *QMenu::paintEngine()
|
|
|
|
static void _init_cbs_paintEngine_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPaintEngine * > ();
|
|
}
|
|
|
|
static void _call_cbs_paintEngine_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPaintEngine * > ((QPaintEngine *)((QMenu_Adaptor *)cls)->cbs_paintEngine_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_paintEngine_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_paintEngine_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::paintEvent(QPaintEvent *)
|
|
|
|
static void _init_cbs_paintEvent_1725_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QPaintEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QPaintEvent *arg1 = args.read<QPaintEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_paintEvent_1725_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_paintEvent_1725_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed int QMenu::receivers(const char *signal)
|
|
|
|
static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("signal");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
ret.write<int > ((int)((QMenu_Adaptor *)cls)->fp_QMenu_receivers_c1731 (arg1));
|
|
}
|
|
|
|
|
|
// QPaintDevice *QMenu::redirected(QPoint *offset)
|
|
|
|
static void _init_cbs_redirected_c1225_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("offset");
|
|
decl->add_arg<QPoint * > (argspec_0);
|
|
decl->set_return<QPaintDevice * > ();
|
|
}
|
|
|
|
static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QPoint *arg1 = args.read<QPoint * > (heap);
|
|
ret.write<QPaintDevice * > ((QPaintDevice *)((QMenu_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_redirected_c1225_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_redirected_c1225_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::resizeEvent(QResizeEvent *)
|
|
|
|
static void _init_cbs_resizeEvent_1843_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QResizeEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QResizeEvent *arg1 = args.read<QResizeEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_resizeEvent_1843_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_resizeEvent_1843_0 = cb;
|
|
}
|
|
|
|
|
|
// exposed QObject *QMenu::sender()
|
|
|
|
static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QObject * > ();
|
|
}
|
|
|
|
static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QObject * > ((QObject *)((QMenu_Adaptor *)cls)->fp_QMenu_sender_c0 ());
|
|
}
|
|
|
|
|
|
// exposed int QMenu::senderSignalIndex()
|
|
|
|
static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QMenu_Adaptor *)cls)->fp_QMenu_senderSignalIndex_c0 ());
|
|
}
|
|
|
|
|
|
// void QMenu::setVisible(bool visible)
|
|
|
|
static void _init_cbs_setVisible_864_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("visible");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args.read<bool > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_setVisible_864_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_setVisible_864_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_setVisible_864_0 = cb;
|
|
}
|
|
|
|
|
|
// QPainter *QMenu::sharedPainter()
|
|
|
|
static void _init_cbs_sharedPainter_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPainter * > ();
|
|
}
|
|
|
|
static void _call_cbs_sharedPainter_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPainter * > ((QPainter *)((QMenu_Adaptor *)cls)->cbs_sharedPainter_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_sharedPainter_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_sharedPainter_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::showEvent(QShowEvent *)
|
|
|
|
static void _init_cbs_showEvent_1634_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QShowEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QShowEvent *arg1 = args.read<QShowEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_showEvent_1634_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_showEvent_1634_0 = cb;
|
|
}
|
|
|
|
|
|
// QSize QMenu::sizeHint()
|
|
|
|
static void _init_cbs_sizeHint_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_cbs_sizeHint_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QMenu_Adaptor *)cls)->cbs_sizeHint_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_sizeHint_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_sizeHint_c0_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::tabletEvent(QTabletEvent *)
|
|
|
|
static void _init_cbs_tabletEvent_1821_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QTabletEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QTabletEvent *arg1 = args.read<QTabletEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_tabletEvent_1821_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_tabletEvent_1821_0 = cb;
|
|
}
|
|
|
|
|
|
// void QMenu::timerEvent(QTimerEvent *)
|
|
|
|
static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QTimerEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QTimerEvent *arg1 = args.read<QTimerEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_timerEvent_1730_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QMenu::triggered(QAction *action)
|
|
|
|
static void _init_emitter_triggered_1309 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("action");
|
|
decl->add_arg<QAction * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QAction *arg1 = args.read<QAction * > (heap);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_triggered_1309 (arg1);
|
|
}
|
|
|
|
|
|
// exposed void QMenu::updateMicroFocus()
|
|
|
|
static void _init_fp_updateMicroFocus_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_fp_updateMicroFocus_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->fp_QMenu_updateMicroFocus_0 ();
|
|
}
|
|
|
|
|
|
// void QMenu::wheelEvent(QWheelEvent *)
|
|
|
|
static void _init_cbs_wheelEvent_1718_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<QWheelEvent * > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QWheelEvent *arg1 = args.read<QWheelEvent * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QMenu_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1);
|
|
}
|
|
|
|
static void _set_callback_cbs_wheelEvent_1718_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QMenu_Adaptor *)cls)->cb_wheelEvent_1718_0 = cb;
|
|
}
|
|
|
|
|
|
// emitter void QMenu::windowIconChanged(const QIcon &icon)
|
|
|
|
static void _init_emitter_windowIconChanged_1787 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("icon");
|
|
decl->add_arg<const QIcon & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QIcon &arg1 = args.read<const QIcon & > (heap);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_windowIconChanged_1787 (arg1);
|
|
}
|
|
|
|
|
|
// emitter void QMenu::windowIconTextChanged(const QString &iconText)
|
|
|
|
static void _init_emitter_windowIconTextChanged_2025 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("iconText");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_windowIconTextChanged_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);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_windowIconTextChanged_2025 (arg1);
|
|
}
|
|
|
|
|
|
// emitter void QMenu::windowTitleChanged(const QString &title)
|
|
|
|
static void _init_emitter_windowTitleChanged_2025 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("title");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_emitter_windowTitleChanged_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);
|
|
((QMenu_Adaptor *)cls)->emitter_QMenu_windowTitleChanged_2025 (arg1);
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QMenu> &qtdecl_QMenu ();
|
|
|
|
static gsi::Methods methods_QMenu_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QMenu::QMenu(QWidget *parent)\nThis method creates an object of class QMenu.", &_init_ctor_QMenu_Adaptor_1315, &_call_ctor_QMenu_Adaptor_1315);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QMenu::QMenu(const QString &title, QWidget *parent)\nThis method creates an object of class QMenu.", &_init_ctor_QMenu_Adaptor_3232, &_call_ctor_QMenu_Adaptor_3232);
|
|
methods += new qt_gsi::GenericMethod ("emit_aboutToHide", "@brief Emitter for signal void QMenu::aboutToHide()\nCall this method to emit this signal.", false, &_init_emitter_aboutToHide_0, &_call_emitter_aboutToHide_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_aboutToShow", "@brief Emitter for signal void QMenu::aboutToShow()\nCall this method to emit this signal.", false, &_init_emitter_aboutToShow_0, &_call_emitter_aboutToShow_0);
|
|
methods += new qt_gsi::GenericMethod ("*actionEvent", "@hide", false, &_init_cbs_actionEvent_1823_0, &_call_cbs_actionEvent_1823_0);
|
|
methods += new qt_gsi::GenericMethod ("*actionEvent", "@brief Virtual method void QMenu::actionEvent(QActionEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_actionEvent_1823_0, &_call_cbs_actionEvent_1823_0, &_set_callback_cbs_actionEvent_1823_0);
|
|
methods += new qt_gsi::GenericMethod ("*changeEvent", "@hide", false, &_init_cbs_changeEvent_1217_0, &_call_cbs_changeEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*changeEvent", "@brief Virtual method void QMenu::changeEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_changeEvent_1217_0, &_call_cbs_changeEvent_1217_0, &_set_callback_cbs_changeEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0);
|
|
methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QMenu::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0);
|
|
methods += new qt_gsi::GenericMethod ("*closeEvent", "@hide", false, &_init_cbs_closeEvent_1719_0, &_call_cbs_closeEvent_1719_0);
|
|
methods += new qt_gsi::GenericMethod ("*closeEvent", "@brief Virtual method void QMenu::closeEvent(QCloseEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_closeEvent_1719_0, &_call_cbs_closeEvent_1719_0, &_set_callback_cbs_closeEvent_1719_0);
|
|
methods += new qt_gsi::GenericMethod ("*columnCount", "@brief Method int QMenu::columnCount()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_columnCount_c0, &_call_fp_columnCount_c0);
|
|
methods += new qt_gsi::GenericMethod ("*contextMenuEvent", "@hide", false, &_init_cbs_contextMenuEvent_2363_0, &_call_cbs_contextMenuEvent_2363_0);
|
|
methods += new qt_gsi::GenericMethod ("*contextMenuEvent", "@brief Virtual method void QMenu::contextMenuEvent(QContextMenuEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_contextMenuEvent_2363_0, &_call_cbs_contextMenuEvent_2363_0, &_set_callback_cbs_contextMenuEvent_2363_0);
|
|
methods += new qt_gsi::GenericMethod ("*qt_create", "@brief Method void QMenu::create(WId, bool initializeWindow, bool destroyOldWindow)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_create_2208, &_call_fp_create_2208);
|
|
methods += new qt_gsi::GenericMethod ("emit_customContextMenuRequested", "@brief Emitter for signal void QMenu::customContextMenuRequested(const QPoint &pos)\nCall this method to emit this signal.", false, &_init_emitter_customContextMenuRequested_1916, &_call_emitter_customContextMenuRequested_1916);
|
|
methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QMenu::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*qt_destroy", "@brief Method void QMenu::destroy(bool destroyWindow, bool destroySubWindows)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_destroy_1620, &_call_fp_destroy_1620);
|
|
methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QMenu::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302);
|
|
methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0);
|
|
methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QMenu::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragEnterEvent", "@hide", false, &_init_cbs_dragEnterEvent_2109_0, &_call_cbs_dragEnterEvent_2109_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragEnterEvent", "@brief Virtual method void QMenu::dragEnterEvent(QDragEnterEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragEnterEvent_2109_0, &_call_cbs_dragEnterEvent_2109_0, &_set_callback_cbs_dragEnterEvent_2109_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragLeaveEvent", "@hide", false, &_init_cbs_dragLeaveEvent_2092_0, &_call_cbs_dragLeaveEvent_2092_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragLeaveEvent", "@brief Virtual method void QMenu::dragLeaveEvent(QDragLeaveEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragLeaveEvent_2092_0, &_call_cbs_dragLeaveEvent_2092_0, &_set_callback_cbs_dragLeaveEvent_2092_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragMoveEvent", "@hide", false, &_init_cbs_dragMoveEvent_2006_0, &_call_cbs_dragMoveEvent_2006_0);
|
|
methods += new qt_gsi::GenericMethod ("*dragMoveEvent", "@brief Virtual method void QMenu::dragMoveEvent(QDragMoveEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dragMoveEvent_2006_0, &_call_cbs_dragMoveEvent_2006_0, &_set_callback_cbs_dragMoveEvent_2006_0);
|
|
methods += new qt_gsi::GenericMethod ("*dropEvent", "@hide", false, &_init_cbs_dropEvent_1622_0, &_call_cbs_dropEvent_1622_0);
|
|
methods += new qt_gsi::GenericMethod ("*dropEvent", "@brief Virtual method void QMenu::dropEvent(QDropEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_dropEvent_1622_0, &_call_cbs_dropEvent_1622_0, &_set_callback_cbs_dropEvent_1622_0);
|
|
methods += new qt_gsi::GenericMethod ("*enterEvent", "@hide", false, &_init_cbs_enterEvent_1217_0, &_call_cbs_enterEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*enterEvent", "@brief Virtual method void QMenu::enterEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_enterEvent_1217_0, &_call_cbs_enterEvent_1217_0, &_set_callback_cbs_enterEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*event", "@brief Virtual method bool QMenu::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0);
|
|
methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QMenu::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusInEvent", "@hide", false, &_init_cbs_focusInEvent_1729_0, &_call_cbs_focusInEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusInEvent", "@brief Virtual method void QMenu::focusInEvent(QFocusEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusInEvent_1729_0, &_call_cbs_focusInEvent_1729_0, &_set_callback_cbs_focusInEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusNextChild", "@brief Method bool QMenu::focusNextChild()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_focusNextChild_0, &_call_fp_focusNextChild_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusNextPrevChild", "@hide", false, &_init_cbs_focusNextPrevChild_864_0, &_call_cbs_focusNextPrevChild_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusNextPrevChild", "@brief Virtual method bool QMenu::focusNextPrevChild(bool next)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusNextPrevChild_864_0, &_call_cbs_focusNextPrevChild_864_0, &_set_callback_cbs_focusNextPrevChild_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusOutEvent", "@hide", false, &_init_cbs_focusOutEvent_1729_0, &_call_cbs_focusOutEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusOutEvent", "@brief Virtual method void QMenu::focusOutEvent(QFocusEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_focusOutEvent_1729_0, &_call_cbs_focusOutEvent_1729_0, &_set_callback_cbs_focusOutEvent_1729_0);
|
|
methods += new qt_gsi::GenericMethod ("*focusPreviousChild", "@brief Method bool QMenu::focusPreviousChild()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_focusPreviousChild_0, &_call_fp_focusPreviousChild_0);
|
|
methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@hide", true, &_init_cbs_hasHeightForWidth_c0_0, &_call_cbs_hasHeightForWidth_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("hasHeightForWidth", "@brief Virtual method bool QMenu::hasHeightForWidth()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_hasHeightForWidth_c0_0, &_call_cbs_hasHeightForWidth_c0_0, &_set_callback_cbs_hasHeightForWidth_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("heightForWidth", "@hide", true, &_init_cbs_heightForWidth_c767_0, &_call_cbs_heightForWidth_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("heightForWidth", "@brief Virtual method int QMenu::heightForWidth(int)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_heightForWidth_c767_0, &_call_cbs_heightForWidth_c767_0, &_set_callback_cbs_heightForWidth_c767_0);
|
|
methods += new qt_gsi::GenericMethod ("*hideEvent", "@hide", false, &_init_cbs_hideEvent_1595_0, &_call_cbs_hideEvent_1595_0);
|
|
methods += new qt_gsi::GenericMethod ("*hideEvent", "@brief Virtual method void QMenu::hideEvent(QHideEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_hideEvent_1595_0, &_call_cbs_hideEvent_1595_0, &_set_callback_cbs_hideEvent_1595_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_hovered", "@brief Emitter for signal void QMenu::hovered(QAction *action)\nCall this method to emit this signal.", false, &_init_emitter_hovered_1309, &_call_emitter_hovered_1309);
|
|
methods += new qt_gsi::GenericMethod ("*initPainter", "@hide", true, &_init_cbs_initPainter_c1426_0, &_call_cbs_initPainter_c1426_0);
|
|
methods += new qt_gsi::GenericMethod ("*initPainter", "@brief Virtual method void QMenu::initPainter(QPainter *painter)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_initPainter_c1426_0, &_call_cbs_initPainter_c1426_0, &_set_callback_cbs_initPainter_c1426_0);
|
|
methods += new qt_gsi::GenericMethod ("*initStyleOption", "@brief Method void QMenu::initStyleOption(QStyleOptionMenuItem *option, const QAction *action)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_initStyleOption_c4565, &_call_fp_initStyleOption_c4565);
|
|
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 QMenu::inputMethodEvent(QInputMethodEvent *)\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 QMenu::inputMethodQuery(Qt::InputMethodQuery)\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 ("*isSignalConnected", "@brief Method bool QMenu::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394);
|
|
methods += new qt_gsi::GenericMethod ("*keyPressEvent", "@hide", false, &_init_cbs_keyPressEvent_1514_0, &_call_cbs_keyPressEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*keyPressEvent", "@brief Virtual method void QMenu::keyPressEvent(QKeyEvent *)\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 QMenu::keyReleaseEvent(QKeyEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_keyReleaseEvent_1514_0, &_call_cbs_keyReleaseEvent_1514_0, &_set_callback_cbs_keyReleaseEvent_1514_0);
|
|
methods += new qt_gsi::GenericMethod ("*leaveEvent", "@hide", false, &_init_cbs_leaveEvent_1217_0, &_call_cbs_leaveEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*leaveEvent", "@brief Virtual method void QMenu::leaveEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_leaveEvent_1217_0, &_call_cbs_leaveEvent_1217_0, &_set_callback_cbs_leaveEvent_1217_0);
|
|
methods += new qt_gsi::GenericMethod ("*metric", "@hide", true, &_init_cbs_metric_c3445_0, &_call_cbs_metric_c3445_0);
|
|
methods += new qt_gsi::GenericMethod ("*metric", "@brief Virtual method int QMenu::metric(QPaintDevice::PaintDeviceMetric)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_metric_c3445_0, &_call_cbs_metric_c3445_0, &_set_callback_cbs_metric_c3445_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumSizeHint", "@hide", true, &_init_cbs_minimumSizeHint_c0_0, &_call_cbs_minimumSizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("minimumSizeHint", "@brief Virtual method QSize QMenu::minimumSizeHint()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_minimumSizeHint_c0_0, &_call_cbs_minimumSizeHint_c0_0, &_set_callback_cbs_minimumSizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseDoubleClickEvent", "@hide", false, &_init_cbs_mouseDoubleClickEvent_1738_0, &_call_cbs_mouseDoubleClickEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseDoubleClickEvent", "@brief Virtual method void QMenu::mouseDoubleClickEvent(QMouseEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseDoubleClickEvent_1738_0, &_call_cbs_mouseDoubleClickEvent_1738_0, &_set_callback_cbs_mouseDoubleClickEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseMoveEvent", "@hide", false, &_init_cbs_mouseMoveEvent_1738_0, &_call_cbs_mouseMoveEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseMoveEvent", "@brief Virtual method void QMenu::mouseMoveEvent(QMouseEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseMoveEvent_1738_0, &_call_cbs_mouseMoveEvent_1738_0, &_set_callback_cbs_mouseMoveEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mousePressEvent", "@hide", false, &_init_cbs_mousePressEvent_1738_0, &_call_cbs_mousePressEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mousePressEvent", "@brief Virtual method void QMenu::mousePressEvent(QMouseEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mousePressEvent_1738_0, &_call_cbs_mousePressEvent_1738_0, &_set_callback_cbs_mousePressEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseReleaseEvent", "@hide", false, &_init_cbs_mouseReleaseEvent_1738_0, &_call_cbs_mouseReleaseEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*mouseReleaseEvent", "@brief Virtual method void QMenu::mouseReleaseEvent(QMouseEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_mouseReleaseEvent_1738_0, &_call_cbs_mouseReleaseEvent_1738_0, &_set_callback_cbs_mouseReleaseEvent_1738_0);
|
|
methods += new qt_gsi::GenericMethod ("*moveEvent", "@hide", false, &_init_cbs_moveEvent_1624_0, &_call_cbs_moveEvent_1624_0);
|
|
methods += new qt_gsi::GenericMethod ("*moveEvent", "@brief Virtual method void QMenu::moveEvent(QMoveEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_moveEvent_1624_0, &_call_cbs_moveEvent_1624_0, &_set_callback_cbs_moveEvent_1624_0);
|
|
methods += new qt_gsi::GenericMethod ("*nativeEvent", "@hide", false, &_init_cbs_nativeEvent_4678_0, &_call_cbs_nativeEvent_4678_0);
|
|
methods += new qt_gsi::GenericMethod ("*nativeEvent", "@brief Virtual method bool QMenu::nativeEvent(const QByteArray &eventType, void *message, long int *result)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_nativeEvent_4678_0, &_call_cbs_nativeEvent_4678_0, &_set_callback_cbs_nativeEvent_4678_0);
|
|
methods += new qt_gsi::GenericMethod ("paintEngine", "@hide", true, &_init_cbs_paintEngine_c0_0, &_call_cbs_paintEngine_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Virtual method QPaintEngine *QMenu::paintEngine()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_paintEngine_c0_0, &_call_cbs_paintEngine_c0_0, &_set_callback_cbs_paintEngine_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*paintEvent", "@hide", false, &_init_cbs_paintEvent_1725_0, &_call_cbs_paintEvent_1725_0);
|
|
methods += new qt_gsi::GenericMethod ("*paintEvent", "@brief Virtual method void QMenu::paintEvent(QPaintEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_paintEvent_1725_0, &_call_cbs_paintEvent_1725_0, &_set_callback_cbs_paintEvent_1725_0);
|
|
methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QMenu::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731);
|
|
methods += new qt_gsi::GenericMethod ("*redirected", "@hide", true, &_init_cbs_redirected_c1225_0, &_call_cbs_redirected_c1225_0);
|
|
methods += new qt_gsi::GenericMethod ("*redirected", "@brief Virtual method QPaintDevice *QMenu::redirected(QPoint *offset)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_redirected_c1225_0, &_call_cbs_redirected_c1225_0, &_set_callback_cbs_redirected_c1225_0);
|
|
methods += new qt_gsi::GenericMethod ("*resizeEvent", "@hide", false, &_init_cbs_resizeEvent_1843_0, &_call_cbs_resizeEvent_1843_0);
|
|
methods += new qt_gsi::GenericMethod ("*resizeEvent", "@brief Virtual method void QMenu::resizeEvent(QResizeEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_resizeEvent_1843_0, &_call_cbs_resizeEvent_1843_0, &_set_callback_cbs_resizeEvent_1843_0);
|
|
methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QMenu::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0);
|
|
methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QMenu::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0);
|
|
methods += new qt_gsi::GenericMethod ("setVisible", "@hide", false, &_init_cbs_setVisible_864_0, &_call_cbs_setVisible_864_0);
|
|
methods += new qt_gsi::GenericMethod ("setVisible", "@brief Virtual method void QMenu::setVisible(bool visible)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setVisible_864_0, &_call_cbs_setVisible_864_0, &_set_callback_cbs_setVisible_864_0);
|
|
methods += new qt_gsi::GenericMethod ("*sharedPainter", "@hide", true, &_init_cbs_sharedPainter_c0_0, &_call_cbs_sharedPainter_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*sharedPainter", "@brief Virtual method QPainter *QMenu::sharedPainter()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_sharedPainter_c0_0, &_call_cbs_sharedPainter_c0_0, &_set_callback_cbs_sharedPainter_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*showEvent", "@hide", false, &_init_cbs_showEvent_1634_0, &_call_cbs_showEvent_1634_0);
|
|
methods += new qt_gsi::GenericMethod ("*showEvent", "@brief Virtual method void QMenu::showEvent(QShowEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_showEvent_1634_0, &_call_cbs_showEvent_1634_0, &_set_callback_cbs_showEvent_1634_0);
|
|
methods += new qt_gsi::GenericMethod ("sizeHint", "@hide", true, &_init_cbs_sizeHint_c0_0, &_call_cbs_sizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("sizeHint", "@brief Virtual method QSize QMenu::sizeHint()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_sizeHint_c0_0, &_call_cbs_sizeHint_c0_0, &_set_callback_cbs_sizeHint_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("*tabletEvent", "@hide", false, &_init_cbs_tabletEvent_1821_0, &_call_cbs_tabletEvent_1821_0);
|
|
methods += new qt_gsi::GenericMethod ("*tabletEvent", "@brief Virtual method void QMenu::tabletEvent(QTabletEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_tabletEvent_1821_0, &_call_cbs_tabletEvent_1821_0, &_set_callback_cbs_tabletEvent_1821_0);
|
|
methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0);
|
|
methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QMenu::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_triggered", "@brief Emitter for signal void QMenu::triggered(QAction *action)\nCall this method to emit this signal.", false, &_init_emitter_triggered_1309, &_call_emitter_triggered_1309);
|
|
methods += new qt_gsi::GenericMethod ("*updateMicroFocus", "@brief Method void QMenu::updateMicroFocus()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_updateMicroFocus_0, &_call_fp_updateMicroFocus_0);
|
|
methods += new qt_gsi::GenericMethod ("*wheelEvent", "@hide", false, &_init_cbs_wheelEvent_1718_0, &_call_cbs_wheelEvent_1718_0);
|
|
methods += new qt_gsi::GenericMethod ("*wheelEvent", "@brief Virtual method void QMenu::wheelEvent(QWheelEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_wheelEvent_1718_0, &_call_cbs_wheelEvent_1718_0, &_set_callback_cbs_wheelEvent_1718_0);
|
|
methods += new qt_gsi::GenericMethod ("emit_windowIconChanged", "@brief Emitter for signal void QMenu::windowIconChanged(const QIcon &icon)\nCall this method to emit this signal.", false, &_init_emitter_windowIconChanged_1787, &_call_emitter_windowIconChanged_1787);
|
|
methods += new qt_gsi::GenericMethod ("emit_windowIconTextChanged", "@brief Emitter for signal void QMenu::windowIconTextChanged(const QString &iconText)\nCall this method to emit this signal.", false, &_init_emitter_windowIconTextChanged_2025, &_call_emitter_windowIconTextChanged_2025);
|
|
methods += new qt_gsi::GenericMethod ("emit_windowTitleChanged", "@brief Emitter for signal void QMenu::windowTitleChanged(const QString &title)\nCall this method to emit this signal.", false, &_init_emitter_windowTitleChanged_2025, &_call_emitter_windowTitleChanged_2025);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QMenu_Adaptor> decl_QMenu_Adaptor (qtdecl_QMenu (), "QMenu",
|
|
methods_QMenu_Adaptor (),
|
|
"@qt\n@brief Binding of QMenu");
|
|
|
|
}
|
|
|