##// 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_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
recreated wrappers to match current python qt version...
r73 void setFileName(QImageWriter* theWrappedObject, const QString& fileName);
void setCompression(QImageWriter* theWrappedObject, int compression);
int compression(QImageWriter* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QList<QByteArray > static_QImageWriter_supportedImageFormats();
florianlink
recreated wrappers to match current python qt version...
r73 QImageWriter::ImageWriterError error(QImageWriter* theWrappedObject) const;
QIODevice* device(QImageWriter* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QByteArray format(QImageWriter* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setDevice(QImageWriter* theWrappedObject, QIODevice* device);
florianlink
upgraded wrappers to current generator version...
r28 bool supportsOption(QImageWriter* theWrappedObject, QImageIOHandler::ImageOption option) const;
florianlink
recreated wrappers to match current python qt version...
r73 QString errorString(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 setFormat(QImageWriter* theWrappedObject, const QByteArray& format);
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 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
recreated wrappers to match current python qt version...
r73 void setText(QImageWriter* theWrappedObject, const QString& key, const QString& text);
florianlink
upgraded wrappers to current generator version...
r28 bool canWrite(QImageWriter* theWrappedObject) const;
bool write(QImageWriter* theWrappedObject, const QImage& image);
void setQuality(QImageWriter* theWrappedObject, int quality);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QIMAGEWRITER_H