mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
528 lines
17 KiB
C++
528 lines
17 KiB
C++
#include <QBrush>
|
|
#include <QBrushData>
|
|
#include <QColor>
|
|
#include <QConicalGradient>
|
|
#include <QGradient>
|
|
#define WORKAROUND_INNER_CLASS_DEFINITION_QGradient__QGradientData
|
|
#include <QImage>
|
|
#include <QLinearGradient>
|
|
#include <QList>
|
|
#include <QMatrix>
|
|
#include <QPair>
|
|
#include <QPixmap>
|
|
#include <QPointF>
|
|
#include <QRadialGradient>
|
|
#include <QTransform>
|
|
#include <qbrush.h>
|
|
#include "gen_qbrush.h"
|
|
#include "_cgo_export.h"
|
|
|
|
void QBrush_new(QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush();
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new2(int bs, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(static_cast<Qt::BrushStyle>(bs));
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new3(QColor* color, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(*color);
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new4(int color, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(static_cast<Qt::GlobalColor>(color));
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new5(QColor* color, QPixmap* pixmap, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(*color, *pixmap);
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new6(int color, QPixmap* pixmap, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(static_cast<Qt::GlobalColor>(color), *pixmap);
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new7(QPixmap* pixmap, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(*pixmap);
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new8(QImage* image, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(*image);
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new9(QBrush* brush, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(*brush);
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new10(QGradient* gradient, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(*gradient);
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new11(QColor* color, int bs, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(*color, static_cast<Qt::BrushStyle>(bs));
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_new12(int color, int bs, QBrush** outptr_QBrush) {
|
|
QBrush* ret = new QBrush(static_cast<Qt::GlobalColor>(color), static_cast<Qt::BrushStyle>(bs));
|
|
*outptr_QBrush = ret;
|
|
}
|
|
|
|
void QBrush_OperatorAssign(QBrush* self, QBrush* brush) {
|
|
self->operator=(*brush);
|
|
}
|
|
|
|
void QBrush_Swap(QBrush* self, QBrush* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
int QBrush_Style(const QBrush* self) {
|
|
Qt::BrushStyle _ret = self->style();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QBrush_SetStyle(QBrush* self, int style) {
|
|
self->setStyle(static_cast<Qt::BrushStyle>(style));
|
|
}
|
|
|
|
QMatrix* QBrush_Matrix(const QBrush* self) {
|
|
const QMatrix& _ret = self->matrix();
|
|
// Cast returned reference into pointer
|
|
return const_cast<QMatrix*>(&_ret);
|
|
}
|
|
|
|
void QBrush_SetMatrix(QBrush* self, QMatrix* mat) {
|
|
self->setMatrix(*mat);
|
|
}
|
|
|
|
QTransform* QBrush_Transform(const QBrush* self) {
|
|
return new QTransform(self->transform());
|
|
}
|
|
|
|
void QBrush_SetTransform(QBrush* self, QTransform* transform) {
|
|
self->setTransform(*transform);
|
|
}
|
|
|
|
QPixmap* QBrush_Texture(const QBrush* self) {
|
|
return new QPixmap(self->texture());
|
|
}
|
|
|
|
void QBrush_SetTexture(QBrush* self, QPixmap* pixmap) {
|
|
self->setTexture(*pixmap);
|
|
}
|
|
|
|
QImage* QBrush_TextureImage(const QBrush* self) {
|
|
return new QImage(self->textureImage());
|
|
}
|
|
|
|
void QBrush_SetTextureImage(QBrush* self, QImage* image) {
|
|
self->setTextureImage(*image);
|
|
}
|
|
|
|
QColor* QBrush_Color(const QBrush* self) {
|
|
const QColor& _ret = self->color();
|
|
// Cast returned reference into pointer
|
|
return const_cast<QColor*>(&_ret);
|
|
}
|
|
|
|
void QBrush_SetColor(QBrush* self, QColor* color) {
|
|
self->setColor(*color);
|
|
}
|
|
|
|
void QBrush_SetColorWithColor(QBrush* self, int color) {
|
|
self->setColor(static_cast<Qt::GlobalColor>(color));
|
|
}
|
|
|
|
QGradient* QBrush_Gradient(const QBrush* self) {
|
|
return (QGradient*) self->gradient();
|
|
}
|
|
|
|
bool QBrush_IsOpaque(const QBrush* self) {
|
|
return self->isOpaque();
|
|
}
|
|
|
|
bool QBrush_OperatorEqual(const QBrush* self, QBrush* b) {
|
|
return (*self == *b);
|
|
}
|
|
|
|
bool QBrush_OperatorNotEqual(const QBrush* self, QBrush* b) {
|
|
return (*self != *b);
|
|
}
|
|
|
|
bool QBrush_IsDetached(const QBrush* self) {
|
|
return self->isDetached();
|
|
}
|
|
|
|
void QBrush_Delete(QBrush* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QBrush*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QBrushData_new(QBrushData* param1, QBrushData** outptr_QBrushData) {
|
|
QBrushData* ret = new QBrushData(*param1);
|
|
*outptr_QBrushData = ret;
|
|
}
|
|
|
|
void QBrushData_OperatorAssign(QBrushData* self, QBrushData* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QBrushData_Delete(QBrushData* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QBrushData*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QGradient_new(QGradient** outptr_QGradient) {
|
|
QGradient* ret = new QGradient();
|
|
*outptr_QGradient = ret;
|
|
}
|
|
|
|
void QGradient_new2(int param1, QGradient** outptr_QGradient) {
|
|
QGradient* ret = new QGradient(static_cast<QGradient::Preset>(param1));
|
|
*outptr_QGradient = ret;
|
|
}
|
|
|
|
void QGradient_new3(QGradient* param1, QGradient** outptr_QGradient) {
|
|
QGradient* ret = new QGradient(*param1);
|
|
*outptr_QGradient = ret;
|
|
}
|
|
|
|
int QGradient_Type(const QGradient* self) {
|
|
QGradient::Type _ret = self->type();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QGradient_SetSpread(QGradient* self, int spread) {
|
|
self->setSpread(static_cast<QGradient::Spread>(spread));
|
|
}
|
|
|
|
int QGradient_Spread(const QGradient* self) {
|
|
QGradient::Spread _ret = self->spread();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QGradient_SetColorAt(QGradient* self, double pos, QColor* color) {
|
|
self->setColorAt(static_cast<qreal>(pos), *color);
|
|
}
|
|
|
|
void QGradient_SetStops(QGradient* self, struct miqt_array /* of struct miqt_map tuple of double and QColor* */ stops) {
|
|
QGradientStops stops_QList;
|
|
stops_QList.reserve(stops.len);
|
|
struct miqt_map /* tuple of double and QColor* */ * stops_arr = static_cast<struct miqt_map /* tuple of double and QColor* */ *>(stops.data);
|
|
for(size_t i = 0; i < stops.len; ++i) {
|
|
QPair<double, QColor> stops_arr_i_QPair;
|
|
double* stops_arr_i_first_arr = static_cast<double*>(stops_arr[i].keys);
|
|
QColor** stops_arr_i_second_arr = static_cast<QColor**>(stops_arr[i].values);
|
|
stops_arr_i_QPair.first = static_cast<double>(stops_arr_i_first_arr[0]);
|
|
stops_arr_i_QPair.second = *(stops_arr_i_second_arr[0]);
|
|
stops_QList.push_back(stops_arr_i_QPair);
|
|
}
|
|
self->setStops(stops_QList);
|
|
}
|
|
|
|
struct miqt_array /* of struct miqt_map tuple of double and QColor* */ QGradient_Stops(const QGradient* self) {
|
|
QGradientStops _ret = self->stops();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
struct miqt_map /* tuple of double and QColor* */ * _arr = static_cast<struct miqt_map /* tuple of double and QColor* */ *>(malloc(sizeof(struct miqt_map /* tuple of double and QColor* */ ) * _ret.length()));
|
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
|
QPair<double, QColor> _vv_ret = _ret[i];
|
|
// Convert QPair<> from C++ memory to manually-managed C memory
|
|
double* _vv_first_arr = static_cast<double*>(malloc(sizeof(double)));
|
|
QColor** _vv_second_arr = static_cast<QColor**>(malloc(sizeof(QColor*)));
|
|
_vv_first_arr[0] = _vv_ret.first;
|
|
_vv_second_arr[0] = new QColor(_vv_ret.second);
|
|
struct miqt_map _vv_out;
|
|
_vv_out.len = 1;
|
|
_vv_out.keys = static_cast<void*>(_vv_first_arr);
|
|
_vv_out.values = static_cast<void*>(_vv_second_arr);
|
|
_arr[i] = _vv_out;
|
|
}
|
|
struct miqt_array _out;
|
|
_out.len = _ret.length();
|
|
_out.data = static_cast<void*>(_arr);
|
|
return _out;
|
|
}
|
|
|
|
int QGradient_CoordinateMode(const QGradient* self) {
|
|
QGradient::CoordinateMode _ret = self->coordinateMode();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QGradient_SetCoordinateMode(QGradient* self, int mode) {
|
|
self->setCoordinateMode(static_cast<QGradient::CoordinateMode>(mode));
|
|
}
|
|
|
|
int QGradient_InterpolationMode(const QGradient* self) {
|
|
QGradient::InterpolationMode _ret = self->interpolationMode();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QGradient_SetInterpolationMode(QGradient* self, int mode) {
|
|
self->setInterpolationMode(static_cast<QGradient::InterpolationMode>(mode));
|
|
}
|
|
|
|
bool QGradient_OperatorEqual(const QGradient* self, QGradient* gradient) {
|
|
return (*self == *gradient);
|
|
}
|
|
|
|
bool QGradient_OperatorNotEqual(const QGradient* self, QGradient* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
void QGradient_Delete(QGradient* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QGradient*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QLinearGradient_new(QLinearGradient** outptr_QLinearGradient, QGradient** outptr_QGradient) {
|
|
QLinearGradient* ret = new QLinearGradient();
|
|
*outptr_QLinearGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QLinearGradient_new2(QPointF* start, QPointF* finalStop, QLinearGradient** outptr_QLinearGradient, QGradient** outptr_QGradient) {
|
|
QLinearGradient* ret = new QLinearGradient(*start, *finalStop);
|
|
*outptr_QLinearGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QLinearGradient_new3(double xStart, double yStart, double xFinalStop, double yFinalStop, QLinearGradient** outptr_QLinearGradient, QGradient** outptr_QGradient) {
|
|
QLinearGradient* ret = new QLinearGradient(static_cast<qreal>(xStart), static_cast<qreal>(yStart), static_cast<qreal>(xFinalStop), static_cast<qreal>(yFinalStop));
|
|
*outptr_QLinearGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QLinearGradient_new4(QLinearGradient* param1, QLinearGradient** outptr_QLinearGradient, QGradient** outptr_QGradient) {
|
|
QLinearGradient* ret = new QLinearGradient(*param1);
|
|
*outptr_QLinearGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
QPointF* QLinearGradient_Start(const QLinearGradient* self) {
|
|
return new QPointF(self->start());
|
|
}
|
|
|
|
void QLinearGradient_SetStart(QLinearGradient* self, QPointF* start) {
|
|
self->setStart(*start);
|
|
}
|
|
|
|
void QLinearGradient_SetStart2(QLinearGradient* self, double x, double y) {
|
|
self->setStart(static_cast<qreal>(x), static_cast<qreal>(y));
|
|
}
|
|
|
|
QPointF* QLinearGradient_FinalStop(const QLinearGradient* self) {
|
|
return new QPointF(self->finalStop());
|
|
}
|
|
|
|
void QLinearGradient_SetFinalStop(QLinearGradient* self, QPointF* stop) {
|
|
self->setFinalStop(*stop);
|
|
}
|
|
|
|
void QLinearGradient_SetFinalStop2(QLinearGradient* self, double x, double y) {
|
|
self->setFinalStop(static_cast<qreal>(x), static_cast<qreal>(y));
|
|
}
|
|
|
|
void QLinearGradient_Delete(QLinearGradient* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QLinearGradient*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QRadialGradient_new(QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient();
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QRadialGradient_new2(QPointF* center, double radius, QPointF* focalPoint, QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient(*center, static_cast<qreal>(radius), *focalPoint);
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QRadialGradient_new3(double cx, double cy, double radius, double fx, double fy, QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient(static_cast<qreal>(cx), static_cast<qreal>(cy), static_cast<qreal>(radius), static_cast<qreal>(fx), static_cast<qreal>(fy));
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QRadialGradient_new4(QPointF* center, double radius, QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient(*center, static_cast<qreal>(radius));
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QRadialGradient_new5(double cx, double cy, double radius, QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient(static_cast<qreal>(cx), static_cast<qreal>(cy), static_cast<qreal>(radius));
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QRadialGradient_new6(QPointF* center, double centerRadius, QPointF* focalPoint, double focalRadius, QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient(*center, static_cast<qreal>(centerRadius), *focalPoint, static_cast<qreal>(focalRadius));
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QRadialGradient_new7(double cx, double cy, double centerRadius, double fx, double fy, double focalRadius, QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient(static_cast<qreal>(cx), static_cast<qreal>(cy), static_cast<qreal>(centerRadius), static_cast<qreal>(fx), static_cast<qreal>(fy), static_cast<qreal>(focalRadius));
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QRadialGradient_new8(QRadialGradient* param1, QRadialGradient** outptr_QRadialGradient, QGradient** outptr_QGradient) {
|
|
QRadialGradient* ret = new QRadialGradient(*param1);
|
|
*outptr_QRadialGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
QPointF* QRadialGradient_Center(const QRadialGradient* self) {
|
|
return new QPointF(self->center());
|
|
}
|
|
|
|
void QRadialGradient_SetCenter(QRadialGradient* self, QPointF* center) {
|
|
self->setCenter(*center);
|
|
}
|
|
|
|
void QRadialGradient_SetCenter2(QRadialGradient* self, double x, double y) {
|
|
self->setCenter(static_cast<qreal>(x), static_cast<qreal>(y));
|
|
}
|
|
|
|
QPointF* QRadialGradient_FocalPoint(const QRadialGradient* self) {
|
|
return new QPointF(self->focalPoint());
|
|
}
|
|
|
|
void QRadialGradient_SetFocalPoint(QRadialGradient* self, QPointF* focalPoint) {
|
|
self->setFocalPoint(*focalPoint);
|
|
}
|
|
|
|
void QRadialGradient_SetFocalPoint2(QRadialGradient* self, double x, double y) {
|
|
self->setFocalPoint(static_cast<qreal>(x), static_cast<qreal>(y));
|
|
}
|
|
|
|
double QRadialGradient_Radius(const QRadialGradient* self) {
|
|
qreal _ret = self->radius();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QRadialGradient_SetRadius(QRadialGradient* self, double radius) {
|
|
self->setRadius(static_cast<qreal>(radius));
|
|
}
|
|
|
|
double QRadialGradient_CenterRadius(const QRadialGradient* self) {
|
|
qreal _ret = self->centerRadius();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QRadialGradient_SetCenterRadius(QRadialGradient* self, double radius) {
|
|
self->setCenterRadius(static_cast<qreal>(radius));
|
|
}
|
|
|
|
double QRadialGradient_FocalRadius(const QRadialGradient* self) {
|
|
qreal _ret = self->focalRadius();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QRadialGradient_SetFocalRadius(QRadialGradient* self, double radius) {
|
|
self->setFocalRadius(static_cast<qreal>(radius));
|
|
}
|
|
|
|
void QRadialGradient_Delete(QRadialGradient* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QRadialGradient*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QConicalGradient_new(QConicalGradient** outptr_QConicalGradient, QGradient** outptr_QGradient) {
|
|
QConicalGradient* ret = new QConicalGradient();
|
|
*outptr_QConicalGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QConicalGradient_new2(QPointF* center, double startAngle, QConicalGradient** outptr_QConicalGradient, QGradient** outptr_QGradient) {
|
|
QConicalGradient* ret = new QConicalGradient(*center, static_cast<qreal>(startAngle));
|
|
*outptr_QConicalGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QConicalGradient_new3(double cx, double cy, double startAngle, QConicalGradient** outptr_QConicalGradient, QGradient** outptr_QGradient) {
|
|
QConicalGradient* ret = new QConicalGradient(static_cast<qreal>(cx), static_cast<qreal>(cy), static_cast<qreal>(startAngle));
|
|
*outptr_QConicalGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
void QConicalGradient_new4(QConicalGradient* param1, QConicalGradient** outptr_QConicalGradient, QGradient** outptr_QGradient) {
|
|
QConicalGradient* ret = new QConicalGradient(*param1);
|
|
*outptr_QConicalGradient = ret;
|
|
*outptr_QGradient = static_cast<QGradient*>(ret);
|
|
}
|
|
|
|
QPointF* QConicalGradient_Center(const QConicalGradient* self) {
|
|
return new QPointF(self->center());
|
|
}
|
|
|
|
void QConicalGradient_SetCenter(QConicalGradient* self, QPointF* center) {
|
|
self->setCenter(*center);
|
|
}
|
|
|
|
void QConicalGradient_SetCenter2(QConicalGradient* self, double x, double y) {
|
|
self->setCenter(static_cast<qreal>(x), static_cast<qreal>(y));
|
|
}
|
|
|
|
double QConicalGradient_Angle(const QConicalGradient* self) {
|
|
qreal _ret = self->angle();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QConicalGradient_SetAngle(QConicalGradient* self, double angle) {
|
|
self->setAngle(static_cast<qreal>(angle));
|
|
}
|
|
|
|
void QConicalGradient_Delete(QConicalGradient* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QConicalGradient*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QGradient__QGradientData_new(QGradient__QGradientData* param1, QGradient__QGradientData** outptr_QGradient__QGradientData) {
|
|
QGradient::QGradientData* ret = new QGradient::QGradientData(*param1);
|
|
*outptr_QGradient__QGradientData = ret;
|
|
}
|
|
|
|
void QGradient__QGradientData_OperatorAssign(QGradient__QGradientData* self, QGradient__QGradientData* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QGradient__QGradientData_Delete(QGradient__QGradientData* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QGradient::QGradientData*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|