/* 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 gsiDeclQCameraFlashControl.cc * * DO NOT EDIT THIS FILE. * This file has been created automatically */ #include #include #include #include #include #include #include #include "gsiQt.h" #include "gsiQtCommon.h" #include "gsiDeclQtTypeTraits.h" #include // ----------------------------------------------------------------------- // class QCameraFlashControl // 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 (QCameraFlashControl::staticMetaObject); } // QFlags QCameraFlashControl::flashMode() static void _init_f_flashMode_c0 (qt_gsi::GenericMethod *decl) { decl->set_return > (); } static void _call_f_flashMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write > ((QFlags)((QCameraFlashControl *)cls)->flashMode ()); } // bool QCameraFlashControl::isFlashModeSupported(QFlags mode) static void _init_f_isFlashModeSupported_c3656 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("mode"); decl->add_arg > (argspec_0); decl->set_return (); } static void _call_f_isFlashModeSupported_c3656 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QFlags arg1 = args.read > (heap); ret.write ((bool)((QCameraFlashControl *)cls)->isFlashModeSupported (arg1)); } // bool QCameraFlashControl::isFlashReady() static void _init_f_isFlashReady_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_isFlashReady_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write ((bool)((QCameraFlashControl *)cls)->isFlashReady ()); } // void QCameraFlashControl::setFlashMode(QFlags mode) static void _init_f_setFlashMode_3656 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("mode"); decl->add_arg > (argspec_0); decl->set_return (); } static void _call_f_setFlashMode_3656 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QFlags arg1 = args.read > (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl *)cls)->setFlashMode (arg1); } // static QString QCameraFlashControl::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)QCameraFlashControl::tr (arg1, arg2, arg3)); } // static QString QCameraFlashControl::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)QCameraFlashControl::trUtf8 (arg1, arg2, arg3)); } namespace gsi { static gsi::Methods methods_QCameraFlashControl () { 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 (":flashMode", "@brief Method QFlags QCameraFlashControl::flashMode()\n", true, &_init_f_flashMode_c0, &_call_f_flashMode_c0); methods += new qt_gsi::GenericMethod ("isFlashModeSupported?", "@brief Method bool QCameraFlashControl::isFlashModeSupported(QFlags mode)\n", true, &_init_f_isFlashModeSupported_c3656, &_call_f_isFlashModeSupported_c3656); methods += new qt_gsi::GenericMethod ("isFlashReady?", "@brief Method bool QCameraFlashControl::isFlashReady()\n", true, &_init_f_isFlashReady_c0, &_call_f_isFlashReady_c0); methods += new qt_gsi::GenericMethod ("setFlashMode|flashMode=", "@brief Method void QCameraFlashControl::setFlashMode(QFlags mode)\n", false, &_init_f_setFlashMode_3656, &_call_f_setFlashMode_3656); methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QCameraFlashControl::destroyed(QObject *)\nYou can bind a procedure to this signal."); methods += gsi::qt_signal ("flashReady(bool)", "flashReady", gsi::arg("arg1"), "@brief Signal declaration for QCameraFlashControl::flashReady(bool)\nYou can bind a procedure to this signal."); methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QCameraFlashControl::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 QCameraFlashControl::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_QMediaControl (); qt_gsi::QtNativeClass decl_QCameraFlashControl (qtdecl_QMediaControl (), "QCameraFlashControl_Native", methods_QCameraFlashControl (), "@hide\n@alias QCameraFlashControl"); GSIQT_PUBLIC gsi::Class &qtdecl_QCameraFlashControl () { return decl_QCameraFlashControl; } } class QCameraFlashControl_Adaptor : public QCameraFlashControl, public qt_gsi::QtObjectBase { public: virtual ~QCameraFlashControl_Adaptor(); // [expose] bool QCameraFlashControl::isSignalConnected(const QMetaMethod &signal) bool fp_QCameraFlashControl_isSignalConnected_c2394 (const QMetaMethod &signal) const { return QCameraFlashControl::isSignalConnected(signal); } // [expose] int QCameraFlashControl::receivers(const char *signal) int fp_QCameraFlashControl_receivers_c1731 (const char *signal) const { return QCameraFlashControl::receivers(signal); } // [expose] QObject *QCameraFlashControl::sender() QObject * fp_QCameraFlashControl_sender_c0 () const { return QCameraFlashControl::sender(); } // [expose] int QCameraFlashControl::senderSignalIndex() int fp_QCameraFlashControl_senderSignalIndex_c0 () const { return QCameraFlashControl::senderSignalIndex(); } // [emitter impl] void QCameraFlashControl::destroyed(QObject *) void emitter_QCameraFlashControl_destroyed_1302(QObject *arg1) { emit QCameraFlashControl::destroyed(arg1); } // [adaptor impl] bool QCameraFlashControl::event(QEvent *) bool cbs_event_1217_0(QEvent *arg1) { return QCameraFlashControl::event(arg1); } virtual bool event(QEvent *arg1) { if (cb_event_1217_0.can_issue()) { return cb_event_1217_0.issue(&QCameraFlashControl_Adaptor::cbs_event_1217_0, arg1); } else { return QCameraFlashControl::event(arg1); } } // [adaptor impl] bool QCameraFlashControl::eventFilter(QObject *, QEvent *) bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) { return QCameraFlashControl::eventFilter(arg1, arg2); } virtual bool eventFilter(QObject *arg1, QEvent *arg2) { if (cb_eventFilter_2411_0.can_issue()) { return cb_eventFilter_2411_0.issue(&QCameraFlashControl_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); } else { return QCameraFlashControl::eventFilter(arg1, arg2); } } // [adaptor impl] QFlags QCameraFlashControl::flashMode() QFlags cbs_flashMode_c0_0() const { throw qt_gsi::AbstractMethodCalledException("flashMode"); } virtual QFlags flashMode() const { if (cb_flashMode_c0_0.can_issue()) { return cb_flashMode_c0_0.issue >(&QCameraFlashControl_Adaptor::cbs_flashMode_c0_0); } else { throw qt_gsi::AbstractMethodCalledException("flashMode"); } } // [emitter impl] void QCameraFlashControl::flashReady(bool) void emitter_QCameraFlashControl_flashReady_864(bool arg1) { emit QCameraFlashControl::flashReady(arg1); } // [adaptor impl] bool QCameraFlashControl::isFlashModeSupported(QFlags mode) bool cbs_isFlashModeSupported_c3656_0(QFlags mode) const { __SUPPRESS_UNUSED_WARNING (mode); throw qt_gsi::AbstractMethodCalledException("isFlashModeSupported"); } virtual bool isFlashModeSupported(QFlags mode) const { if (cb_isFlashModeSupported_c3656_0.can_issue()) { return cb_isFlashModeSupported_c3656_0.issue >(&QCameraFlashControl_Adaptor::cbs_isFlashModeSupported_c3656_0, mode); } else { throw qt_gsi::AbstractMethodCalledException("isFlashModeSupported"); } } // [adaptor impl] bool QCameraFlashControl::isFlashReady() bool cbs_isFlashReady_c0_0() const { throw qt_gsi::AbstractMethodCalledException("isFlashReady"); } virtual bool isFlashReady() const { if (cb_isFlashReady_c0_0.can_issue()) { return cb_isFlashReady_c0_0.issue(&QCameraFlashControl_Adaptor::cbs_isFlashReady_c0_0); } else { throw qt_gsi::AbstractMethodCalledException("isFlashReady"); } } // [adaptor impl] void QCameraFlashControl::setFlashMode(QFlags mode) void cbs_setFlashMode_3656_0(QFlags mode) { __SUPPRESS_UNUSED_WARNING (mode); throw qt_gsi::AbstractMethodCalledException("setFlashMode"); } virtual void setFlashMode(QFlags mode) { if (cb_setFlashMode_3656_0.can_issue()) { cb_setFlashMode_3656_0.issue >(&QCameraFlashControl_Adaptor::cbs_setFlashMode_3656_0, mode); } else { throw qt_gsi::AbstractMethodCalledException("setFlashMode"); } } // [adaptor impl] void QCameraFlashControl::childEvent(QChildEvent *) void cbs_childEvent_1701_0(QChildEvent *arg1) { QCameraFlashControl::childEvent(arg1); } virtual void childEvent(QChildEvent *arg1) { if (cb_childEvent_1701_0.can_issue()) { cb_childEvent_1701_0.issue(&QCameraFlashControl_Adaptor::cbs_childEvent_1701_0, arg1); } else { QCameraFlashControl::childEvent(arg1); } } // [adaptor impl] void QCameraFlashControl::customEvent(QEvent *) void cbs_customEvent_1217_0(QEvent *arg1) { QCameraFlashControl::customEvent(arg1); } virtual void customEvent(QEvent *arg1) { if (cb_customEvent_1217_0.can_issue()) { cb_customEvent_1217_0.issue(&QCameraFlashControl_Adaptor::cbs_customEvent_1217_0, arg1); } else { QCameraFlashControl::customEvent(arg1); } } // [adaptor impl] void QCameraFlashControl::disconnectNotify(const QMetaMethod &signal) void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) { QCameraFlashControl::disconnectNotify(signal); } virtual void disconnectNotify(const QMetaMethod &signal) { if (cb_disconnectNotify_2394_0.can_issue()) { cb_disconnectNotify_2394_0.issue(&QCameraFlashControl_Adaptor::cbs_disconnectNotify_2394_0, signal); } else { QCameraFlashControl::disconnectNotify(signal); } } // [adaptor impl] void QCameraFlashControl::timerEvent(QTimerEvent *) void cbs_timerEvent_1730_0(QTimerEvent *arg1) { QCameraFlashControl::timerEvent(arg1); } virtual void timerEvent(QTimerEvent *arg1) { if (cb_timerEvent_1730_0.can_issue()) { cb_timerEvent_1730_0.issue(&QCameraFlashControl_Adaptor::cbs_timerEvent_1730_0, arg1); } else { QCameraFlashControl::timerEvent(arg1); } } gsi::Callback cb_event_1217_0; gsi::Callback cb_eventFilter_2411_0; gsi::Callback cb_flashMode_c0_0; gsi::Callback cb_isFlashModeSupported_c3656_0; gsi::Callback cb_isFlashReady_c0_0; gsi::Callback cb_setFlashMode_3656_0; gsi::Callback cb_childEvent_1701_0; gsi::Callback cb_customEvent_1217_0; gsi::Callback cb_disconnectNotify_2394_0; gsi::Callback cb_timerEvent_1730_0; }; QCameraFlashControl_Adaptor::~QCameraFlashControl_Adaptor() { } // void QCameraFlashControl::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); ((QCameraFlashControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_childEvent_1701_0 = cb; } // void QCameraFlashControl::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); ((QCameraFlashControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_customEvent_1217_0 = cb; } // emitter void QCameraFlashControl::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); ((QCameraFlashControl_Adaptor *)cls)->emitter_QCameraFlashControl_destroyed_1302 (arg1); } // void QCameraFlashControl::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); ((QCameraFlashControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; } // bool QCameraFlashControl::event(QEvent *) static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("arg1"); 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)((QCameraFlashControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_event_1217_0 = cb; } // bool QCameraFlashControl::eventFilter(QObject *, QEvent *) static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("arg1"); decl->add_arg (argspec_0); static gsi::ArgSpecBase argspec_1 ("arg2"); 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)((QCameraFlashControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; } // QFlags QCameraFlashControl::flashMode() static void _init_cbs_flashMode_c0_0 (qt_gsi::GenericMethod *decl) { decl->set_return > (); } static void _call_cbs_flashMode_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write > ((QFlags)((QCameraFlashControl_Adaptor *)cls)->cbs_flashMode_c0_0 ()); } static void _set_callback_cbs_flashMode_c0_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_flashMode_c0_0 = cb; } // emitter void QCameraFlashControl::flashReady(bool) static void _init_emitter_flashReady_864 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("arg1"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_emitter_flashReady_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); ((QCameraFlashControl_Adaptor *)cls)->emitter_QCameraFlashControl_flashReady_864 (arg1); } // bool QCameraFlashControl::isFlashModeSupported(QFlags mode) static void _init_cbs_isFlashModeSupported_c3656_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("mode"); decl->add_arg > (argspec_0); decl->set_return (); } static void _call_cbs_isFlashModeSupported_c3656_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QFlags arg1 = args.read > (heap); ret.write ((bool)((QCameraFlashControl_Adaptor *)cls)->cbs_isFlashModeSupported_c3656_0 (arg1)); } static void _set_callback_cbs_isFlashModeSupported_c3656_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_isFlashModeSupported_c3656_0 = cb; } // bool QCameraFlashControl::isFlashReady() static void _init_cbs_isFlashReady_c0_0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_cbs_isFlashReady_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write ((bool)((QCameraFlashControl_Adaptor *)cls)->cbs_isFlashReady_c0_0 ()); } static void _set_callback_cbs_isFlashReady_c0_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_isFlashReady_c0_0 = cb; } // exposed bool QCameraFlashControl::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)((QCameraFlashControl_Adaptor *)cls)->fp_QCameraFlashControl_isSignalConnected_c2394 (arg1)); } // exposed int QCameraFlashControl::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)((QCameraFlashControl_Adaptor *)cls)->fp_QCameraFlashControl_receivers_c1731 (arg1)); } // exposed QObject *QCameraFlashControl::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 *)((QCameraFlashControl_Adaptor *)cls)->fp_QCameraFlashControl_sender_c0 ()); } // exposed int QCameraFlashControl::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)((QCameraFlashControl_Adaptor *)cls)->fp_QCameraFlashControl_senderSignalIndex_c0 ()); } // void QCameraFlashControl::setFlashMode(QFlags mode) static void _init_cbs_setFlashMode_3656_0 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("mode"); decl->add_arg > (argspec_0); decl->set_return (); } static void _call_cbs_setFlashMode_3656_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QFlags arg1 = args.read > (heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl_Adaptor *)cls)->cbs_setFlashMode_3656_0 (arg1); } static void _set_callback_cbs_setFlashMode_3656_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_setFlashMode_3656_0 = cb; } // void QCameraFlashControl::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); ((QCameraFlashControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) { ((QCameraFlashControl_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; } namespace gsi { gsi::Class &qtdecl_QCameraFlashControl (); static gsi::Methods methods_QCameraFlashControl_Adaptor () { gsi::Methods methods; 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 QCameraFlashControl::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 QCameraFlashControl::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 QCameraFlashControl::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 QCameraFlashControl::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 ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QCameraFlashControl::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 QCameraFlashControl::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 ("flashMode", "@hide", true, &_init_cbs_flashMode_c0_0, &_call_cbs_flashMode_c0_0); methods += new qt_gsi::GenericMethod ("flashMode", "@brief Virtual method QFlags QCameraFlashControl::flashMode()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_flashMode_c0_0, &_call_cbs_flashMode_c0_0, &_set_callback_cbs_flashMode_c0_0); methods += new qt_gsi::GenericMethod ("emit_flashReady", "@brief Emitter for signal void QCameraFlashControl::flashReady(bool)\nCall this method to emit this signal.", false, &_init_emitter_flashReady_864, &_call_emitter_flashReady_864); methods += new qt_gsi::GenericMethod ("isFlashModeSupported", "@hide", true, &_init_cbs_isFlashModeSupported_c3656_0, &_call_cbs_isFlashModeSupported_c3656_0); methods += new qt_gsi::GenericMethod ("isFlashModeSupported", "@brief Virtual method bool QCameraFlashControl::isFlashModeSupported(QFlags mode)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_isFlashModeSupported_c3656_0, &_call_cbs_isFlashModeSupported_c3656_0, &_set_callback_cbs_isFlashModeSupported_c3656_0); methods += new qt_gsi::GenericMethod ("isFlashReady", "@hide", true, &_init_cbs_isFlashReady_c0_0, &_call_cbs_isFlashReady_c0_0); methods += new qt_gsi::GenericMethod ("isFlashReady", "@brief Virtual method bool QCameraFlashControl::isFlashReady()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_isFlashReady_c0_0, &_call_cbs_isFlashReady_c0_0, &_set_callback_cbs_isFlashReady_c0_0); methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QCameraFlashControl::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 ("*receivers", "@brief Method int QCameraFlashControl::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 ("*sender", "@brief Method QObject *QCameraFlashControl::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 QCameraFlashControl::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 ("setFlashMode", "@hide", false, &_init_cbs_setFlashMode_3656_0, &_call_cbs_setFlashMode_3656_0); methods += new qt_gsi::GenericMethod ("setFlashMode", "@brief Virtual method void QCameraFlashControl::setFlashMode(QFlags mode)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setFlashMode_3656_0, &_call_cbs_setFlashMode_3656_0, &_set_callback_cbs_setFlashMode_3656_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 QCameraFlashControl::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_QCameraFlashControl_Adaptor (qtdecl_QCameraFlashControl (), "QCameraFlashControl", methods_QCameraFlashControl_Adaptor (), "@qt\n@brief Binding of QCameraFlashControl"); }