#ifndef PYTHONQTWRAPPER_QPICTUREIO_H #define PYTHONQTWRAPPER_QPICTUREIO_H #include #include #include #include #include #include #include class PythonQtWrapper_QPictureIO : public QObject { Q_OBJECT public: public slots: QPictureIO* new_QPictureIO(); QPictureIO* new_QPictureIO(QIODevice* ioDevice, const char* format); QPictureIO* new_QPictureIO(const QString& fileName, const char* format); void delete_QPictureIO(QPictureIO* obj) { delete obj; } QString description(QPictureIO* theWrappedObject) const; QString fileName(QPictureIO* theWrappedObject) const; const char* format(QPictureIO* theWrappedObject) const; float gamma(QPictureIO* theWrappedObject) const; QList static_QPictureIO_inputFormats(); QIODevice* ioDevice(QPictureIO* theWrappedObject) const; QList static_QPictureIO_outputFormats(); const char* parameters(QPictureIO* theWrappedObject) const; const QPicture& picture(QPictureIO* theWrappedObject) const; QByteArray static_QPictureIO_pictureFormat(QIODevice* arg__1); QByteArray static_QPictureIO_pictureFormat(const QString& fileName); int quality(QPictureIO* theWrappedObject) const; bool read(QPictureIO* theWrappedObject); void setDescription(QPictureIO* theWrappedObject, const QString& arg__1); void setFileName(QPictureIO* theWrappedObject, const QString& arg__1); void setFormat(QPictureIO* theWrappedObject, const char* arg__1); void setGamma(QPictureIO* theWrappedObject, float arg__1); void setIODevice(QPictureIO* theWrappedObject, QIODevice* arg__1); void setParameters(QPictureIO* theWrappedObject, const char* arg__1); void setPicture(QPictureIO* theWrappedObject, const QPicture& arg__1); void setQuality(QPictureIO* theWrappedObject, int arg__1); void setStatus(QPictureIO* theWrappedObject, int arg__1); int status(QPictureIO* theWrappedObject) const; bool write(QPictureIO* theWrappedObject); }; #endif // PYTHONQTWRAPPER_QPICTUREIO_H