/* KLayout Layout Viewer Copyright (C) 2006-2017 Matthias Koefferlein This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** * @file gsiDeclQStateMachine.cc * * DO NOT EDIT THIS FILE. * This file has been created automatically */ #include #include #include #include #include #include #include #include #include #include #include #include #include "gsiQt.h" #include "gsiQtCommon.h" #include "gsiDeclQtTypeTraits.h" #include // ----------------------------------------------------------------------- // class QStateMachine // get static meta object static void _init_smo (qt_gsi::GenericStaticMethod *decl) { decl->set_return (); } static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) { ret.write (QStateMachine::staticMetaObject); } // void QStateMachine::addDefaultAnimation(QAbstractAnimation *animation) static void _init_f_addDefaultAnimation_2451 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("animation"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_addDefaultAnimation_2451 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QAbstractAnimation *arg1 = args.read (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->addDefaultAnimation (arg1); } // void QStateMachine::addState(QAbstractState *state) static void _init_f_addState_2036 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("state"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_addState_2036 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QAbstractState *arg1 = args.read (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->addState (arg1); } // bool QStateMachine::cancelDelayedEvent(int id) static void _init_f_cancelDelayedEvent_767 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("id"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_cancelDelayedEvent_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; int arg1 = args.read (heap); ret.write ((bool)((QStateMachine *)cls)->cancelDelayedEvent (arg1)); } // void QStateMachine::clearError() static void _init_f_clearError_0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_clearError_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->clearError (); } // QSet QStateMachine::configuration() static void _init_f_configuration_c0 (qt_gsi::GenericMethod *decl) { decl->set_return > (); } static void _call_f_configuration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write > ((QSet)((QStateMachine *)cls)->configuration ()); } // QList QStateMachine::defaultAnimations() static void _init_f_defaultAnimations_c0 (qt_gsi::GenericMethod *decl) { decl->set_return > (); } static void _call_f_defaultAnimations_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write > ((QList)((QStateMachine *)cls)->defaultAnimations ()); } // QStateMachine::Error QStateMachine::error() static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) { decl->set_return::target_type > (); } static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QStateMachine *)cls)->error ())); } // QString QStateMachine::errorString() static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write ((QString)((QStateMachine *)cls)->errorString ()); } // (QObject *, QEvent *) static void _init_f_eventFilter_2411 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("watched"); decl->add_arg (argspec_0); static gsi::ArgSpecBase argspec_1 ("event"); decl->add_arg (argspec_1); decl->set_return (); } static void _call_f_eventFilter_2411 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QObject *arg1 = args.read (heap); QEvent *arg2 = args.read (heap); ret.write ((bool)((QStateMachine *)cls)->eventFilter (arg1, arg2)); } // QState::RestorePolicy QStateMachine::globalRestorePolicy() static void _init_f_globalRestorePolicy_c0 (qt_gsi::GenericMethod *decl) { decl->set_return::target_type > (); } static void _call_f_globalRestorePolicy_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QStateMachine *)cls)->globalRestorePolicy ())); } // bool QStateMachine::isAnimated() static void _init_f_isAnimated_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_isAnimated_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write ((bool)((QStateMachine *)cls)->isAnimated ()); } // bool QStateMachine::isRunning() static void _init_f_isRunning_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_isRunning_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write ((bool)((QStateMachine *)cls)->isRunning ()); } // int QStateMachine::postDelayedEvent(QEvent *event, int delay) static void _init_f_postDelayedEvent_1876 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); static gsi::ArgSpecBase argspec_1 ("delay"); decl->add_arg (argspec_1); decl->set_return (); } static void _call_f_postDelayedEvent_1876 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QEvent *arg1 = args.read (heap); int arg2 = args.read (heap); ret.write ((int)((QStateMachine *)cls)->postDelayedEvent (arg1, arg2)); } // void QStateMachine::postEvent(QEvent *event, QStateMachine::EventPriority priority) static void _init_f_postEvent_4328 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); static gsi::ArgSpecBase argspec_1 ("priority", true, "QStateMachine::NormalPriority"); decl->add_arg::target_type & > (argspec_1); decl->set_return (); } static void _call_f_postEvent_4328 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QEvent *arg1 = args.read (heap); const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QStateMachine::NormalPriority)); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->postEvent (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } // void QStateMachine::removeDefaultAnimation(QAbstractAnimation *animation) static void _init_f_removeDefaultAnimation_2451 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("animation"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_removeDefaultAnimation_2451 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QAbstractAnimation *arg1 = args.read (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->removeDefaultAnimation (arg1); } // void QStateMachine::removeState(QAbstractState *state) static void _init_f_removeState_2036 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("state"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_removeState_2036 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QAbstractState *arg1 = args.read (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->removeState (arg1); } // void QStateMachine::setAnimated(bool enabled) static void _init_f_setAnimated_864 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("enabled"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_setAnimated_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->setAnimated (arg1); } // void QStateMachine::setGlobalRestorePolicy(QState::RestorePolicy restorePolicy) static void _init_f_setGlobalRestorePolicy_2510 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("restorePolicy"); decl->add_arg::target_type & > (argspec_0); decl->set_return (); } static void _call_f_setGlobalRestorePolicy_2510 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->setGlobalRestorePolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } // void QStateMachine::setRunning(bool running) static void _init_f_setRunning_864 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("running"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_setRunning_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->setRunning (arg1); } // void QStateMachine::start() static void _init_f_start_0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_start_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->start (); } // void QStateMachine::stop() static void _init_f_stop_0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_stop_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->stop (); } // static QString QStateMachine::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 (argspec_0); static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); decl->add_arg (argspec_1); static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); decl->add_arg (argspec_2); decl->set_return (); } 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 (heap); const char *arg2 = args ? args.read (heap) : (const char *)(__null); int arg3 = args ? args.read (heap) : (int)(-1); ret.write ((QString)QStateMachine::tr (arg1, arg2, arg3)); } // static QString QStateMachine::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 (argspec_0); static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); decl->add_arg (argspec_1); static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); decl->add_arg (argspec_2); decl->set_return (); } 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 (heap); const char *arg2 = args ? args.read (heap) : (const char *)(__null); int arg3 = args ? args.read (heap) : (int)(-1); ret.write ((QString)QStateMachine::trUtf8 (arg1, arg2, arg3)); } namespace gsi { static gsi::Methods methods_QStateMachine () { 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 ("addDefaultAnimation", "@brief Method void QStateMachine::addDefaultAnimation(QAbstractAnimation *animation)\n", false, &_init_f_addDefaultAnimation_2451, &_call_f_addDefaultAnimation_2451); methods += new qt_gsi::GenericMethod ("addState", "@brief Method void QStateMachine::addState(QAbstractState *state)\n", false, &_init_f_addState_2036, &_call_f_addState_2036); methods += new qt_gsi::GenericMethod ("cancelDelayedEvent", "@brief Method bool QStateMachine::cancelDelayedEvent(int id)\n", false, &_init_f_cancelDelayedEvent_767, &_call_f_cancelDelayedEvent_767); methods += new qt_gsi::GenericMethod ("clearError", "@brief Method void QStateMachine::clearError()\n", false, &_init_f_clearError_0, &_call_f_clearError_0); methods += new qt_gsi::GenericMethod ("configuration", "@brief Method QSet QStateMachine::configuration()\n", true, &_init_f_configuration_c0, &_call_f_configuration_c0); methods += new qt_gsi::GenericMethod ("defaultAnimations", "@brief Method QList QStateMachine::defaultAnimations()\n", true, &_init_f_defaultAnimations_c0, &_call_f_defaultAnimations_c0); methods += new qt_gsi::GenericMethod ("error", "@brief Method QStateMachine::Error QStateMachine::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); methods += new qt_gsi::GenericMethod (":errorString", "@brief Method QString QStateMachine::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Method (QObject *, QEvent *)\nThis is a reimplementation of QObject::eventFilter", false, &_init_f_eventFilter_2411, &_call_f_eventFilter_2411); methods += new qt_gsi::GenericMethod (":globalRestorePolicy", "@brief Method QState::RestorePolicy QStateMachine::globalRestorePolicy()\n", true, &_init_f_globalRestorePolicy_c0, &_call_f_globalRestorePolicy_c0); methods += new qt_gsi::GenericMethod ("isAnimated?|:animated", "@brief Method bool QStateMachine::isAnimated()\n", true, &_init_f_isAnimated_c0, &_call_f_isAnimated_c0); methods += new qt_gsi::GenericMethod ("isRunning?|:running", "@brief Method bool QStateMachine::isRunning()\n", true, &_init_f_isRunning_c0, &_call_f_isRunning_c0); methods += new qt_gsi::GenericMethod ("postDelayedEvent", "@brief Method int QStateMachine::postDelayedEvent(QEvent *event, int delay)\n", false, &_init_f_postDelayedEvent_1876, &_call_f_postDelayedEvent_1876); methods += new qt_gsi::GenericMethod ("postEvent", "@brief Method void QStateMachine::postEvent(QEvent *event, QStateMachine::EventPriority priority)\n", false, &_init_f_postEvent_4328, &_call_f_postEvent_4328); methods += new qt_gsi::GenericMethod ("removeDefaultAnimation", "@brief Method void QStateMachine::removeDefaultAnimation(QAbstractAnimation *animation)\n", false, &_init_f_removeDefaultAnimation_2451, &_call_f_removeDefaultAnimation_2451); methods += new qt_gsi::GenericMethod ("removeState", "@brief Method void QStateMachine::removeState(QAbstractState *state)\n", false, &_init_f_removeState_2036, &_call_f_removeState_2036); methods += new qt_gsi::GenericMethod ("setAnimated|animated=", "@brief Method void QStateMachine::setAnimated(bool enabled)\n", false, &_init_f_setAnimated_864, &_call_f_setAnimated_864); methods += new qt_gsi::GenericMethod ("setGlobalRestorePolicy|globalRestorePolicy=", "@brief Method void QStateMachine::setGlobalRestorePolicy(QState::RestorePolicy restorePolicy)\n", false, &_init_f_setGlobalRestorePolicy_2510, &_call_f_setGlobalRestorePolicy_2510); methods += new qt_gsi::GenericMethod ("setRunning|running=", "@brief Method void QStateMachine::setRunning(bool running)\n", false, &_init_f_setRunning_864, &_call_f_setRunning_864); methods += new qt_gsi::GenericMethod ("start", "@brief Method void QStateMachine::start()\n", false, &_init_f_start_0, &_call_f_start_0); methods += new qt_gsi::GenericMethod ("stop", "@brief Method void QStateMachine::stop()\n", false, &_init_f_stop_0, &_call_f_stop_0); methods += gsi::qt_signal ("activeChanged(bool)", "activeChanged", gsi::arg("active"), "@brief Signal declaration for QStateMachine::activeChanged(bool active)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QStateMachine::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("runningChanged(bool)", "runningChanged", gsi::arg("running"), "@brief Signal declaration for QStateMachine::runningChanged(bool running)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QStateMachine::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 QStateMachine::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 &qtdecl_QState (); qt_gsi::QtNativeClass decl_QStateMachine (qtdecl_QState (), "QStateMachine_Native", methods_QStateMachine (), "@hide\n@alias QStateMachine"); GSIQT_PUBLIC gsi::Class &qtdecl_QStateMachine () { return decl_QStateMachine; } } class QStateMachine_Adaptor : public QStateMachine, public qt_gsi::QtObjectBase { public: virtual ~QStateMachine_Adaptor(); // [adaptor ctor] QStateMachine::QStateMachine(QObject *parent) QStateMachine_Adaptor() : QStateMachine() { qt_gsi::QtObjectBase::init (this); } // [adaptor ctor] QStateMachine::QStateMachine(QObject *parent) QStateMachine_Adaptor(QObject *parent) : QStateMachine(parent) { qt_gsi::QtObjectBase::init (this); } // [adaptor ctor] QStateMachine::QStateMachine(QState::ChildMode childMode, QObject *parent) QStateMachine_Adaptor(QState::ChildMode childMode) : QStateMachine(childMode) { qt_gsi::QtObjectBase::init (this); } // [adaptor ctor] QStateMachine::QStateMachine(QState::ChildMode childMode, QObject *parent) QStateMachine_Adaptor(QState::ChildMode childMode, QObject *parent) : QStateMachine(childMode, parent) { qt_gsi::QtObjectBase::init (this); } // [expose] bool QStateMachine::isSignalConnected(const QMetaMethod &signal) bool fp_QStateMachine_isSignalConnected_c2394 (const QMetaMethod &signal) const { return QStateMachine::isSignalConnected(signal); } // [expose] int QStateMachine::receivers(const char *signal) int fp_QStateMachine_receivers_c1731 (const char *signal) const { return QStateMachine::receivers(signal); } // [expose] QObject *QStateMachine::sender() QObject * fp_QStateMachine_sender_c0 () const { return QStateMachine::sender(); } // [expose] int QStateMachine::senderSignalIndex() int fp_QStateMachine_senderSignalIndex_c0 () const { return QStateMachine::senderSignalIndex(); } // [emitter impl] void QStateMachine::activeChanged(bool active) void emitter_QStateMachine_activeChanged_864(bool active) { emit QStateMachine::activeChanged(active); } // [emitter impl] void QStateMachine::destroyed(QObject *) void emitter_QStateMachine_destroyed_1302(QObject *arg1) { emit QStateMachine::destroyed(arg1); } // [adaptor impl] bool QStateMachine::eventFilter(QObject *watched, QEvent *event) bool cbs_eventFilter_2411_0(QObject *watched, QEvent *event) { return QStateMachine::eventFilter(watched, event); } virtual bool eventFilter(QObject *watched, QEvent *event) { if (cb_eventFilter_2411_0.can_issue()) { return cb_eventFilter_2411_0.issue(&QStateMachine_Adaptor::cbs_eventFilter_2411_0, watched, event); } else { return QStateMachine::eventFilter(watched, event); } } // [emitter impl] void QStateMachine::runningChanged(bool running) void emitter_QStateMachine_runningChanged_864(bool running) { emit QStateMachine::runningChanged(running); } // [adaptor impl] void QStateMachine::beginMicrostep(QEvent *event) void cbs_beginMicrostep_1217_0(QEvent *event) { QStateMachine::beginMicrostep(event); } virtual void beginMicrostep(QEvent *event) { if (cb_beginMicrostep_1217_0.can_issue()) { cb_beginMicrostep_1217_0.issue(&QStateMachine_Adaptor::cbs_beginMicrostep_1217_0, event); } else { QStateMachine::beginMicrostep(event); } } // [adaptor impl] void QStateMachine::beginSelectTransitions(QEvent *event) void cbs_beginSelectTransitions_1217_0(QEvent *event) { QStateMachine::beginSelectTransitions(event); } virtual void beginSelectTransitions(QEvent *event) { if (cb_beginSelectTransitions_1217_0.can_issue()) { cb_beginSelectTransitions_1217_0.issue(&QStateMachine_Adaptor::cbs_beginSelectTransitions_1217_0, event); } else { QStateMachine::beginSelectTransitions(event); } } // [adaptor impl] void QStateMachine::childEvent(QChildEvent *) void cbs_childEvent_1701_0(QChildEvent *arg1) { QStateMachine::childEvent(arg1); } virtual void childEvent(QChildEvent *arg1) { if (cb_childEvent_1701_0.can_issue()) { cb_childEvent_1701_0.issue(&QStateMachine_Adaptor::cbs_childEvent_1701_0, arg1); } else { QStateMachine::childEvent(arg1); } } // [adaptor impl] void QStateMachine::customEvent(QEvent *) void cbs_customEvent_1217_0(QEvent *arg1) { QStateMachine::customEvent(arg1); } virtual void customEvent(QEvent *arg1) { if (cb_customEvent_1217_0.can_issue()) { cb_customEvent_1217_0.issue(&QStateMachine_Adaptor::cbs_customEvent_1217_0, arg1); } else { QStateMachine::customEvent(arg1); } } // [adaptor impl] void QStateMachine::disconnectNotify(const QMetaMethod &signal) void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) { QStateMachine::disconnectNotify(signal); } virtual void disconnectNotify(const QMetaMethod &signal) { if (cb_disconnectNotify_2394_0.can_issue()) { cb_disconnectNotify_2394_0.issue(&QStateMachine_Adaptor::cbs_disconnectNotify_2394_0, signal); } else { QStateMachine::disconnectNotify(signal); } } // [adaptor impl] void QStateMachine::endMicrostep(QEvent *event) void cbs_endMicrostep_1217_0(QEvent *event) { QStateMachine::endMicrostep(event); } virtual void endMicrostep(QEvent *event) { if (cb_endMicrostep_1217_0.can_issue()) { cb_endMicrostep_1217_0.issue(&QStateMachine_Adaptor::cbs_endMicrostep_1217_0, event); } else { QStateMachine::endMicrostep(event); } } // [adaptor impl] void QStateMachine::endSelectTransitions(QEvent *event) void cbs_endSelectTransitions_1217_0(QEvent *event) { QStateMachine::endSelectTransitions(event); } virtual void endSelectTransitions(QEvent *event) { if (cb_endSelectTransitions_1217_0.can_issue()) { cb_endSelectTransitions_1217_0.issue(&QStateMachine_Adaptor::cbs_endSelectTransitions_1217_0, event); } else { QStateMachine::endSelectTransitions(event); } } // [adaptor impl] bool QStateMachine::event(QEvent *e) bool cbs_event_1217_0(QEvent *e) { return QStateMachine::event(e); } virtual bool event(QEvent *e) { if (cb_event_1217_0.can_issue()) { return cb_event_1217_0.issue(&QStateMachine_Adaptor::cbs_event_1217_0, e); } else { return QStateMachine::event(e); } } // [adaptor impl] void QStateMachine::onEntry(QEvent *event) void cbs_onEntry_1217_0(QEvent *event) { QStateMachine::onEntry(event); } virtual void onEntry(QEvent *event) { if (cb_onEntry_1217_0.can_issue()) { cb_onEntry_1217_0.issue(&QStateMachine_Adaptor::cbs_onEntry_1217_0, event); } else { QStateMachine::onEntry(event); } } // [adaptor impl] void QStateMachine::onExit(QEvent *event) void cbs_onExit_1217_0(QEvent *event) { QStateMachine::onExit(event); } virtual void onExit(QEvent *event) { if (cb_onExit_1217_0.can_issue()) { cb_onExit_1217_0.issue(&QStateMachine_Adaptor::cbs_onExit_1217_0, event); } else { QStateMachine::onExit(event); } } // [adaptor impl] void QStateMachine::timerEvent(QTimerEvent *) void cbs_timerEvent_1730_0(QTimerEvent *arg1) { QStateMachine::timerEvent(arg1); } virtual void timerEvent(QTimerEvent *arg1) { if (cb_timerEvent_1730_0.can_issue()) { cb_timerEvent_1730_0.issue(&QStateMachine_Adaptor::cbs_timerEvent_1730_0, arg1); } else { QStateMachine::timerEvent(arg1); } } gsi::Callback cb_eventFilter_2411_0; gsi::Callback cb_beginMicrostep_1217_0; gsi::Callback cb_beginSelectTransitions_1217_0; gsi::Callback cb_childEvent_1701_0; gsi::Callback cb_customEvent_1217_0; gsi::Callback cb_disconnectNotify_2394_0; gsi::Callback cb_endMicrostep_1217_0; gsi::Callback cb_endSelectTransitions_1217_0; gsi::Callback cb_event_1217_0; gsi::Callback cb_onEntry_1217_0; gsi::Callback cb_onExit_1217_0; gsi::Callback cb_timerEvent_1730_0; }; QStateMachine_Adaptor::~QStateMachine_Adaptor() { } // Constructor QStateMachine::QStateMachine(QObject *parent) (adaptor class) static void _init_ctor_QStateMachine_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) { static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); decl->add_arg (argspec_0); decl->set_return_new (); } static void _call_ctor_QStateMachine_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QObject *arg1 = args ? args.read (heap) : (QObject *)(0); ret.write (new QStateMachine_Adaptor (arg1)); } // Constructor QStateMachine::QStateMachine(QState::ChildMode childMode, QObject *parent) (adaptor class) static void _init_ctor_QStateMachine_Adaptor_3213 (qt_gsi::GenericStaticMethod *decl) { static gsi::ArgSpecBase argspec_0 ("childMode"); decl->add_arg::target_type & > (argspec_0); static gsi::ArgSpecBase argspec_1 ("parent", true, "0"); decl->add_arg (argspec_1); decl->set_return_new (); } static void _call_ctor_QStateMachine_Adaptor_3213 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); QObject *arg2 = args ? args.read (heap) : (QObject *)(0); ret.write (new QStateMachine_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } // emitter void QStateMachine::activeChanged(bool active) static void _init_emitter_activeChanged_864 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("active"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_emitter_activeChanged_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 (heap); ((QStateMachine_Adaptor *)cls)->emitter_QStateMachine_activeChanged_864 (arg1); } // void QStateMachine::beginMicrostep(QEvent *event) static void _init_cbs_beginMicrostep_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_cbs_beginMicrostep_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_beginMicrostep_1217_0 (arg1); } static void _set_callback_cbs_beginMicrostep_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_beginMicrostep_1217_0 = cb; } // void QStateMachine::beginSelectTransitions(QEvent *event) static void _init_cbs_beginSelectTransitions_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_cbs_beginSelectTransitions_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_beginSelectTransitions_1217_0 (arg1); } static void _set_callback_cbs_beginSelectTransitions_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_beginSelectTransitions_1217_0 = cb; } // void QStateMachine::childEvent(QChildEvent *) static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("arg1"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_childEvent_1701_0 = cb; } // void QStateMachine::customEvent(QEvent *) static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("arg1"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_customEvent_1217_0 = cb; } // emitter void QStateMachine::destroyed(QObject *) static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap) : (QObject *)(0); ((QStateMachine_Adaptor *)cls)->emitter_QStateMachine_destroyed_1302 (arg1); } // void QStateMachine::disconnectNotify(const QMetaMethod &signal) static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("signal"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; } // void QStateMachine::endMicrostep(QEvent *event) static void _init_cbs_endMicrostep_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_cbs_endMicrostep_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_endMicrostep_1217_0 (arg1); } static void _set_callback_cbs_endMicrostep_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_endMicrostep_1217_0 = cb; } // void QStateMachine::endSelectTransitions(QEvent *event) static void _init_cbs_endSelectTransitions_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_cbs_endSelectTransitions_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_endSelectTransitions_1217_0 (arg1); } static void _set_callback_cbs_endSelectTransitions_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_endSelectTransitions_1217_0 = cb; } // bool QStateMachine::event(QEvent *e) static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("e"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap); ret.write ((bool)((QStateMachine_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_event_1217_0 = cb; } // bool QStateMachine::eventFilter(QObject *watched, QEvent *event) static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("watched"); decl->add_arg (argspec_0); static gsi::ArgSpecBase argspec_1 ("event"); decl->add_arg (argspec_1); decl->set_return (); } 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 (heap); QEvent *arg2 = args.read (heap); ret.write ((bool)((QStateMachine_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; } // exposed bool QStateMachine::isSignalConnected(const QMetaMethod &signal) static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("signal"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap); ret.write ((bool)((QStateMachine_Adaptor *)cls)->fp_QStateMachine_isSignalConnected_c2394 (arg1)); } // void QStateMachine::onEntry(QEvent *event) static void _init_cbs_onEntry_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_cbs_onEntry_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_onEntry_1217_0 (arg1); } static void _set_callback_cbs_onEntry_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_onEntry_1217_0 = cb; } // void QStateMachine::onExit(QEvent *event) static void _init_cbs_onExit_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("event"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_cbs_onExit_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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_onExit_1217_0 (arg1); } static void _set_callback_cbs_onExit_1217_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_onExit_1217_0 = cb; } // exposed int QStateMachine::receivers(const char *signal) static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("signal"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap); ret.write ((int)((QStateMachine_Adaptor *)cls)->fp_QStateMachine_receivers_c1731 (arg1)); } // emitter void QStateMachine::runningChanged(bool running) static void _init_emitter_runningChanged_864 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("running"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_emitter_runningChanged_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 (heap); ((QStateMachine_Adaptor *)cls)->emitter_QStateMachine_runningChanged_864 (arg1); } // exposed QObject *QStateMachine::sender() static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } 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 *)((QStateMachine_Adaptor *)cls)->fp_QStateMachine_sender_c0 ()); } // exposed int QStateMachine::senderSignalIndex() static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } 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)((QStateMachine_Adaptor *)cls)->fp_QStateMachine_senderSignalIndex_c0 ()); } // void QStateMachine::timerEvent(QTimerEvent *) static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("arg1"); decl->add_arg (argspec_0); decl->set_return (); } 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 (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) { ((QStateMachine_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; } namespace gsi { gsi::Class &qtdecl_QStateMachine (); static gsi::Methods methods_QStateMachine_Adaptor () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStateMachine::QStateMachine(QObject *parent)\nThis method creates an object of class QStateMachine.", &_init_ctor_QStateMachine_Adaptor_1302, &_call_ctor_QStateMachine_Adaptor_1302); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStateMachine::QStateMachine(QState::ChildMode childMode, QObject *parent)\nThis method creates an object of class QStateMachine.", &_init_ctor_QStateMachine_Adaptor_3213, &_call_ctor_QStateMachine_Adaptor_3213); methods += new qt_gsi::GenericMethod ("emit_activeChanged", "@brief Emitter for signal void QStateMachine::activeChanged(bool active)\nCall this method to emit this signal.", false, &_init_emitter_activeChanged_864, &_call_emitter_activeChanged_864); methods += new qt_gsi::GenericMethod ("*beginMicrostep", "@hide", false, &_init_cbs_beginMicrostep_1217_0, &_call_cbs_beginMicrostep_1217_0); methods += new qt_gsi::GenericMethod ("*beginMicrostep", "@brief Virtual method void QStateMachine::beginMicrostep(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_beginMicrostep_1217_0, &_call_cbs_beginMicrostep_1217_0, &_set_callback_cbs_beginMicrostep_1217_0); methods += new qt_gsi::GenericMethod ("*beginSelectTransitions", "@hide", false, &_init_cbs_beginSelectTransitions_1217_0, &_call_cbs_beginSelectTransitions_1217_0); methods += new qt_gsi::GenericMethod ("*beginSelectTransitions", "@brief Virtual method void QStateMachine::beginSelectTransitions(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_beginSelectTransitions_1217_0, &_call_cbs_beginSelectTransitions_1217_0, &_set_callback_cbs_beginSelectTransitions_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 QStateMachine::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 ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QStateMachine::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QStateMachine::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 QStateMachine::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 ("*endMicrostep", "@hide", false, &_init_cbs_endMicrostep_1217_0, &_call_cbs_endMicrostep_1217_0); methods += new qt_gsi::GenericMethod ("*endMicrostep", "@brief Virtual method void QStateMachine::endMicrostep(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_endMicrostep_1217_0, &_call_cbs_endMicrostep_1217_0, &_set_callback_cbs_endMicrostep_1217_0); methods += new qt_gsi::GenericMethod ("*endSelectTransitions", "@hide", false, &_init_cbs_endSelectTransitions_1217_0, &_call_cbs_endSelectTransitions_1217_0); methods += new qt_gsi::GenericMethod ("*endSelectTransitions", "@brief Virtual method void QStateMachine::endSelectTransitions(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_endSelectTransitions_1217_0, &_call_cbs_endSelectTransitions_1217_0, &_set_callback_cbs_endSelectTransitions_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 QStateMachine::event(QEvent *e)\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 QStateMachine::eventFilter(QObject *watched, QEvent *event)\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 ("*isSignalConnected", "@brief Method bool QStateMachine::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 ("*onEntry", "@hide", false, &_init_cbs_onEntry_1217_0, &_call_cbs_onEntry_1217_0); methods += new qt_gsi::GenericMethod ("*onEntry", "@brief Virtual method void QStateMachine::onEntry(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_onEntry_1217_0, &_call_cbs_onEntry_1217_0, &_set_callback_cbs_onEntry_1217_0); methods += new qt_gsi::GenericMethod ("*onExit", "@hide", false, &_init_cbs_onExit_1217_0, &_call_cbs_onExit_1217_0); methods += new qt_gsi::GenericMethod ("*onExit", "@brief Virtual method void QStateMachine::onExit(QEvent *event)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_onExit_1217_0, &_call_cbs_onExit_1217_0, &_set_callback_cbs_onExit_1217_0); methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QStateMachine::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 ("emit_runningChanged", "@brief Emitter for signal void QStateMachine::runningChanged(bool running)\nCall this method to emit this signal.", false, &_init_emitter_runningChanged_864, &_call_emitter_runningChanged_864); methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QStateMachine::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 QStateMachine::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 ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QStateMachine::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); return methods; } gsi::Class decl_QStateMachine_Adaptor (qtdecl_QStateMachine (), "QStateMachine", methods_QStateMachine_Adaptor (), "@qt\n@brief Binding of QStateMachine"); } // Implementation of the enum wrapper class for QStateMachine::Error namespace qt_gsi { static gsi::Enum decl_QStateMachine_Error_Enum ("QStateMachine_Error", gsi::enum_const ("NoError", QStateMachine::NoError, "@brief Enum constant QStateMachine::NoError") + gsi::enum_const ("NoInitialStateError", QStateMachine::NoInitialStateError, "@brief Enum constant QStateMachine::NoInitialStateError") + gsi::enum_const ("NoDefaultStateInHistoryStateError", QStateMachine::NoDefaultStateInHistoryStateError, "@brief Enum constant QStateMachine::NoDefaultStateInHistoryStateError") + gsi::enum_const ("NoCommonAncestorForTransitionError", QStateMachine::NoCommonAncestorForTransitionError, "@brief Enum constant QStateMachine::NoCommonAncestorForTransitionError"), "@qt\n@brief This class represents the QStateMachine::Error enum"); static gsi::QFlagsClass decl_QStateMachine_Error_Enums ("QStateMachine_QFlags_Error", "@qt\n@brief This class represents the QFlags flag set"); // Inject the declarations into the parent static gsi::ClassExt inject_QStateMachine_Error_Enum_in_parent (decl_QStateMachine_Error_Enum.defs ()); static gsi::ClassExt decl_QStateMachine_Error_Enum_as_child (decl_QStateMachine_Error_Enum, "Error"); static gsi::ClassExt decl_QStateMachine_Error_Enums_as_child (decl_QStateMachine_Error_Enums, "QFlags_Error"); } // Implementation of the enum wrapper class for QStateMachine::EventPriority namespace qt_gsi { static gsi::Enum decl_QStateMachine_EventPriority_Enum ("QStateMachine_EventPriority", gsi::enum_const ("NormalPriority", QStateMachine::NormalPriority, "@brief Enum constant QStateMachine::NormalPriority") + gsi::enum_const ("HighPriority", QStateMachine::HighPriority, "@brief Enum constant QStateMachine::HighPriority"), "@qt\n@brief This class represents the QStateMachine::EventPriority enum"); static gsi::QFlagsClass decl_QStateMachine_EventPriority_Enums ("QStateMachine_QFlags_EventPriority", "@qt\n@brief This class represents the QFlags flag set"); // Inject the declarations into the parent static gsi::ClassExt inject_QStateMachine_EventPriority_Enum_in_parent (decl_QStateMachine_EventPriority_Enum.defs ()); static gsi::ClassExt decl_QStateMachine_EventPriority_Enum_as_child (decl_QStateMachine_EventPriority_Enum, "EventPriority"); static gsi::ClassExt decl_QStateMachine_EventPriority_Enums_as_child (decl_QStateMachine_EventPriority_Enums, "QFlags_EventPriority"); }