##// 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_QBrush.h
51 lines | 2.0 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QBRUSH_H
#define PYTHONQTWRAPPER_QBRUSH_H
#include <qbrush.h>
#include <QObject>
#include <QPixmap>
#include <QVariant>
#include <qbrush.h>
#include <qcolor.h>
#include <qdatastream.h>
#include <qimage.h>
#include <qmatrix.h>
#include <qpixmap.h>
#include <qtransform.h>
class PythonQtWrapper_QBrush : public QObject
{ Q_OBJECT
public:
public slots:
QBrush* new_QBrush();
QBrush* new_QBrush(Qt::BrushStyle bs);
QBrush* new_QBrush(Qt::GlobalColor color, const QPixmap& pixmap);
QBrush* new_QBrush(const QBrush& brush);
QBrush* new_QBrush(const QColor& color, Qt::BrushStyle bs = Qt::SolidPattern);
QBrush* new_QBrush(const QColor& color, const QPixmap& pixmap);
QBrush* new_QBrush(const QGradient& gradient);
QBrush* new_QBrush(const QImage& image);
QBrush* new_QBrush(const QPixmap& pixmap);
void delete_QBrush(QBrush* obj) { delete obj; }
const QColor& color(QBrush* theWrappedObject) const;
const QGradient* gradient(QBrush* theWrappedObject) const;
bool isOpaque(QBrush* theWrappedObject) const;
const QMatrix& matrix(QBrush* theWrappedObject) const;
void writeTo(QBrush* theWrappedObject, QDataStream& arg__1);
bool operator_equal(QBrush* theWrappedObject, const QBrush& b) const;
void readFrom(QBrush* theWrappedObject, QDataStream& arg__1);
void setColor(QBrush* theWrappedObject, Qt::GlobalColor color);
void setColor(QBrush* theWrappedObject, const QColor& color);
void setMatrix(QBrush* theWrappedObject, const QMatrix& mat);
void setStyle(QBrush* theWrappedObject, Qt::BrushStyle arg__1);
void setTexture(QBrush* theWrappedObject, const QPixmap& pixmap);
void setTextureImage(QBrush* theWrappedObject, const QImage& image);
void setTransform(QBrush* theWrappedObject, const QTransform& arg__1);
Qt::BrushStyle style(QBrush* theWrappedObject) const;
QPixmap texture(QBrush* theWrappedObject) const;
QImage textureImage(QBrush* theWrappedObject) const;
QTransform transform(QBrush* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QBRUSH_H