##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QLinearGradient.cpp
51 lines | 1.5 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QLinearGradient.cpp
#include "PythonQtWrapper_QLinearGradient.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); }
QPointF PythonQtWrapper_QLinearGradient::finalStop(QLinearGradient* theWrappedObject) const
{
return theWrappedObject->finalStop();
}
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);
}
void PythonQtWrapper_QLinearGradient::setStart(QLinearGradient* theWrappedObject, const QPointF& start)
{
theWrappedObject->setStart(start);
}
void PythonQtWrapper_QLinearGradient::setStart(QLinearGradient* theWrappedObject, qreal x, qreal y)
{
theWrappedObject->setStart(x, y);
}
QPointF PythonQtWrapper_QLinearGradient::start(QLinearGradient* theWrappedObject) const
{
return theWrappedObject->start();
}