mirror of https://github.com/KLayout/klayout.git
195 lines
6.5 KiB
C++
195 lines
6.5 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 gsiDeclQAbstractFormBuilder.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QAbstractFormBuilder>
|
|
#include <QAbstractButton>
|
|
#include <QAbstractItemView>
|
|
#include <QAction>
|
|
#include <QActionGroup>
|
|
#include <QBrush>
|
|
#include <QButtonGroup>
|
|
#include <QComboBox>
|
|
#include <QDir>
|
|
#include <QIODevice>
|
|
#include <QIcon>
|
|
#include <QLayout>
|
|
#include <QLayoutItem>
|
|
#include <QListWidget>
|
|
#include <QMetaEnum>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QPalette>
|
|
#include <QPixmap>
|
|
#include <QSpacerItem>
|
|
#include <QTableWidget>
|
|
#include <QTreeWidget>
|
|
#include <QWidget>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QAbstractFormBuilder
|
|
|
|
// Constructor QAbstractFormBuilder::QAbstractFormBuilder()
|
|
|
|
|
|
static void _init_ctor_QAbstractFormBuilder_0 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
decl->set_return_new<QAbstractFormBuilder> ();
|
|
}
|
|
|
|
static void _call_ctor_QAbstractFormBuilder_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QAbstractFormBuilder *> (new QAbstractFormBuilder ());
|
|
}
|
|
|
|
|
|
// QString QAbstractFormBuilder::errorString()
|
|
|
|
|
|
static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
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 > ((QString)((QAbstractFormBuilder *)cls)->errorString ());
|
|
}
|
|
|
|
|
|
// QWidget *QAbstractFormBuilder::load(QIODevice *dev, QWidget *parentWidget)
|
|
|
|
|
|
static void _init_f_load_2654 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("dev");
|
|
decl->add_arg<QIODevice * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("parentWidget", true, "0");
|
|
decl->add_arg<QWidget * > (argspec_1);
|
|
decl->set_return<QWidget * > ();
|
|
}
|
|
|
|
static void _call_f_load_2654 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QIODevice *arg1 = args.read<QIODevice * > (heap);
|
|
QWidget *arg2 = args ? args.read<QWidget * > (heap) : (QWidget *)(0);
|
|
ret.write<QWidget * > ((QWidget *)((QAbstractFormBuilder *)cls)->load (arg1, arg2));
|
|
}
|
|
|
|
|
|
// void QAbstractFormBuilder::save(QIODevice *dev, QWidget *widget)
|
|
|
|
|
|
static void _init_f_save_2654 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("dev");
|
|
decl->add_arg<QIODevice * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("widget");
|
|
decl->add_arg<QWidget * > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_save_2654 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QIODevice *arg1 = args.read<QIODevice * > (heap);
|
|
QWidget *arg2 = args.read<QWidget * > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QAbstractFormBuilder *)cls)->save (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QAbstractFormBuilder::setWorkingDirectory(const QDir &directory)
|
|
|
|
|
|
static void _init_f_setWorkingDirectory_1681 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("directory");
|
|
decl->add_arg<const QDir & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setWorkingDirectory_1681 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QDir &arg1 = args.read<const QDir & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QAbstractFormBuilder *)cls)->setWorkingDirectory (arg1);
|
|
}
|
|
|
|
|
|
// QDir QAbstractFormBuilder::workingDirectory()
|
|
|
|
|
|
static void _init_f_workingDirectory_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QDir > ();
|
|
}
|
|
|
|
static void _call_f_workingDirectory_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QDir > ((QDir)((QAbstractFormBuilder *)cls)->workingDirectory ());
|
|
}
|
|
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QAbstractFormBuilder () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAbstractFormBuilder::QAbstractFormBuilder()\nThis method creates an object of class QAbstractFormBuilder.", &_init_ctor_QAbstractFormBuilder_0, &_call_ctor_QAbstractFormBuilder_0);
|
|
methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QAbstractFormBuilder::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0);
|
|
methods += new qt_gsi::GenericMethod ("load", "@brief Method QWidget *QAbstractFormBuilder::load(QIODevice *dev, QWidget *parentWidget)\n", false, &_init_f_load_2654, &_call_f_load_2654);
|
|
methods += new qt_gsi::GenericMethod ("save", "@brief Method void QAbstractFormBuilder::save(QIODevice *dev, QWidget *widget)\n", false, &_init_f_save_2654, &_call_f_save_2654);
|
|
methods += new qt_gsi::GenericMethod ("setWorkingDirectory|workingDirectory=", "@brief Method void QAbstractFormBuilder::setWorkingDirectory(const QDir &directory)\n", false, &_init_f_setWorkingDirectory_1681, &_call_f_setWorkingDirectory_1681);
|
|
methods += new qt_gsi::GenericMethod (":workingDirectory", "@brief Method QDir QAbstractFormBuilder::workingDirectory()\n", true, &_init_f_workingDirectory_c0, &_call_f_workingDirectory_c0);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QAbstractFormBuilder> decl_QAbstractFormBuilder ("QAbstractFormBuilder",
|
|
methods_QAbstractFormBuilder (),
|
|
"@qt\n@brief Binding of QAbstractFormBuilder");
|
|
|
|
|
|
GSIQT_PUBLIC gsi::Class<QAbstractFormBuilder> &qtdecl_QAbstractFormBuilder () { return decl_QAbstractFormBuilder; }
|
|
|
|
}
|
|
|