klayout/src/gsiqt4/gsiDeclQToolBarChangeEvent.cc

126 lines
3.7 KiB
C++

/*
KLayout Layout Viewer
Copyright (C) 2006-2017 Matthias Koefferlein
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file gsiDeclQToolBarChangeEvent.cc
*
* DO NOT EDIT THIS FILE.
* This file has been created automatically
*/
#include <QToolBarChangeEvent>
#include "gsiQt.h"
#include "gsiQtCommon.h"
#include "gsiDeclQtTypeTraits.h"
#include <memory>
// -----------------------------------------------------------------------
// class QToolBarChangeEvent
// bool QToolBarChangeEvent::toggle()
static void _init_f_toggle_c0 (qt_gsi::GenericMethod *decl)
{
decl->set_return<bool > ();
}
static void _call_f_toggle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
{
__SUPPRESS_UNUSED_WARNING(args);
ret.write<bool > ((bool)((QToolBarChangeEvent *)cls)->toggle ());
}
namespace gsi
{
static gsi::Methods methods_QToolBarChangeEvent () {
gsi::Methods methods;
methods += new qt_gsi::GenericMethod ("toggle", "@brief Method bool QToolBarChangeEvent::toggle()\n", true, &_init_f_toggle_c0, &_call_f_toggle_c0);
return methods;
}
gsi::Class<QEvent> &qtdecl_QEvent ();
gsi::Class<QToolBarChangeEvent> decl_QToolBarChangeEvent (qtdecl_QEvent (), "QToolBarChangeEvent_Native",
methods_QToolBarChangeEvent (),
"@hide\n@alias QToolBarChangeEvent");
GSIQT_PUBLIC gsi::Class<QToolBarChangeEvent> &qtdecl_QToolBarChangeEvent () { return decl_QToolBarChangeEvent; }
}
class QToolBarChangeEvent_Adaptor : public QToolBarChangeEvent, public qt_gsi::QtObjectBase
{
public:
virtual ~QToolBarChangeEvent_Adaptor();
// [adaptor ctor] QToolBarChangeEvent::QToolBarChangeEvent(bool t)
QToolBarChangeEvent_Adaptor(bool t) : QToolBarChangeEvent(t)
{
qt_gsi::QtObjectBase::init (this);
}
};
QToolBarChangeEvent_Adaptor::~QToolBarChangeEvent_Adaptor() { }
// Constructor QToolBarChangeEvent::QToolBarChangeEvent(bool t) (adaptor class)
static void _init_ctor_QToolBarChangeEvent_Adaptor_864 (qt_gsi::GenericStaticMethod *decl)
{
static gsi::ArgSpecBase argspec_0 ("t");
decl->add_arg<bool > (argspec_0);
decl->set_return_new<QToolBarChangeEvent_Adaptor> ();
}
static void _call_ctor_QToolBarChangeEvent_Adaptor_864 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
{
__SUPPRESS_UNUSED_WARNING(args);
tl::Heap heap;
bool arg1 = args.read<bool > (heap);
ret.write<QToolBarChangeEvent_Adaptor *> (new QToolBarChangeEvent_Adaptor (arg1));
}
namespace gsi
{
gsi::Class<QToolBarChangeEvent> &qtdecl_QToolBarChangeEvent ();
static gsi::Methods methods_QToolBarChangeEvent_Adaptor () {
gsi::Methods methods;
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QToolBarChangeEvent::QToolBarChangeEvent(bool t)\nThis method creates an object of class QToolBarChangeEvent.", &_init_ctor_QToolBarChangeEvent_Adaptor_864, &_call_ctor_QToolBarChangeEvent_Adaptor_864);
return methods;
}
gsi::Class<QToolBarChangeEvent_Adaptor> decl_QToolBarChangeEvent_Adaptor (qtdecl_QToolBarChangeEvent (), "QToolBarChangeEvent",
methods_QToolBarChangeEvent_Adaptor (),
"@qt\n@brief Binding of QToolBarChangeEvent");
}