mirror of https://github.com/KLayout/klayout.git
193 lines
6.2 KiB
C++
193 lines
6.2 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 gsiDeclQFileOpenEvent.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QFileOpenEvent>
|
|
#include <QEvent>
|
|
#include <QFile>
|
|
#include <QUrl>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QFileOpenEvent
|
|
|
|
// QString QFileOpenEvent::file()
|
|
|
|
|
|
static void _init_f_file_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_file_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QString > ((QString)((QFileOpenEvent *)cls)->file ());
|
|
}
|
|
|
|
|
|
// bool QFileOpenEvent::openFile(QFile &file, QFlags<QIODevice::OpenModeFlag> flags)
|
|
|
|
|
|
static void _init_f_openFile_c4217 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("file");
|
|
decl->add_arg<QFile & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("flags");
|
|
decl->add_arg<QFlags<QIODevice::OpenModeFlag> > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_openFile_c4217 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFile &arg1 = args.read<QFile & > (heap);
|
|
QFlags<QIODevice::OpenModeFlag> arg2 = args.read<QFlags<QIODevice::OpenModeFlag> > (heap);
|
|
ret.write<bool > ((bool)((QFileOpenEvent *)cls)->openFile (arg1, arg2));
|
|
}
|
|
|
|
|
|
// QUrl QFileOpenEvent::url()
|
|
|
|
|
|
static void _init_f_url_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QUrl > ();
|
|
}
|
|
|
|
static void _call_f_url_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QUrl > ((QUrl)((QFileOpenEvent *)cls)->url ());
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QFileOpenEvent () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericMethod ("file", "@brief Method QString QFileOpenEvent::file()\n", true, &_init_f_file_c0, &_call_f_file_c0);
|
|
methods += new qt_gsi::GenericMethod ("openFile", "@brief Method bool QFileOpenEvent::openFile(QFile &file, QFlags<QIODevice::OpenModeFlag> flags)\n", true, &_init_f_openFile_c4217, &_call_f_openFile_c4217);
|
|
methods += new qt_gsi::GenericMethod ("url", "@brief Method QUrl QFileOpenEvent::url()\n", true, &_init_f_url_c0, &_call_f_url_c0);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QEvent> &qtdecl_QEvent ();
|
|
|
|
gsi::Class<QFileOpenEvent> decl_QFileOpenEvent (qtdecl_QEvent (), "QFileOpenEvent_Native",
|
|
methods_QFileOpenEvent (),
|
|
"@hide\n@alias QFileOpenEvent");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QFileOpenEvent> &qtdecl_QFileOpenEvent () { return decl_QFileOpenEvent; }
|
|
|
|
}
|
|
|
|
|
|
class QFileOpenEvent_Adaptor : public QFileOpenEvent, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QFileOpenEvent_Adaptor();
|
|
|
|
// [adaptor ctor] QFileOpenEvent::QFileOpenEvent(const QString &file)
|
|
QFileOpenEvent_Adaptor(const QString &file) : QFileOpenEvent(file)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QFileOpenEvent::QFileOpenEvent(const QUrl &url)
|
|
QFileOpenEvent_Adaptor(const QUrl &url) : QFileOpenEvent(url)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
|
|
};
|
|
|
|
QFileOpenEvent_Adaptor::~QFileOpenEvent_Adaptor() { }
|
|
|
|
// Constructor QFileOpenEvent::QFileOpenEvent(const QString &file) (adaptor class)
|
|
|
|
static void _init_ctor_QFileOpenEvent_Adaptor_2025 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("file");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
decl->set_return_new<QFileOpenEvent_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QFileOpenEvent_Adaptor_2025 (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);
|
|
ret.write<QFileOpenEvent_Adaptor *> (new QFileOpenEvent_Adaptor (arg1));
|
|
}
|
|
|
|
|
|
// Constructor QFileOpenEvent::QFileOpenEvent(const QUrl &url) (adaptor class)
|
|
|
|
static void _init_ctor_QFileOpenEvent_Adaptor_1701 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("url");
|
|
decl->add_arg<const QUrl & > (argspec_0);
|
|
decl->set_return_new<QFileOpenEvent_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QFileOpenEvent_Adaptor_1701 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QUrl &arg1 = args.read<const QUrl & > (heap);
|
|
ret.write<QFileOpenEvent_Adaptor *> (new QFileOpenEvent_Adaptor (arg1));
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QFileOpenEvent> &qtdecl_QFileOpenEvent ();
|
|
|
|
static gsi::Methods methods_QFileOpenEvent_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QFileOpenEvent::QFileOpenEvent(const QString &file)\nThis method creates an object of class QFileOpenEvent.", &_init_ctor_QFileOpenEvent_Adaptor_2025, &_call_ctor_QFileOpenEvent_Adaptor_2025);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QFileOpenEvent::QFileOpenEvent(const QUrl &url)\nThis method creates an object of class QFileOpenEvent.", &_init_ctor_QFileOpenEvent_Adaptor_1701, &_call_ctor_QFileOpenEvent_Adaptor_1701);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QFileOpenEvent_Adaptor> decl_QFileOpenEvent_Adaptor (qtdecl_QFileOpenEvent (), "QFileOpenEvent",
|
|
methods_QFileOpenEvent_Adaptor (),
|
|
"@qt\n@brief Binding of QFileOpenEvent");
|
|
|
|
}
|
|
|