##// 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_QGradient.h
30 lines | 1.1 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QGRADIENT_H
#define PYTHONQTWRAPPER_QGRADIENT_H
#include <qbrush.h>
#include <QObject>
#include <QVariant>
#include <qbrush.h>
#include <qcolor.h>
#include <qpair.h>
#include <qvector.h>
class PythonQtWrapper_QGradient : public QObject
{ Q_OBJECT
public:
public slots:
QGradient* new_QGradient();
void delete_QGradient(QGradient* obj) { delete obj; }
QGradient::CoordinateMode coordinateMode(QGradient* theWrappedObject) const;
bool operator_equal(QGradient* theWrappedObject, const QGradient& gradient) const;
void setColorAt(QGradient* theWrappedObject, qreal pos, const QColor& color);
void setCoordinateMode(QGradient* theWrappedObject, QGradient::CoordinateMode mode);
void setSpread(QGradient* theWrappedObject, QGradient::Spread spread);
void setStops(QGradient* theWrappedObject, const QVector<QPair<qreal , QColor > >& stops);
QGradient::Spread spread(QGradient* theWrappedObject) const;
QVector<QPair<qreal , QColor > > stops(QGradient* theWrappedObject) const;
QGradient::Type type(QGradient* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QGRADIENT_H