#include "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 QProgressBar* PythonQtWrapper_QProgressBar::new_QProgressBar(QWidget* parent) { return new QProgressBar(parent); } Qt::Alignment PythonQtWrapper_QProgressBar::alignment(QProgressBar* theWrappedObject) const { return theWrappedObject->alignment(); } QString PythonQtWrapper_QProgressBar::format(QProgressBar* theWrappedObject) const { return theWrappedObject->format(); } bool PythonQtWrapper_QProgressBar::invertedAppearance(QProgressBar* theWrappedObject) { return theWrappedObject->invertedAppearance(); } bool PythonQtWrapper_QProgressBar::isTextVisible(QProgressBar* theWrappedObject) const { return theWrappedObject->isTextVisible(); } int PythonQtWrapper_QProgressBar::maximum(QProgressBar* theWrappedObject) const { return theWrappedObject->maximum(); } int PythonQtWrapper_QProgressBar::minimum(QProgressBar* theWrappedObject) const { return theWrappedObject->minimum(); } QSize PythonQtWrapper_QProgressBar::minimumSizeHint(QProgressBar* theWrappedObject) const { return theWrappedObject->minimumSizeHint(); } Qt::Orientation PythonQtWrapper_QProgressBar::orientation(QProgressBar* theWrappedObject) const { return theWrappedObject->orientation(); } void PythonQtWrapper_QProgressBar::setAlignment(QProgressBar* theWrappedObject, Qt::Alignment alignment) { theWrappedObject->setAlignment(alignment); } void PythonQtWrapper_QProgressBar::setFormat(QProgressBar* theWrappedObject, const QString& format) { theWrappedObject->setFormat(format); } void PythonQtWrapper_QProgressBar::setInvertedAppearance(QProgressBar* theWrappedObject, bool invert) { theWrappedObject->setInvertedAppearance(invert); } void PythonQtWrapper_QProgressBar::setTextDirection(QProgressBar* theWrappedObject, QProgressBar::Direction textDirection) { theWrappedObject->setTextDirection(textDirection); } void PythonQtWrapper_QProgressBar::setTextVisible(QProgressBar* theWrappedObject, bool visible) { theWrappedObject->setTextVisible(visible); } QSize PythonQtWrapper_QProgressBar::sizeHint(QProgressBar* theWrappedObject) const { return theWrappedObject->sizeHint(); } QString PythonQtWrapper_QProgressBar::text(QProgressBar* theWrappedObject) const { return theWrappedObject->text(); } QProgressBar::Direction PythonQtWrapper_QProgressBar::textDirection(QProgressBar* theWrappedObject) { return theWrappedObject->textDirection(); } int PythonQtWrapper_QProgressBar::value(QProgressBar* theWrappedObject) const { return theWrappedObject->value(); }