##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
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); }
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, qreal x, qreal y)
{
( theWrappedObject->setStart(x, y));
}
void PythonQtWrapper_QLinearGradient::setStart(QLinearGradient* theWrappedObject, const QPointF& start)
{
( theWrappedObject->setStart(start));
}
QPointF PythonQtWrapper_QLinearGradient::start(QLinearGradient* theWrappedObject) const
{
return ( theWrappedObject->start());
}