##// 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_QImageWriter.h
48 lines | 2.2 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QIMAGEWRITER_H
#define PYTHONQTWRAPPER_QIMAGEWRITER_H
#include <qimagewriter.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QVariant>
#include <qbytearray.h>
#include <qimage.h>
#include <qimagewriter.h>
#include <qiodevice.h>
#include <qlist.h>
class PythonQtWrapper_QImageWriter : public QObject
{ Q_OBJECT
public:
Q_ENUMS(ImageWriterError )
enum ImageWriterError{
UnknownError = QImageWriter::UnknownError, DeviceError = QImageWriter::DeviceError, UnsupportedFormatError = QImageWriter::UnsupportedFormatError};
public slots:
QImageWriter* new_QImageWriter();
QImageWriter* new_QImageWriter(QIODevice* device, const QByteArray& format);
QImageWriter* new_QImageWriter(const QString& fileName, const QByteArray& format = QByteArray());
void delete_QImageWriter(QImageWriter* obj) { delete obj; }
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QIODevice* device(QImageWriter* theWrappedObject) const;
QList<QByteArray > static_QImageWriter_supportedImageFormats();
florianlink
upgraded wrappers to current generator version...
r28 QByteArray format(QImageWriter* theWrappedObject) const;
bool supportsOption(QImageWriter* theWrappedObject, QImageIOHandler::ImageOption option) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setFormat(QImageWriter* theWrappedObject, const QByteArray& format);
QImageWriter::ImageWriterError error(QImageWriter* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QString fileName(QImageWriter* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setDevice(QImageWriter* theWrappedObject, QIODevice* device);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setText(QImageWriter* theWrappedObject, const QString& key, const QString& text);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int quality(QImageWriter* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 float gamma(QImageWriter* theWrappedObject) const;
void setGamma(QImageWriter* theWrappedObject, float gamma);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int compression(QImageWriter* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 bool canWrite(QImageWriter* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QString errorString(QImageWriter* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 bool write(QImageWriter* theWrappedObject, const QImage& image);
void setQuality(QImageWriter* theWrappedObject, int quality);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setFileName(QImageWriter* theWrappedObject, const QString& fileName);
void setCompression(QImageWriter* theWrappedObject, int compression);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QIMAGEWRITER_H