/* 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 gsiDeclQPaintEvent.cc * * DO NOT EDIT THIS FILE. * This file has been created automatically */ #include #include #include #include "gsiQt.h" #include "gsiQtCommon.h" #include "gsiDeclQtTypeTraits.h" #include // ----------------------------------------------------------------------- // class QPaintEvent // const QRect &QPaintEvent::rect() static void _init_f_rect_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_rect_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write ((const QRect &)((QPaintEvent *)cls)->rect ()); } // const QRegion &QPaintEvent::region() static void _init_f_region_c0 (qt_gsi::GenericMethod *decl) { decl->set_return (); } static void _call_f_region_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write ((const QRegion &)((QPaintEvent *)cls)->region ()); } namespace gsi { static gsi::Methods methods_QPaintEvent () { gsi::Methods methods; methods += new qt_gsi::GenericMethod ("rect", "@brief Method const QRect &QPaintEvent::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0); methods += new qt_gsi::GenericMethod ("region", "@brief Method const QRegion &QPaintEvent::region()\n", true, &_init_f_region_c0, &_call_f_region_c0); return methods; } gsi::Class &qtdecl_QEvent (); gsi::Class decl_QPaintEvent (qtdecl_QEvent (), "QPaintEvent_Native", methods_QPaintEvent (), "@hide\n@alias QPaintEvent"); GSIQT_PUBLIC gsi::Class &qtdecl_QPaintEvent () { return decl_QPaintEvent; } } class QPaintEvent_Adaptor : public QPaintEvent, public qt_gsi::QtObjectBase { public: virtual ~QPaintEvent_Adaptor(); // [adaptor ctor] QPaintEvent::QPaintEvent(const QRegion &paintRegion) QPaintEvent_Adaptor(const QRegion &paintRegion) : QPaintEvent(paintRegion) { qt_gsi::QtObjectBase::init (this); } // [adaptor ctor] QPaintEvent::QPaintEvent(const QRect &paintRect) QPaintEvent_Adaptor(const QRect &paintRect) : QPaintEvent(paintRect) { qt_gsi::QtObjectBase::init (this); } }; QPaintEvent_Adaptor::~QPaintEvent_Adaptor() { } // Constructor QPaintEvent::QPaintEvent(const QRegion &paintRegion) (adaptor class) static void _init_ctor_QPaintEvent_Adaptor_2006 (qt_gsi::GenericStaticMethod *decl) { static gsi::ArgSpecBase argspec_0 ("paintRegion"); decl->add_arg (argspec_0); decl->set_return_new (); } static void _call_ctor_QPaintEvent_Adaptor_2006 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const QRegion &arg1 = args.read (heap); ret.write (new QPaintEvent_Adaptor (arg1)); } // Constructor QPaintEvent::QPaintEvent(const QRect &paintRect) (adaptor class) static void _init_ctor_QPaintEvent_Adaptor_1792 (qt_gsi::GenericStaticMethod *decl) { static gsi::ArgSpecBase argspec_0 ("paintRect"); decl->add_arg (argspec_0); decl->set_return_new (); } static void _call_ctor_QPaintEvent_Adaptor_1792 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const QRect &arg1 = args.read (heap); ret.write (new QPaintEvent_Adaptor (arg1)); } namespace gsi { gsi::Class &qtdecl_QPaintEvent (); static gsi::Methods methods_QPaintEvent_Adaptor () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QPaintEvent::QPaintEvent(const QRegion &paintRegion)\nThis method creates an object of class QPaintEvent.", &_init_ctor_QPaintEvent_Adaptor_2006, &_call_ctor_QPaintEvent_Adaptor_2006); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QPaintEvent::QPaintEvent(const QRect &paintRect)\nThis method creates an object of class QPaintEvent.", &_init_ctor_QPaintEvent_Adaptor_1792, &_call_ctor_QPaintEvent_Adaptor_1792); return methods; } gsi::Class decl_QPaintEvent_Adaptor (qtdecl_QPaintEvent (), "QPaintEvent", methods_QPaintEvent_Adaptor (), "@qt\n@brief Binding of QPaintEvent"); }