##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QLinearGradient.cpp
54 lines | 1.6 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QLinearGradient.cpp
#include "PythonQtWrapper_QLinearGradient.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qbrush.h>
#include <qcolor.h>
#include <qpair.h>
#include <qpoint.h>
#include <qvector.h>
QLinearGradient* PythonQtWrapper_QLinearGradient::new_QLinearGradient()
{
return new QLinearGradient(); }
QLinearGradient* PythonQtWrapper_QLinearGradient::new_QLinearGradient(const QPointF& start, const QPointF& finalStop)
{
return new QLinearGradient(start, finalStop); }
QLinearGradient* PythonQtWrapper_QLinearGradient::new_QLinearGradient(qreal xStart, qreal yStart, qreal xFinalStop, qreal yFinalStop)
{
return new QLinearGradient(xStart, yStart, xFinalStop, yFinalStop); }
void PythonQtWrapper_QLinearGradient::setStart(QLinearGradient* theWrappedObject, qreal x, qreal y)
{
theWrappedObject->setStart(x, y);
}
void PythonQtWrapper_QLinearGradient::setFinalStop(QLinearGradient* theWrappedObject, const QPointF& stop)
{
theWrappedObject->setFinalStop(stop);
}
void PythonQtWrapper_QLinearGradient::setFinalStop(QLinearGradient* theWrappedObject, qreal x, qreal y)
{
theWrappedObject->setFinalStop(x, y);
}
QPointF PythonQtWrapper_QLinearGradient::start(QLinearGradient* theWrappedObject) const
{
return theWrappedObject->start();
}
void PythonQtWrapper_QLinearGradient::setStart(QLinearGradient* theWrappedObject, const QPointF& start)
{
theWrappedObject->setStart(start);
}
QPointF PythonQtWrapper_QLinearGradient::finalStop(QLinearGradient* theWrappedObject) const
{
return theWrappedObject->finalStop();
}