#ifndef PYTHONQTWRAPPER_QPROGRESSBAR_H #define PYTHONQTWRAPPER_QPROGRESSBAR_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class PythonQtWrapper_QProgressBar : public QObject { Q_OBJECT public: public slots: QProgressBar* new_QProgressBar(QWidget* parent = 0); void delete_QProgressBar(QProgressBar* obj) { delete obj; } Qt::Alignment alignment(QProgressBar* theWrappedObject) const; QString format(QProgressBar* theWrappedObject) const; bool invertedAppearance(QProgressBar* theWrappedObject); bool isTextVisible(QProgressBar* theWrappedObject) const; int maximum(QProgressBar* theWrappedObject) const; int minimum(QProgressBar* theWrappedObject) const; QSize minimumSizeHint(QProgressBar* theWrappedObject) const; Qt::Orientation orientation(QProgressBar* theWrappedObject) const; void setAlignment(QProgressBar* theWrappedObject, Qt::Alignment alignment); void setFormat(QProgressBar* theWrappedObject, const QString& format); void setInvertedAppearance(QProgressBar* theWrappedObject, bool invert); void setTextDirection(QProgressBar* theWrappedObject, QProgressBar::Direction textDirection); void setTextVisible(QProgressBar* theWrappedObject, bool visible); QSize sizeHint(QProgressBar* theWrappedObject) const; QString text(QProgressBar* theWrappedObject) const; QProgressBar::Direction textDirection(QProgressBar* theWrappedObject); int value(QProgressBar* theWrappedObject) const; }; #endif // PYTHONQTWRAPPER_QPROGRESSBAR_H