mirror of https://github.com/KLayout/klayout.git
2082 lines
83 KiB
C++
2082 lines
83 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2018 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 gsiDeclQImage.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QImage>
|
|
#include <QIODevice>
|
|
#include <QImageTextKeyLang>
|
|
#include <QMatrix>
|
|
#include <QPaintEngine>
|
|
#include <QPoint>
|
|
#include <QRect>
|
|
#include <QSize>
|
|
#include <QTransform>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QImage
|
|
|
|
// bool QImage::allGray()
|
|
|
|
|
|
static void _init_f_allGray_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_allGray_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QImage *)cls)->allGray ());
|
|
}
|
|
|
|
|
|
// QImage QImage::alphaChannel()
|
|
|
|
|
|
static void _init_f_alphaChannel_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_alphaChannel_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->alphaChannel ());
|
|
}
|
|
|
|
|
|
// const unsigned char *QImage::bits()
|
|
|
|
|
|
static void _init_f_bits_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<const unsigned char * > ();
|
|
}
|
|
|
|
static void _call_f_bits_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<const unsigned char * > ((const unsigned char *)((QImage *)cls)->bits ());
|
|
}
|
|
|
|
|
|
// int QImage::byteCount()
|
|
|
|
|
|
static void _init_f_byteCount_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_byteCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->byteCount ());
|
|
}
|
|
|
|
|
|
// int QImage::bytesPerLine()
|
|
|
|
|
|
static void _init_f_bytesPerLine_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_bytesPerLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->bytesPerLine ());
|
|
}
|
|
|
|
|
|
// qint64 QImage::cacheKey()
|
|
|
|
|
|
static void _init_f_cacheKey_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qint64 > ();
|
|
}
|
|
|
|
static void _call_f_cacheKey_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qint64 > ((qint64)((QImage *)cls)->cacheKey ());
|
|
}
|
|
|
|
|
|
// unsigned int QImage::color(int i)
|
|
|
|
|
|
static void _init_f_color_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("i");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<unsigned int > ();
|
|
}
|
|
|
|
static void _call_f_color_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
ret.write<unsigned int > ((unsigned int)((QImage *)cls)->color (arg1));
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_colorCount_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_colorCount_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->colorCount ());
|
|
}
|
|
|
|
|
|
// QVector<QRgb> QImage::colorTable()
|
|
|
|
|
|
static void _init_f_colorTable_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QVector<QRgb> > ();
|
|
}
|
|
|
|
static void _call_f_colorTable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QVector<QRgb> > ((QVector<QRgb>)((QImage *)cls)->colorTable ());
|
|
}
|
|
|
|
|
|
// QImage QImage::convertToFormat(QImage::Format f, QFlags<Qt::ImageConversionFlag> flags)
|
|
|
|
|
|
static void _init_f_convertToFormat_c4993 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("f");
|
|
decl->add_arg<const qt_gsi::Converter<QImage::Format>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("flags", true, "Qt::AutoColor");
|
|
decl->add_arg<QFlags<Qt::ImageConversionFlag> > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_convertToFormat_c4993 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QImage::Format>::target_type & arg1 = args.read<const qt_gsi::Converter<QImage::Format>::target_type & > (heap);
|
|
QFlags<Qt::ImageConversionFlag> arg2 = args ? args.read<QFlags<Qt::ImageConversionFlag> > (heap) : (QFlags<Qt::ImageConversionFlag>)(Qt::AutoColor);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->convertToFormat (qt_gsi::QtToCppAdaptor<QImage::Format>(arg1).cref(), arg2));
|
|
}
|
|
|
|
|
|
// QImage QImage::convertToFormat(QImage::Format f, const QVector<QRgb> &colorTable, QFlags<Qt::ImageConversionFlag> flags)
|
|
|
|
|
|
static void _init_f_convertToFormat_c7392 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("f");
|
|
decl->add_arg<const qt_gsi::Converter<QImage::Format>::target_type & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("colorTable");
|
|
decl->add_arg<const QVector<QRgb> & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("flags", true, "Qt::AutoColor");
|
|
decl->add_arg<QFlags<Qt::ImageConversionFlag> > (argspec_2);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_convertToFormat_c7392 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QImage::Format>::target_type & arg1 = args.read<const qt_gsi::Converter<QImage::Format>::target_type & > (heap);
|
|
const QVector<QRgb> &arg2 = args.read<const QVector<QRgb> & > (heap);
|
|
QFlags<Qt::ImageConversionFlag> arg3 = args ? args.read<QFlags<Qt::ImageConversionFlag> > (heap) : (QFlags<Qt::ImageConversionFlag>)(Qt::AutoColor);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->convertToFormat (qt_gsi::QtToCppAdaptor<QImage::Format>(arg1).cref(), arg2, arg3));
|
|
}
|
|
|
|
|
|
// QImage QImage::copy(const QRect &rect)
|
|
|
|
|
|
static void _init_f_copy_c1792 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("rect", true, "QRect()");
|
|
decl->add_arg<const QRect & > (argspec_0);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_copy_c1792 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QRect &arg1 = args ? args.read<const QRect & > (heap) : (const QRect &)(QRect());
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->copy (arg1));
|
|
}
|
|
|
|
|
|
// QImage QImage::copy(int x, int y, int w, int h)
|
|
|
|
|
|
static void _init_f_copy_c2744 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("y");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("w");
|
|
decl->add_arg<int > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("h");
|
|
decl->add_arg<int > (argspec_3);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_copy_c2744 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
int arg4 = args.read<int > (heap);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->copy (arg1, arg2, arg3, arg4));
|
|
}
|
|
|
|
|
|
// QImage QImage::createAlphaMask(QFlags<Qt::ImageConversionFlag> flags)
|
|
|
|
|
|
static void _init_f_createAlphaMask_c3368 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("flags", true, "Qt::AutoColor");
|
|
decl->add_arg<QFlags<Qt::ImageConversionFlag> > (argspec_0);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_createAlphaMask_c3368 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QFlags<Qt::ImageConversionFlag> arg1 = args ? args.read<QFlags<Qt::ImageConversionFlag> > (heap) : (QFlags<Qt::ImageConversionFlag>)(Qt::AutoColor);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->createAlphaMask (arg1));
|
|
}
|
|
|
|
|
|
// QImage QImage::createHeuristicMask(bool clipTight)
|
|
|
|
|
|
static void _init_f_createHeuristicMask_c864 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("clipTight", true, "true");
|
|
decl->add_arg<bool > (argspec_0);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_createHeuristicMask_c864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args ? args.read<bool > (heap) : (bool)(true);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->createHeuristicMask (arg1));
|
|
}
|
|
|
|
|
|
// QImage QImage::createMaskFromColor(unsigned int color, Qt::MaskMode mode)
|
|
|
|
|
|
static void _init_f_createMaskFromColor_c3198 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("color");
|
|
decl->add_arg<unsigned int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode", true, "Qt::MaskInColor");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::MaskMode>::target_type & > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_createMaskFromColor_c3198 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
unsigned int arg1 = args.read<unsigned int > (heap);
|
|
const qt_gsi::Converter<Qt::MaskMode>::target_type & arg2 = args ? args.read<const qt_gsi::Converter<Qt::MaskMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::MaskMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::MaskMode>(heap, Qt::MaskInColor));
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->createMaskFromColor (arg1, qt_gsi::QtToCppAdaptor<Qt::MaskMode>(arg2).cref()));
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_depth_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_depth_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->depth ());
|
|
}
|
|
|
|
|
|
// void QImage::detach()
|
|
|
|
|
|
static void _init_f_detach_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_detach_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->detach ();
|
|
}
|
|
|
|
|
|
// int QImage::dotsPerMeterX()
|
|
|
|
|
|
static void _init_f_dotsPerMeterX_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_dotsPerMeterX_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->dotsPerMeterX ());
|
|
}
|
|
|
|
|
|
// int QImage::dotsPerMeterY()
|
|
|
|
|
|
static void _init_f_dotsPerMeterY_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_dotsPerMeterY_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->dotsPerMeterY ());
|
|
}
|
|
|
|
|
|
// void QImage::fill(unsigned int pixel)
|
|
|
|
|
|
static void _init_f_fill_1772 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pixel");
|
|
decl->add_arg<unsigned int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_fill_1772 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
unsigned int arg1 = args.read<unsigned int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->fill (arg1);
|
|
}
|
|
|
|
|
|
// QImage::Format QImage::format()
|
|
|
|
|
|
static void _init_f_format_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qt_gsi::Converter<QImage::Format>::target_type > ();
|
|
}
|
|
|
|
static void _call_f_format_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qt_gsi::Converter<QImage::Format>::target_type > ((qt_gsi::Converter<QImage::Format>::target_type)qt_gsi::CppToQtAdaptor<QImage::Format>(((QImage *)cls)->format ()));
|
|
}
|
|
|
|
|
|
// bool QImage::hasAlphaChannel()
|
|
|
|
|
|
static void _init_f_hasAlphaChannel_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_hasAlphaChannel_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QImage *)cls)->hasAlphaChannel ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_height_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_height_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->height ());
|
|
}
|
|
|
|
|
|
// void QImage::invertPixels(QImage::InvertMode)
|
|
|
|
|
|
static void _init_f_invertPixels_2137 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1", true, "QImage::InvertRgb");
|
|
decl->add_arg<const qt_gsi::Converter<QImage::InvertMode>::target_type & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_invertPixels_2137 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QImage::InvertMode>::target_type & arg1 = args ? args.read<const qt_gsi::Converter<QImage::InvertMode>::target_type & > (heap) : (const qt_gsi::Converter<QImage::InvertMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<QImage::InvertMode>(heap, QImage::InvertRgb));
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->invertPixels (qt_gsi::QtToCppAdaptor<QImage::InvertMode>(arg1).cref());
|
|
}
|
|
|
|
|
|
// bool QImage::isDetached()
|
|
|
|
|
|
static void _init_f_isDetached_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isDetached_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QImage *)cls)->isDetached ());
|
|
}
|
|
|
|
|
|
// bool QImage::isGrayscale()
|
|
|
|
|
|
static void _init_f_isGrayscale_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isGrayscale_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QImage *)cls)->isGrayscale ());
|
|
}
|
|
|
|
|
|
// bool QImage::isNull()
|
|
|
|
|
|
static void _init_f_isNull_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_isNull_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QImage *)cls)->isNull ());
|
|
}
|
|
|
|
|
|
// bool QImage::load(QIODevice *device, const char *format)
|
|
|
|
|
|
static void _init_f_load_3070 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("device");
|
|
decl->add_arg<QIODevice * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("format");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_load_3070 (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);
|
|
const char *arg2 = args.read<const char * > (heap);
|
|
ret.write<bool > ((bool)((QImage *)cls)->load (arg1, arg2));
|
|
}
|
|
|
|
|
|
// bool QImage::load(const QString &fileName, const char *format)
|
|
|
|
|
|
static void _init_f_load_3648 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("fileName");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("format", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_load_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QString &arg1 = args.read<const QString & > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<bool > ((bool)((QImage *)cls)->load (arg1, arg2));
|
|
}
|
|
|
|
|
|
// bool QImage::loadFromData(const unsigned char *buf, int len, const char *format)
|
|
|
|
|
|
static void _init_f_loadFromData_5018 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("buf");
|
|
decl->add_arg<const unsigned char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("len");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("format", true, "0");
|
|
decl->add_arg<const char * > (argspec_2);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_loadFromData_5018 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const unsigned char *arg1 = args.read<const unsigned char * > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
const char *arg3 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<bool > ((bool)((QImage *)cls)->loadFromData (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// bool QImage::loadFromData(const QByteArray &data, const char *aformat)
|
|
|
|
|
|
static void _init_f_loadFromData_3932 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("data");
|
|
decl->add_arg<const QByteArray & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("aformat", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_loadFromData_3932 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QByteArray &arg1 = args.read<const QByteArray & > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<bool > ((bool)((QImage *)cls)->loadFromData (arg1, arg2));
|
|
}
|
|
|
|
|
|
// QImage QImage::mirrored(bool horizontally, bool vertically)
|
|
|
|
|
|
static void _init_f_mirrored_c1620 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("horizontally", true, "false");
|
|
decl->add_arg<bool > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("vertically", true, "true");
|
|
decl->add_arg<bool > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_mirrored_c1620 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
bool arg1 = args ? args.read<bool > (heap) : (bool)(false);
|
|
bool arg2 = args ? args.read<bool > (heap) : (bool)(true);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->mirrored (arg1, arg2));
|
|
}
|
|
|
|
|
|
// int QImage::numBytes()
|
|
|
|
|
|
static void _init_f_numBytes_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_numBytes_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->numBytes ());
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_numColors_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_numColors_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->numColors ());
|
|
}
|
|
|
|
|
|
// QPoint QImage::offset()
|
|
|
|
|
|
static void _init_f_offset_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPoint > ();
|
|
}
|
|
|
|
static void _call_f_offset_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPoint > ((QPoint)((QImage *)cls)->offset ());
|
|
}
|
|
|
|
|
|
// bool QImage::operator!=(const QImage &)
|
|
|
|
|
|
static void _init_f_operator_excl__eq__c1877 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QImage & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_operator_excl__eq__c1877 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QImage &arg1 = args.read<const QImage & > (heap);
|
|
ret.write<bool > ((bool)((QImage *)cls)->operator!= (arg1));
|
|
}
|
|
|
|
|
|
// (const QImage &)
|
|
|
|
|
|
static void _init_f_operator_eq__1877 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QImage & > (argspec_0);
|
|
decl->set_return<QImage & > ();
|
|
}
|
|
|
|
static void _call_f_operator_eq__1877 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QImage &arg1 = args.read<const QImage & > (heap);
|
|
ret.write<QImage & > ((QImage &)((QImage *)cls)->operator= (arg1));
|
|
}
|
|
|
|
|
|
// bool QImage::operator==(const QImage &)
|
|
|
|
|
|
static void _init_f_operator_eq__eq__c1877 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QImage & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_operator_eq__eq__c1877 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QImage &arg1 = args.read<const QImage & > (heap);
|
|
ret.write<bool > ((bool)((QImage *)cls)->operator== (arg1));
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_paintEngine_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPaintEngine * > ();
|
|
}
|
|
|
|
static void _call_f_paintEngine_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPaintEngine * > ((QPaintEngine *)((QImage *)cls)->paintEngine ());
|
|
}
|
|
|
|
|
|
// unsigned int QImage::pixel(int x, int y)
|
|
|
|
|
|
static void _init_f_pixel_c1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("y");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<unsigned int > ();
|
|
}
|
|
|
|
static void _call_f_pixel_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
ret.write<unsigned int > ((unsigned int)((QImage *)cls)->pixel (arg1, arg2));
|
|
}
|
|
|
|
|
|
// unsigned int QImage::pixel(const QPoint &pt)
|
|
|
|
|
|
static void _init_f_pixel_c1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pt");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<unsigned int > ();
|
|
}
|
|
|
|
static void _call_f_pixel_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
ret.write<unsigned int > ((unsigned int)((QImage *)cls)->pixel (arg1));
|
|
}
|
|
|
|
|
|
// int QImage::pixelIndex(int x, int y)
|
|
|
|
|
|
static void _init_f_pixelIndex_c1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("y");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_pixelIndex_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
ret.write<int > ((int)((QImage *)cls)->pixelIndex (arg1, arg2));
|
|
}
|
|
|
|
|
|
// int QImage::pixelIndex(const QPoint &pt)
|
|
|
|
|
|
static void _init_f_pixelIndex_c1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pt");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_pixelIndex_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
ret.write<int > ((int)((QImage *)cls)->pixelIndex (arg1));
|
|
}
|
|
|
|
|
|
// QRect QImage::rect()
|
|
|
|
|
|
static void _init_f_rect_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QRect > ();
|
|
}
|
|
|
|
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<QRect > ((QRect)((QImage *)cls)->rect ());
|
|
}
|
|
|
|
|
|
// QImage QImage::rgbSwapped()
|
|
|
|
|
|
static void _init_f_rgbSwapped_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_rgbSwapped_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->rgbSwapped ());
|
|
}
|
|
|
|
|
|
// bool QImage::save(const QString &fileName, const char *format, int quality)
|
|
|
|
|
|
static void _init_f_save_c4307 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("fileName");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("format", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("quality", true, "-1");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_save_c4307 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QString &arg1 = args.read<const QString & > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
int arg3 = args ? args.read<int > (heap) : (int)(-1);
|
|
ret.write<bool > ((bool)((QImage *)cls)->save (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// bool QImage::save(QIODevice *device, const char *format, int quality)
|
|
|
|
|
|
static void _init_f_save_c3729 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("device");
|
|
decl->add_arg<QIODevice * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("format", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("quality", true, "-1");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_save_c3729 (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);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
int arg3 = args ? args.read<int > (heap) : (int)(-1);
|
|
ret.write<bool > ((bool)((QImage *)cls)->save (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// QImage QImage::scaled(int w, int h, Qt::AspectRatioMode aspectMode, Qt::TransformationMode mode)
|
|
|
|
|
|
static void _init_f_scaled_c6100 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("h");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("aspectMode", true, "Qt::IgnoreAspectRatio");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::AspectRatioMode>::target_type & > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("mode", true, "Qt::FastTransformation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (argspec_3);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_scaled_c6100 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
const qt_gsi::Converter<Qt::AspectRatioMode>::target_type & arg3 = args ? args.read<const qt_gsi::Converter<Qt::AspectRatioMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::AspectRatioMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::AspectRatioMode>(heap, Qt::IgnoreAspectRatio));
|
|
const qt_gsi::Converter<Qt::TransformationMode>::target_type & arg4 = args ? args.read<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::TransformationMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::TransformationMode>(heap, Qt::FastTransformation));
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->scaled (arg1, arg2, qt_gsi::QtToCppAdaptor<Qt::AspectRatioMode>(arg3).cref(), qt_gsi::QtToCppAdaptor<Qt::TransformationMode>(arg4).cref()));
|
|
}
|
|
|
|
|
|
// QImage QImage::scaled(const QSize &s, Qt::AspectRatioMode aspectMode, Qt::TransformationMode mode)
|
|
|
|
|
|
static void _init_f_scaled_c6479 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const QSize & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("aspectMode", true, "Qt::IgnoreAspectRatio");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::AspectRatioMode>::target_type & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("mode", true, "Qt::FastTransformation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (argspec_2);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_scaled_c6479 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QSize &arg1 = args.read<const QSize & > (heap);
|
|
const qt_gsi::Converter<Qt::AspectRatioMode>::target_type & arg2 = args ? args.read<const qt_gsi::Converter<Qt::AspectRatioMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::AspectRatioMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::AspectRatioMode>(heap, Qt::IgnoreAspectRatio));
|
|
const qt_gsi::Converter<Qt::TransformationMode>::target_type & arg3 = args ? args.read<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::TransformationMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::TransformationMode>(heap, Qt::FastTransformation));
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->scaled (arg1, qt_gsi::QtToCppAdaptor<Qt::AspectRatioMode>(arg2).cref(), qt_gsi::QtToCppAdaptor<Qt::TransformationMode>(arg3).cref()));
|
|
}
|
|
|
|
|
|
// QImage QImage::scaledToHeight(int h, Qt::TransformationMode mode)
|
|
|
|
|
|
static void _init_f_scaledToHeight_c3292 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("h");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode", true, "Qt::FastTransformation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_scaledToHeight_c3292 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
const qt_gsi::Converter<Qt::TransformationMode>::target_type & arg2 = args ? args.read<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::TransformationMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::TransformationMode>(heap, Qt::FastTransformation));
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->scaledToHeight (arg1, qt_gsi::QtToCppAdaptor<Qt::TransformationMode>(arg2).cref()));
|
|
}
|
|
|
|
|
|
// QImage QImage::scaledToWidth(int w, Qt::TransformationMode mode)
|
|
|
|
|
|
static void _init_f_scaledToWidth_c3292 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("w");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode", true, "Qt::FastTransformation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_scaledToWidth_c3292 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
const qt_gsi::Converter<Qt::TransformationMode>::target_type & arg2 = args ? args.read<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::TransformationMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::TransformationMode>(heap, Qt::FastTransformation));
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->scaledToWidth (arg1, qt_gsi::QtToCppAdaptor<Qt::TransformationMode>(arg2).cref()));
|
|
}
|
|
|
|
|
|
// const unsigned char *QImage::scanLine(int)
|
|
|
|
|
|
static void _init_f_scanLine_c767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<const unsigned char * > ();
|
|
}
|
|
|
|
static void _call_f_scanLine_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
ret.write<const unsigned char * > ((const unsigned char *)((QImage *)cls)->scanLine (arg1));
|
|
}
|
|
|
|
|
|
// int QImage::serialNumber()
|
|
|
|
|
|
static void _init_f_serialNumber_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_serialNumber_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->serialNumber ());
|
|
}
|
|
|
|
|
|
// void QImage::setAlphaChannel(const QImage &alphaChannel)
|
|
|
|
|
|
static void _init_f_setAlphaChannel_1877 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("alphaChannel");
|
|
decl->add_arg<const QImage & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setAlphaChannel_1877 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QImage &arg1 = args.read<const QImage & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setAlphaChannel (arg1);
|
|
}
|
|
|
|
|
|
// void QImage::setColor(int i, unsigned int c)
|
|
|
|
|
|
static void _init_f_setColor_2431 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("i");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c");
|
|
decl->add_arg<unsigned int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setColor_2431 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
unsigned int arg2 = args.read<unsigned int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setColor (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QImage::setColorCount(int)
|
|
|
|
|
|
static void _init_f_setColorCount_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setColorCount_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setColorCount (arg1);
|
|
}
|
|
|
|
|
|
// void QImage::setColorTable(const QVector<QRgb> colors)
|
|
|
|
|
|
static void _init_f_setColorTable_2325 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("colors");
|
|
decl->add_arg<const QVector<QRgb> > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setColorTable_2325 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QVector<QRgb> arg1 = args.read<const QVector<QRgb> > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setColorTable (arg1);
|
|
}
|
|
|
|
|
|
// void QImage::setDotsPerMeterX(int)
|
|
|
|
|
|
static void _init_f_setDotsPerMeterX_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setDotsPerMeterX_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setDotsPerMeterX (arg1);
|
|
}
|
|
|
|
|
|
// void QImage::setDotsPerMeterY(int)
|
|
|
|
|
|
static void _init_f_setDotsPerMeterY_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setDotsPerMeterY_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setDotsPerMeterY (arg1);
|
|
}
|
|
|
|
|
|
// void QImage::setNumColors(int)
|
|
|
|
|
|
static void _init_f_setNumColors_767 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<int > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setNumColors_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setNumColors (arg1);
|
|
}
|
|
|
|
|
|
// void QImage::setOffset(const QPoint &)
|
|
|
|
|
|
static void _init_f_setOffset_1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setOffset_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setOffset (arg1);
|
|
}
|
|
|
|
|
|
// void QImage::setPixel(int x, int y, unsigned int index_or_rgb)
|
|
|
|
|
|
static void _init_f_setPixel_3090 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("y");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("index_or_rgb");
|
|
decl->add_arg<unsigned int > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setPixel_3090 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
unsigned int arg3 = args.read<unsigned int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setPixel (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// void QImage::setPixel(const QPoint &pt, unsigned int index_or_rgb)
|
|
|
|
|
|
static void _init_f_setPixel_3580 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pt");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("index_or_rgb");
|
|
decl->add_arg<unsigned int > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setPixel_3580 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
unsigned int arg2 = args.read<unsigned int > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setPixel (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QImage::setText(const QString &key, const QString &value)
|
|
|
|
|
|
static void _init_f_setText_3942 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("key");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("value");
|
|
decl->add_arg<const QString & > (argspec_1);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setText_3942 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QString &arg1 = args.read<const QString & > (heap);
|
|
const QString &arg2 = args.read<const QString & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setText (arg1, arg2);
|
|
}
|
|
|
|
|
|
// void QImage::setText(const char *key, const char *lang, const QString &)
|
|
|
|
|
|
static void _init_f_setText_5271 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("key");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("lang");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("arg3");
|
|
decl->add_arg<const QString & > (argspec_2);
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_setText_5271 (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<const char * > (heap);
|
|
const char *arg2 = args.read<const char * > (heap);
|
|
const QString &arg3 = args.read<const QString & > (heap);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QImage *)cls)->setText (arg1, arg2, arg3);
|
|
}
|
|
|
|
|
|
// QSize QImage::size()
|
|
|
|
|
|
static void _init_f_size_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QSize > ();
|
|
}
|
|
|
|
static void _call_f_size_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QSize > ((QSize)((QImage *)cls)->size ());
|
|
}
|
|
|
|
|
|
// QString QImage::text(const char *key, const char *lang)
|
|
|
|
|
|
static void _init_f_text_c3354 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("key");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("lang", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_text_c3354 (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<const char * > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QString > ((QString)((QImage *)cls)->text (arg1, arg2));
|
|
}
|
|
|
|
|
|
// QString QImage::text(const QImageTextKeyLang &)
|
|
|
|
|
|
static void _init_f_text_c2981 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QImageTextKeyLang & > (argspec_0);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_text_c2981 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QImageTextKeyLang &arg1 = args.read<const QImageTextKeyLang & > (heap);
|
|
ret.write<QString > ((QString)((QImage *)cls)->text (arg1));
|
|
}
|
|
|
|
|
|
// QStringList QImage::textKeys()
|
|
|
|
|
|
static void _init_f_textKeys_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QStringList > ();
|
|
}
|
|
|
|
static void _call_f_textKeys_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QStringList > ((QStringList)((QImage *)cls)->textKeys ());
|
|
}
|
|
|
|
|
|
// QStringList QImage::textLanguages()
|
|
|
|
|
|
static void _init_f_textLanguages_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QStringList > ();
|
|
}
|
|
|
|
static void _call_f_textLanguages_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QStringList > ((QStringList)((QImage *)cls)->textLanguages ());
|
|
}
|
|
|
|
|
|
// QList<QImageTextKeyLang> QImage::textList()
|
|
|
|
|
|
static void _init_f_textList_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QList<QImageTextKeyLang> > ();
|
|
}
|
|
|
|
static void _call_f_textList_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QList<QImageTextKeyLang> > ((QList<QImageTextKeyLang>)((QImage *)cls)->textList ());
|
|
}
|
|
|
|
|
|
// QImage QImage::transformed(const QMatrix &matrix, Qt::TransformationMode mode)
|
|
|
|
|
|
static void _init_f_transformed_c4548 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("matrix");
|
|
decl->add_arg<const QMatrix & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode", true, "Qt::FastTransformation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_transformed_c4548 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QMatrix &arg1 = args.read<const QMatrix & > (heap);
|
|
const qt_gsi::Converter<Qt::TransformationMode>::target_type & arg2 = args ? args.read<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::TransformationMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::TransformationMode>(heap, Qt::FastTransformation));
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor<Qt::TransformationMode>(arg2).cref()));
|
|
}
|
|
|
|
|
|
// QImage QImage::transformed(const QTransform &matrix, Qt::TransformationMode mode)
|
|
|
|
|
|
static void _init_f_transformed_c4875 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("matrix");
|
|
decl->add_arg<const QTransform & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode", true, "Qt::FastTransformation");
|
|
decl->add_arg<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_transformed_c4875 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QTransform &arg1 = args.read<const QTransform & > (heap);
|
|
const qt_gsi::Converter<Qt::TransformationMode>::target_type & arg2 = args ? args.read<const qt_gsi::Converter<Qt::TransformationMode>::target_type & > (heap) : (const qt_gsi::Converter<Qt::TransformationMode>::target_type &)(qt_gsi::CppToQtReadAdaptor<Qt::TransformationMode>(heap, Qt::FastTransformation));
|
|
ret.write<QImage > ((QImage)((QImage *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor<Qt::TransformationMode>(arg2).cref()));
|
|
}
|
|
|
|
|
|
// bool QImage::valid(int x, int y)
|
|
|
|
|
|
static void _init_f_valid_c1426 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("x");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("y");
|
|
decl->add_arg<int > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_valid_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
ret.write<bool > ((bool)((QImage *)cls)->valid (arg1, arg2));
|
|
}
|
|
|
|
|
|
// bool QImage::valid(const QPoint &pt)
|
|
|
|
|
|
static void _init_f_valid_c1916 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("pt");
|
|
decl->add_arg<const QPoint & > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_valid_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QPoint &arg1 = args.read<const QPoint & > (heap);
|
|
ret.write<bool > ((bool)((QImage *)cls)->valid (arg1));
|
|
}
|
|
|
|
|
|
// () const
|
|
|
|
|
|
static void _init_f_width_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_f_width_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<int > ((int)((QImage *)cls)->width ());
|
|
}
|
|
|
|
|
|
// static QImage QImage::fromData(const unsigned char *data, int size, const char *format)
|
|
|
|
|
|
static void _init_f_fromData_5018 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("data");
|
|
decl->add_arg<const unsigned char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("size");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("format", true, "0");
|
|
decl->add_arg<const char * > (argspec_2);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_fromData_5018 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const unsigned char *arg1 = args.read<const unsigned char * > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
const char *arg3 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QImage > ((QImage)QImage::fromData (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QImage QImage::fromData(const QByteArray &data, const char *format)
|
|
|
|
|
|
static void _init_f_fromData_3932 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("data");
|
|
decl->add_arg<const QByteArray & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("format", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<QImage > ();
|
|
}
|
|
|
|
static void _call_f_fromData_3932 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QByteArray &arg1 = args.read<const QByteArray & > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QImage > ((QImage)QImage::fromData (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QMatrix QImage::trueMatrix(const QMatrix &, int w, int h)
|
|
|
|
|
|
static void _init_f_trueMatrix_3341 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QMatrix & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("w");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("h");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QMatrix > ();
|
|
}
|
|
|
|
static void _call_f_trueMatrix_3341 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QMatrix &arg1 = args.read<const QMatrix & > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
ret.write<QMatrix > ((QMatrix)QImage::trueMatrix (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QTransform QImage::trueMatrix(const QTransform &, int w, int h)
|
|
|
|
|
|
static void _init_f_trueMatrix_3668 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QTransform & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("w");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("h");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QTransform > ();
|
|
}
|
|
|
|
static void _call_f_trueMatrix_3668 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QTransform &arg1 = args.read<const QTransform & > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
ret.write<QTransform > ((QTransform)QImage::trueMatrix (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QImage () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericMethod ("allGray", "@brief Method bool QImage::allGray()\n", true, &_init_f_allGray_c0, &_call_f_allGray_c0);
|
|
methods += new qt_gsi::GenericMethod (":alphaChannel", "@brief Method QImage QImage::alphaChannel()\n", true, &_init_f_alphaChannel_c0, &_call_f_alphaChannel_c0);
|
|
methods += new qt_gsi::GenericMethod ("bits", "@brief Method const unsigned char *QImage::bits()\n", true, &_init_f_bits_c0, &_call_f_bits_c0);
|
|
methods += new qt_gsi::GenericMethod ("byteCount", "@brief Method int QImage::byteCount()\n", true, &_init_f_byteCount_c0, &_call_f_byteCount_c0);
|
|
methods += new qt_gsi::GenericMethod ("bytesPerLine", "@brief Method int QImage::bytesPerLine()\n", true, &_init_f_bytesPerLine_c0, &_call_f_bytesPerLine_c0);
|
|
methods += new qt_gsi::GenericMethod ("cacheKey", "@brief Method qint64 QImage::cacheKey()\n", true, &_init_f_cacheKey_c0, &_call_f_cacheKey_c0);
|
|
methods += new qt_gsi::GenericMethod ("color", "@brief Method unsigned int QImage::color(int i)\n", true, &_init_f_color_c767, &_call_f_color_c767);
|
|
methods += new qt_gsi::GenericMethod (":colorCount", "@brief Method () const\n", true, &_init_f_colorCount_c0, &_call_f_colorCount_c0);
|
|
methods += new qt_gsi::GenericMethod (":colorTable", "@brief Method QVector<QRgb> QImage::colorTable()\n", true, &_init_f_colorTable_c0, &_call_f_colorTable_c0);
|
|
methods += new qt_gsi::GenericMethod ("convertToFormat", "@brief Method QImage QImage::convertToFormat(QImage::Format f, QFlags<Qt::ImageConversionFlag> flags)\n", true, &_init_f_convertToFormat_c4993, &_call_f_convertToFormat_c4993);
|
|
methods += new qt_gsi::GenericMethod ("convertToFormat", "@brief Method QImage QImage::convertToFormat(QImage::Format f, const QVector<QRgb> &colorTable, QFlags<Qt::ImageConversionFlag> flags)\n", true, &_init_f_convertToFormat_c7392, &_call_f_convertToFormat_c7392);
|
|
methods += new qt_gsi::GenericMethod ("copy", "@brief Method QImage QImage::copy(const QRect &rect)\n", true, &_init_f_copy_c1792, &_call_f_copy_c1792);
|
|
methods += new qt_gsi::GenericMethod ("copy", "@brief Method QImage QImage::copy(int x, int y, int w, int h)\n", true, &_init_f_copy_c2744, &_call_f_copy_c2744);
|
|
methods += new qt_gsi::GenericMethod ("createAlphaMask", "@brief Method QImage QImage::createAlphaMask(QFlags<Qt::ImageConversionFlag> flags)\n", true, &_init_f_createAlphaMask_c3368, &_call_f_createAlphaMask_c3368);
|
|
methods += new qt_gsi::GenericMethod ("createHeuristicMask", "@brief Method QImage QImage::createHeuristicMask(bool clipTight)\n", true, &_init_f_createHeuristicMask_c864, &_call_f_createHeuristicMask_c864);
|
|
methods += new qt_gsi::GenericMethod ("createMaskFromColor", "@brief Method QImage QImage::createMaskFromColor(unsigned int color, Qt::MaskMode mode)\n", true, &_init_f_createMaskFromColor_c3198, &_call_f_createMaskFromColor_c3198);
|
|
methods += new qt_gsi::GenericMethod ("depth", "@brief Method () const\n", true, &_init_f_depth_c0, &_call_f_depth_c0);
|
|
methods += new qt_gsi::GenericMethod ("detach", "@brief Method void QImage::detach()\n", false, &_init_f_detach_0, &_call_f_detach_0);
|
|
methods += new qt_gsi::GenericMethod (":dotsPerMeterX", "@brief Method int QImage::dotsPerMeterX()\n", true, &_init_f_dotsPerMeterX_c0, &_call_f_dotsPerMeterX_c0);
|
|
methods += new qt_gsi::GenericMethod (":dotsPerMeterY", "@brief Method int QImage::dotsPerMeterY()\n", true, &_init_f_dotsPerMeterY_c0, &_call_f_dotsPerMeterY_c0);
|
|
methods += new qt_gsi::GenericMethod ("fill", "@brief Method void QImage::fill(unsigned int pixel)\n", false, &_init_f_fill_1772, &_call_f_fill_1772);
|
|
methods += new qt_gsi::GenericMethod ("format", "@brief Method QImage::Format QImage::format()\n", true, &_init_f_format_c0, &_call_f_format_c0);
|
|
methods += new qt_gsi::GenericMethod ("hasAlphaChannel", "@brief Method bool QImage::hasAlphaChannel()\n", true, &_init_f_hasAlphaChannel_c0, &_call_f_hasAlphaChannel_c0);
|
|
methods += new qt_gsi::GenericMethod ("height", "@brief Method () const\n", true, &_init_f_height_c0, &_call_f_height_c0);
|
|
methods += new qt_gsi::GenericMethod ("invertPixels", "@brief Method void QImage::invertPixels(QImage::InvertMode)\n", false, &_init_f_invertPixels_2137, &_call_f_invertPixels_2137);
|
|
methods += new qt_gsi::GenericMethod ("isDetached?", "@brief Method bool QImage::isDetached()\n", true, &_init_f_isDetached_c0, &_call_f_isDetached_c0);
|
|
methods += new qt_gsi::GenericMethod ("isGrayscale?", "@brief Method bool QImage::isGrayscale()\n", true, &_init_f_isGrayscale_c0, &_call_f_isGrayscale_c0);
|
|
methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QImage::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0);
|
|
methods += new qt_gsi::GenericMethod ("load", "@brief Method bool QImage::load(QIODevice *device, const char *format)\n", false, &_init_f_load_3070, &_call_f_load_3070);
|
|
methods += new qt_gsi::GenericMethod ("load", "@brief Method bool QImage::load(const QString &fileName, const char *format)\n", false, &_init_f_load_3648, &_call_f_load_3648);
|
|
methods += new qt_gsi::GenericMethod ("loadFromData", "@brief Method bool QImage::loadFromData(const unsigned char *buf, int len, const char *format)\n", false, &_init_f_loadFromData_5018, &_call_f_loadFromData_5018);
|
|
methods += new qt_gsi::GenericMethod ("loadFromData", "@brief Method bool QImage::loadFromData(const QByteArray &data, const char *aformat)\n", false, &_init_f_loadFromData_3932, &_call_f_loadFromData_3932);
|
|
methods += new qt_gsi::GenericMethod ("mirrored", "@brief Method QImage QImage::mirrored(bool horizontally, bool vertically)\n", true, &_init_f_mirrored_c1620, &_call_f_mirrored_c1620);
|
|
methods += new qt_gsi::GenericMethod ("numBytes", "@brief Method int QImage::numBytes()\n", true, &_init_f_numBytes_c0, &_call_f_numBytes_c0);
|
|
methods += new qt_gsi::GenericMethod (":numColors", "@brief Method () const\n", true, &_init_f_numColors_c0, &_call_f_numColors_c0);
|
|
methods += new qt_gsi::GenericMethod (":offset", "@brief Method QPoint QImage::offset()\n", true, &_init_f_offset_c0, &_call_f_offset_c0);
|
|
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QImage::operator!=(const QImage &)\n", true, &_init_f_operator_excl__eq__c1877, &_call_f_operator_excl__eq__c1877);
|
|
methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QImage &)\n", false, &_init_f_operator_eq__1877, &_call_f_operator_eq__1877);
|
|
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QImage::operator==(const QImage &)\n", true, &_init_f_operator_eq__eq__c1877, &_call_f_operator_eq__eq__c1877);
|
|
methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Method () const\nThis is a reimplementation of QPaintDevice::paintEngine", true, &_init_f_paintEngine_c0, &_call_f_paintEngine_c0);
|
|
methods += new qt_gsi::GenericMethod ("pixel", "@brief Method unsigned int QImage::pixel(int x, int y)\n", true, &_init_f_pixel_c1426, &_call_f_pixel_c1426);
|
|
methods += new qt_gsi::GenericMethod ("pixel", "@brief Method unsigned int QImage::pixel(const QPoint &pt)\n", true, &_init_f_pixel_c1916, &_call_f_pixel_c1916);
|
|
methods += new qt_gsi::GenericMethod ("pixelIndex", "@brief Method int QImage::pixelIndex(int x, int y)\n", true, &_init_f_pixelIndex_c1426, &_call_f_pixelIndex_c1426);
|
|
methods += new qt_gsi::GenericMethod ("pixelIndex", "@brief Method int QImage::pixelIndex(const QPoint &pt)\n", true, &_init_f_pixelIndex_c1916, &_call_f_pixelIndex_c1916);
|
|
methods += new qt_gsi::GenericMethod ("rect", "@brief Method QRect QImage::rect()\n", true, &_init_f_rect_c0, &_call_f_rect_c0);
|
|
methods += new qt_gsi::GenericMethod ("rgbSwapped", "@brief Method QImage QImage::rgbSwapped()\n", true, &_init_f_rgbSwapped_c0, &_call_f_rgbSwapped_c0);
|
|
methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QImage::save(const QString &fileName, const char *format, int quality)\n", true, &_init_f_save_c4307, &_call_f_save_c4307);
|
|
methods += new qt_gsi::GenericMethod ("save", "@brief Method bool QImage::save(QIODevice *device, const char *format, int quality)\n", true, &_init_f_save_c3729, &_call_f_save_c3729);
|
|
methods += new qt_gsi::GenericMethod ("scaled", "@brief Method QImage QImage::scaled(int w, int h, Qt::AspectRatioMode aspectMode, Qt::TransformationMode mode)\n", true, &_init_f_scaled_c6100, &_call_f_scaled_c6100);
|
|
methods += new qt_gsi::GenericMethod ("scaled", "@brief Method QImage QImage::scaled(const QSize &s, Qt::AspectRatioMode aspectMode, Qt::TransformationMode mode)\n", true, &_init_f_scaled_c6479, &_call_f_scaled_c6479);
|
|
methods += new qt_gsi::GenericMethod ("scaledToHeight", "@brief Method QImage QImage::scaledToHeight(int h, Qt::TransformationMode mode)\n", true, &_init_f_scaledToHeight_c3292, &_call_f_scaledToHeight_c3292);
|
|
methods += new qt_gsi::GenericMethod ("scaledToWidth", "@brief Method QImage QImage::scaledToWidth(int w, Qt::TransformationMode mode)\n", true, &_init_f_scaledToWidth_c3292, &_call_f_scaledToWidth_c3292);
|
|
methods += new qt_gsi::GenericMethod ("scanLine", "@brief Method const unsigned char *QImage::scanLine(int)\n", true, &_init_f_scanLine_c767, &_call_f_scanLine_c767);
|
|
methods += new qt_gsi::GenericMethod ("serialNumber", "@brief Method int QImage::serialNumber()\n", true, &_init_f_serialNumber_c0, &_call_f_serialNumber_c0);
|
|
methods += new qt_gsi::GenericMethod ("setAlphaChannel|alphaChannel=", "@brief Method void QImage::setAlphaChannel(const QImage &alphaChannel)\n", false, &_init_f_setAlphaChannel_1877, &_call_f_setAlphaChannel_1877);
|
|
methods += new qt_gsi::GenericMethod ("setColor", "@brief Method void QImage::setColor(int i, unsigned int c)\n", false, &_init_f_setColor_2431, &_call_f_setColor_2431);
|
|
methods += new qt_gsi::GenericMethod ("setColorCount|colorCount=", "@brief Method void QImage::setColorCount(int)\n", false, &_init_f_setColorCount_767, &_call_f_setColorCount_767);
|
|
methods += new qt_gsi::GenericMethod ("setColorTable|colorTable=", "@brief Method void QImage::setColorTable(const QVector<QRgb> colors)\n", false, &_init_f_setColorTable_2325, &_call_f_setColorTable_2325);
|
|
methods += new qt_gsi::GenericMethod ("setDotsPerMeterX|dotsPerMeterX=", "@brief Method void QImage::setDotsPerMeterX(int)\n", false, &_init_f_setDotsPerMeterX_767, &_call_f_setDotsPerMeterX_767);
|
|
methods += new qt_gsi::GenericMethod ("setDotsPerMeterY|dotsPerMeterY=", "@brief Method void QImage::setDotsPerMeterY(int)\n", false, &_init_f_setDotsPerMeterY_767, &_call_f_setDotsPerMeterY_767);
|
|
methods += new qt_gsi::GenericMethod ("setNumColors|numColors=", "@brief Method void QImage::setNumColors(int)\n", false, &_init_f_setNumColors_767, &_call_f_setNumColors_767);
|
|
methods += new qt_gsi::GenericMethod ("setOffset|offset=", "@brief Method void QImage::setOffset(const QPoint &)\n", false, &_init_f_setOffset_1916, &_call_f_setOffset_1916);
|
|
methods += new qt_gsi::GenericMethod ("setPixel", "@brief Method void QImage::setPixel(int x, int y, unsigned int index_or_rgb)\n", false, &_init_f_setPixel_3090, &_call_f_setPixel_3090);
|
|
methods += new qt_gsi::GenericMethod ("setPixel", "@brief Method void QImage::setPixel(const QPoint &pt, unsigned int index_or_rgb)\n", false, &_init_f_setPixel_3580, &_call_f_setPixel_3580);
|
|
methods += new qt_gsi::GenericMethod ("setText", "@brief Method void QImage::setText(const QString &key, const QString &value)\n", false, &_init_f_setText_3942, &_call_f_setText_3942);
|
|
methods += new qt_gsi::GenericMethod ("setText", "@brief Method void QImage::setText(const char *key, const char *lang, const QString &)\n", false, &_init_f_setText_5271, &_call_f_setText_5271);
|
|
methods += new qt_gsi::GenericMethod ("size", "@brief Method QSize QImage::size()\n", true, &_init_f_size_c0, &_call_f_size_c0);
|
|
methods += new qt_gsi::GenericMethod ("text", "@brief Method QString QImage::text(const char *key, const char *lang)\n", true, &_init_f_text_c3354, &_call_f_text_c3354);
|
|
methods += new qt_gsi::GenericMethod ("text", "@brief Method QString QImage::text(const QImageTextKeyLang &)\n", true, &_init_f_text_c2981, &_call_f_text_c2981);
|
|
methods += new qt_gsi::GenericMethod ("textKeys", "@brief Method QStringList QImage::textKeys()\n", true, &_init_f_textKeys_c0, &_call_f_textKeys_c0);
|
|
methods += new qt_gsi::GenericMethod ("textLanguages", "@brief Method QStringList QImage::textLanguages()\n", true, &_init_f_textLanguages_c0, &_call_f_textLanguages_c0);
|
|
methods += new qt_gsi::GenericMethod ("textList", "@brief Method QList<QImageTextKeyLang> QImage::textList()\n", true, &_init_f_textList_c0, &_call_f_textList_c0);
|
|
methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QImage QImage::transformed(const QMatrix &matrix, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4548, &_call_f_transformed_c4548);
|
|
methods += new qt_gsi::GenericMethod ("transformed", "@brief Method QImage QImage::transformed(const QTransform &matrix, Qt::TransformationMode mode)\n", true, &_init_f_transformed_c4875, &_call_f_transformed_c4875);
|
|
methods += new qt_gsi::GenericMethod ("valid", "@brief Method bool QImage::valid(int x, int y)\n", true, &_init_f_valid_c1426, &_call_f_valid_c1426);
|
|
methods += new qt_gsi::GenericMethod ("valid", "@brief Method bool QImage::valid(const QPoint &pt)\n", true, &_init_f_valid_c1916, &_call_f_valid_c1916);
|
|
methods += new qt_gsi::GenericMethod ("width", "@brief Method () const\n", true, &_init_f_width_c0, &_call_f_width_c0);
|
|
methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QImage QImage::fromData(const unsigned char *data, int size, const char *format)\nThis method is static and can be called without an instance.", &_init_f_fromData_5018, &_call_f_fromData_5018);
|
|
methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QImage QImage::fromData(const QByteArray &data, const char *format)\nThis method is static and can be called without an instance.", &_init_f_fromData_3932, &_call_f_fromData_3932);
|
|
methods += new qt_gsi::GenericStaticMethod ("trueMatrix", "@brief Static method QMatrix QImage::trueMatrix(const QMatrix &, int w, int h)\nThis method is static and can be called without an instance.", &_init_f_trueMatrix_3341, &_call_f_trueMatrix_3341);
|
|
methods += new qt_gsi::GenericStaticMethod ("trueMatrix", "@brief Static method QTransform QImage::trueMatrix(const QTransform &, int w, int h)\nThis method is static and can be called without an instance.", &_init_f_trueMatrix_3668, &_call_f_trueMatrix_3668);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QPaintDevice> &qtdecl_QPaintDevice ();
|
|
|
|
gsi::Class<QImage> decl_QImage (qtdecl_QPaintDevice (), "QImage_Native",
|
|
methods_QImage (),
|
|
"@hide\n@alias QImage");
|
|
|
|
GSIQT_PUBLIC gsi::Class<QImage> &qtdecl_QImage () { return decl_QImage; }
|
|
|
|
}
|
|
|
|
|
|
class QImage_Adaptor : public QImage, public qt_gsi::QtObjectBase
|
|
{
|
|
public:
|
|
|
|
virtual ~QImage_Adaptor();
|
|
|
|
// [adaptor ctor] QImage::QImage()
|
|
QImage_Adaptor() : QImage()
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QImage::QImage(const QSize &size, QImage::Format format)
|
|
QImage_Adaptor(const QSize &size, QImage::Format format) : QImage(size, format)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QImage::QImage(int width, int height, QImage::Format format)
|
|
QImage_Adaptor(int width, int height, QImage::Format format) : QImage(width, height, format)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QImage::QImage(const unsigned char *data, int width, int height, QImage::Format format)
|
|
QImage_Adaptor(const unsigned char *data, int width, int height, QImage::Format format) : QImage(data, width, height, format)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QImage::QImage(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format)
|
|
QImage_Adaptor(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format) : QImage(data, width, height, bytesPerLine, format)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QImage::QImage(const QString &fileName, const char *format)
|
|
QImage_Adaptor(const QString &fileName) : QImage(fileName)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QImage::QImage(const QString &fileName, const char *format)
|
|
QImage_Adaptor(const QString &fileName, const char *format) : QImage(fileName, format)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor ctor] QImage::QImage(const QImage &)
|
|
QImage_Adaptor(const QImage &arg1) : QImage(arg1)
|
|
{
|
|
qt_gsi::QtObjectBase::init (this);
|
|
}
|
|
|
|
// [adaptor impl] QPaintEngine *QImage::paintEngine()
|
|
QPaintEngine * cbs_paintEngine_c0_0() const
|
|
{
|
|
return QImage::paintEngine();
|
|
}
|
|
|
|
virtual QPaintEngine * paintEngine() const
|
|
{
|
|
if (cb_paintEngine_c0_0.can_issue()) {
|
|
return cb_paintEngine_c0_0.issue<QImage_Adaptor, QPaintEngine *>(&QImage_Adaptor::cbs_paintEngine_c0_0);
|
|
} else {
|
|
return QImage::paintEngine();
|
|
}
|
|
}
|
|
|
|
// [adaptor impl] int QImage::metric(QPaintDevice::PaintDeviceMetric metric)
|
|
int cbs_metric_c3445_0(const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & _metric) const
|
|
{
|
|
return QImage::metric(qt_gsi::QtToCppAdaptor<QPaintDevice::PaintDeviceMetric>(_metric).cref());
|
|
}
|
|
|
|
virtual int metric(QPaintDevice::PaintDeviceMetric _metric) const
|
|
{
|
|
if (cb_metric_c3445_0.can_issue()) {
|
|
return cb_metric_c3445_0.issue<QImage_Adaptor, int, const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type &>(&QImage_Adaptor::cbs_metric_c3445_0, qt_gsi::CppToQtAdaptor<QPaintDevice::PaintDeviceMetric>(_metric));
|
|
} else {
|
|
return QImage::metric(_metric);
|
|
}
|
|
}
|
|
|
|
gsi::Callback cb_paintEngine_c0_0;
|
|
gsi::Callback cb_metric_c3445_0;
|
|
};
|
|
|
|
QImage_Adaptor::~QImage_Adaptor() { }
|
|
|
|
// Constructor QImage::QImage() (adaptor class)
|
|
|
|
static void _init_ctor_QImage_Adaptor_0 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
decl->set_return_new<QImage_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QImage_Adaptor_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QImage_Adaptor *> (new QImage_Adaptor ());
|
|
}
|
|
|
|
|
|
// Constructor QImage::QImage(const QSize &size, QImage::Format format) (adaptor class)
|
|
|
|
static void _init_ctor_QImage_Adaptor_3430 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("size");
|
|
decl->add_arg<const QSize & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("format");
|
|
decl->add_arg<const qt_gsi::Converter<QImage::Format>::target_type & > (argspec_1);
|
|
decl->set_return_new<QImage_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QImage_Adaptor_3430 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QSize &arg1 = args.read<const QSize & > (heap);
|
|
const qt_gsi::Converter<QImage::Format>::target_type & arg2 = args.read<const qt_gsi::Converter<QImage::Format>::target_type & > (heap);
|
|
ret.write<QImage_Adaptor *> (new QImage_Adaptor (arg1, qt_gsi::QtToCppAdaptor<QImage::Format>(arg2).cref()));
|
|
}
|
|
|
|
|
|
// Constructor QImage::QImage(int width, int height, QImage::Format format) (adaptor class)
|
|
|
|
static void _init_ctor_QImage_Adaptor_3051 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("width");
|
|
decl->add_arg<int > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("height");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("format");
|
|
decl->add_arg<const qt_gsi::Converter<QImage::Format>::target_type & > (argspec_2);
|
|
decl->set_return_new<QImage_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QImage_Adaptor_3051 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
int arg1 = args.read<int > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
const qt_gsi::Converter<QImage::Format>::target_type & arg3 = args.read<const qt_gsi::Converter<QImage::Format>::target_type & > (heap);
|
|
ret.write<QImage_Adaptor *> (new QImage_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor<QImage::Format>(arg3).cref()));
|
|
}
|
|
|
|
|
|
// Constructor QImage::QImage(const unsigned char *data, int width, int height, QImage::Format format) (adaptor class)
|
|
|
|
static void _init_ctor_QImage_Adaptor_5679 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("data");
|
|
decl->add_arg<const unsigned char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("width");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("height");
|
|
decl->add_arg<int > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("format");
|
|
decl->add_arg<const qt_gsi::Converter<QImage::Format>::target_type & > (argspec_3);
|
|
decl->set_return_new<QImage_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QImage_Adaptor_5679 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const unsigned char *arg1 = args.read<const unsigned char * > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
const qt_gsi::Converter<QImage::Format>::target_type & arg4 = args.read<const qt_gsi::Converter<QImage::Format>::target_type & > (heap);
|
|
ret.write<QImage_Adaptor *> (new QImage_Adaptor (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor<QImage::Format>(arg4).cref()));
|
|
}
|
|
|
|
|
|
// Constructor QImage::QImage(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format) (adaptor class)
|
|
|
|
static void _init_ctor_QImage_Adaptor_6338 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("data");
|
|
decl->add_arg<const unsigned char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("width");
|
|
decl->add_arg<int > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("height");
|
|
decl->add_arg<int > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("bytesPerLine");
|
|
decl->add_arg<int > (argspec_3);
|
|
static gsi::ArgSpecBase argspec_4 ("format");
|
|
decl->add_arg<const qt_gsi::Converter<QImage::Format>::target_type & > (argspec_4);
|
|
decl->set_return_new<QImage_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QImage_Adaptor_6338 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const unsigned char *arg1 = args.read<const unsigned char * > (heap);
|
|
int arg2 = args.read<int > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
int arg4 = args.read<int > (heap);
|
|
const qt_gsi::Converter<QImage::Format>::target_type & arg5 = args.read<const qt_gsi::Converter<QImage::Format>::target_type & > (heap);
|
|
ret.write<QImage_Adaptor *> (new QImage_Adaptor (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor<QImage::Format>(arg5).cref()));
|
|
}
|
|
|
|
|
|
// Constructor QImage::QImage(const QString &fileName, const char *format) (adaptor class)
|
|
|
|
static void _init_ctor_QImage_Adaptor_3648 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("fileName");
|
|
decl->add_arg<const QString & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("format", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return_new<QImage_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QImage_Adaptor_3648 (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);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QImage_Adaptor *> (new QImage_Adaptor (arg1, arg2));
|
|
}
|
|
|
|
|
|
// Constructor QImage::QImage(const QImage &) (adaptor class)
|
|
|
|
static void _init_ctor_QImage_Adaptor_1877 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("arg1");
|
|
decl->add_arg<const QImage & > (argspec_0);
|
|
decl->set_return_new<QImage_Adaptor> ();
|
|
}
|
|
|
|
static void _call_ctor_QImage_Adaptor_1877 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QImage &arg1 = args.read<const QImage & > (heap);
|
|
ret.write<QImage_Adaptor *> (new QImage_Adaptor (arg1));
|
|
}
|
|
|
|
|
|
// int QImage::metric(QPaintDevice::PaintDeviceMetric metric)
|
|
|
|
static void _init_cbs_metric_c3445_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("metric");
|
|
decl->add_arg<const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & > (argspec_0);
|
|
decl->set_return<int > ();
|
|
}
|
|
|
|
static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & arg1 = args.read<const qt_gsi::Converter<QPaintDevice::PaintDeviceMetric>::target_type & > (heap);
|
|
ret.write<int > ((int)((QImage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1));
|
|
}
|
|
|
|
static void _set_callback_cbs_metric_c3445_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QImage_Adaptor *)cls)->cb_metric_c3445_0 = cb;
|
|
}
|
|
|
|
|
|
// QPaintEngine *QImage::paintEngine()
|
|
|
|
static void _init_cbs_paintEngine_c0_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QPaintEngine * > ();
|
|
}
|
|
|
|
static void _call_cbs_paintEngine_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QPaintEngine * > ((QPaintEngine *)((QImage_Adaptor *)cls)->cbs_paintEngine_c0_0 ());
|
|
}
|
|
|
|
static void _set_callback_cbs_paintEngine_c0_0 (void *cls, const gsi::Callback &cb)
|
|
{
|
|
((QImage_Adaptor *)cls)->cb_paintEngine_c0_0 = cb;
|
|
}
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
gsi::Class<QImage> &qtdecl_QImage ();
|
|
|
|
static gsi::Methods methods_QImage_Adaptor () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage()\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_0, &_call_ctor_QImage_Adaptor_0);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const QSize &size, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_3430, &_call_ctor_QImage_Adaptor_3430);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(int width, int height, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_3051, &_call_ctor_QImage_Adaptor_3051);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const unsigned char *data, int width, int height, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_5679, &_call_ctor_QImage_Adaptor_5679);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const unsigned char *data, int width, int height, int bytesPerLine, QImage::Format format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_6338, &_call_ctor_QImage_Adaptor_6338);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const QString &fileName, const char *format)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_3648, &_call_ctor_QImage_Adaptor_3648);
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QImage::QImage(const QImage &)\nThis method creates an object of class QImage.", &_init_ctor_QImage_Adaptor_1877, &_call_ctor_QImage_Adaptor_1877);
|
|
methods += new qt_gsi::GenericMethod ("*metric", "@hide", true, &_init_cbs_metric_c3445_0, &_call_cbs_metric_c3445_0);
|
|
methods += new qt_gsi::GenericMethod ("*metric", "@brief Virtual method int QImage::metric(QPaintDevice::PaintDeviceMetric metric)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_metric_c3445_0, &_call_cbs_metric_c3445_0, &_set_callback_cbs_metric_c3445_0);
|
|
methods += new qt_gsi::GenericMethod ("paintEngine", "@hide", true, &_init_cbs_paintEngine_c0_0, &_call_cbs_paintEngine_c0_0);
|
|
methods += new qt_gsi::GenericMethod ("paintEngine", "@brief Virtual method QPaintEngine *QImage::paintEngine()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_paintEngine_c0_0, &_call_cbs_paintEngine_c0_0, &_set_callback_cbs_paintEngine_c0_0);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QImage_Adaptor> decl_QImage_Adaptor (qtdecl_QImage (), "QImage",
|
|
methods_QImage_Adaptor (),
|
|
"@qt\n@brief Binding of QImage");
|
|
|
|
}
|
|
|
|
|
|
// Implementation of the enum wrapper class for QImage::Format
|
|
namespace qt_gsi
|
|
{
|
|
|
|
static gsi::Enum<QImage::Format> decl_QImage_Format_Enum ("QImage_Format",
|
|
gsi::enum_const ("Format_Invalid", QImage::Format_Invalid, "@brief Enum constant QImage::Format_Invalid") +
|
|
gsi::enum_const ("Format_Mono", QImage::Format_Mono, "@brief Enum constant QImage::Format_Mono") +
|
|
gsi::enum_const ("Format_MonoLSB", QImage::Format_MonoLSB, "@brief Enum constant QImage::Format_MonoLSB") +
|
|
gsi::enum_const ("Format_Indexed8", QImage::Format_Indexed8, "@brief Enum constant QImage::Format_Indexed8") +
|
|
gsi::enum_const ("Format_RGB32", QImage::Format_RGB32, "@brief Enum constant QImage::Format_RGB32") +
|
|
gsi::enum_const ("Format_ARGB32", QImage::Format_ARGB32, "@brief Enum constant QImage::Format_ARGB32") +
|
|
gsi::enum_const ("Format_ARGB32_Premultiplied", QImage::Format_ARGB32_Premultiplied, "@brief Enum constant QImage::Format_ARGB32_Premultiplied") +
|
|
gsi::enum_const ("Format_RGB16", QImage::Format_RGB16, "@brief Enum constant QImage::Format_RGB16") +
|
|
gsi::enum_const ("Format_ARGB8565_Premultiplied", QImage::Format_ARGB8565_Premultiplied, "@brief Enum constant QImage::Format_ARGB8565_Premultiplied") +
|
|
gsi::enum_const ("Format_RGB666", QImage::Format_RGB666, "@brief Enum constant QImage::Format_RGB666") +
|
|
gsi::enum_const ("Format_ARGB6666_Premultiplied", QImage::Format_ARGB6666_Premultiplied, "@brief Enum constant QImage::Format_ARGB6666_Premultiplied") +
|
|
gsi::enum_const ("Format_RGB555", QImage::Format_RGB555, "@brief Enum constant QImage::Format_RGB555") +
|
|
gsi::enum_const ("Format_ARGB8555_Premultiplied", QImage::Format_ARGB8555_Premultiplied, "@brief Enum constant QImage::Format_ARGB8555_Premultiplied") +
|
|
gsi::enum_const ("Format_RGB888", QImage::Format_RGB888, "@brief Enum constant QImage::Format_RGB888") +
|
|
gsi::enum_const ("Format_RGB444", QImage::Format_RGB444, "@brief Enum constant QImage::Format_RGB444") +
|
|
gsi::enum_const ("Format_ARGB4444_Premultiplied", QImage::Format_ARGB4444_Premultiplied, "@brief Enum constant QImage::Format_ARGB4444_Premultiplied") +
|
|
gsi::enum_const ("NImageFormats", QImage::NImageFormats, "@brief Enum constant QImage::NImageFormats"),
|
|
"@qt\n@brief This class represents the QImage::Format enum");
|
|
|
|
static gsi::QFlagsClass<QImage::Format > decl_QImage_Format_Enums ("QImage_QFlags_Format",
|
|
"@qt\n@brief This class represents the QFlags<QImage::Format> flag set");
|
|
|
|
// Inject the declarations into the parent
|
|
static gsi::ClassExt<QImage> inject_QImage_Format_Enum_in_parent (decl_QImage_Format_Enum.defs ());
|
|
static gsi::ClassExt<QImage> decl_QImage_Format_Enum_as_child (decl_QImage_Format_Enum, "Format");
|
|
static gsi::ClassExt<QImage> decl_QImage_Format_Enums_as_child (decl_QImage_Format_Enums, "QFlags_Format");
|
|
|
|
}
|
|
|
|
|
|
// Implementation of the enum wrapper class for QImage::InvertMode
|
|
namespace qt_gsi
|
|
{
|
|
|
|
static gsi::Enum<QImage::InvertMode> decl_QImage_InvertMode_Enum ("QImage_InvertMode",
|
|
gsi::enum_const ("InvertRgb", QImage::InvertRgb, "@brief Enum constant QImage::InvertRgb") +
|
|
gsi::enum_const ("InvertRgba", QImage::InvertRgba, "@brief Enum constant QImage::InvertRgba"),
|
|
"@qt\n@brief This class represents the QImage::InvertMode enum");
|
|
|
|
static gsi::QFlagsClass<QImage::InvertMode > decl_QImage_InvertMode_Enums ("QImage_QFlags_InvertMode",
|
|
"@qt\n@brief This class represents the QFlags<QImage::InvertMode> flag set");
|
|
|
|
// Inject the declarations into the parent
|
|
static gsi::ClassExt<QImage> inject_QImage_InvertMode_Enum_in_parent (decl_QImage_InvertMode_Enum.defs ());
|
|
static gsi::ClassExt<QImage> decl_QImage_InvertMode_Enum_as_child (decl_QImage_InvertMode_Enum, "InvertMode");
|
|
static gsi::ClassExt<QImage> decl_QImage_InvertMode_Enums_as_child (decl_QImage_InvertMode_Enums, "QFlags_InvertMode");
|
|
|
|
}
|
|
|