#include "PythonQtWrapper_QStatusBar.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 QStatusBar* PythonQtWrapper_QStatusBar::new_QStatusBar(QWidget* parent) { return new QStatusBar(parent); } void PythonQtWrapper_QStatusBar::addPermanentWidget(QStatusBar* theWrappedObject, QWidget* widget, int stretch) { theWrappedObject->addPermanentWidget(widget, stretch); } void PythonQtWrapper_QStatusBar::addWidget(QStatusBar* theWrappedObject, QWidget* widget, int stretch) { theWrappedObject->addWidget(widget, stretch); } QString PythonQtWrapper_QStatusBar::currentMessage(QStatusBar* theWrappedObject) const { return theWrappedObject->currentMessage(); } int PythonQtWrapper_QStatusBar::insertPermanentWidget(QStatusBar* theWrappedObject, int index, QWidget* widget, int stretch) { return theWrappedObject->insertPermanentWidget(index, widget, stretch); } int PythonQtWrapper_QStatusBar::insertWidget(QStatusBar* theWrappedObject, int index, QWidget* widget, int stretch) { return theWrappedObject->insertWidget(index, widget, stretch); } bool PythonQtWrapper_QStatusBar::isSizeGripEnabled(QStatusBar* theWrappedObject) const { return theWrappedObject->isSizeGripEnabled(); } void PythonQtWrapper_QStatusBar::removeWidget(QStatusBar* theWrappedObject, QWidget* widget) { theWrappedObject->removeWidget(widget); } void PythonQtWrapper_QStatusBar::setSizeGripEnabled(QStatusBar* theWrappedObject, bool arg__1) { theWrappedObject->setSizeGripEnabled(arg__1); }