#include "PythonQtWrapper_QPushButton.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 QPushButton* PythonQtWrapper_QPushButton::new_QPushButton(QWidget* parent) { return new QPushButton(parent); } QPushButton* PythonQtWrapper_QPushButton::new_QPushButton(const QIcon& icon, const QString& text, QWidget* parent) { return new QPushButton(icon, text, parent); } QPushButton* PythonQtWrapper_QPushButton::new_QPushButton(const QString& text, QWidget* parent) { return new QPushButton(text, parent); } bool PythonQtWrapper_QPushButton::autoDefault(QPushButton* theWrappedObject) const { return theWrappedObject->autoDefault(); } bool PythonQtWrapper_QPushButton::isDefault(QPushButton* theWrappedObject) const { return theWrappedObject->isDefault(); } bool PythonQtWrapper_QPushButton::isFlat(QPushButton* theWrappedObject) const { return theWrappedObject->isFlat(); } QMenu* PythonQtWrapper_QPushButton::menu(QPushButton* theWrappedObject) const { return theWrappedObject->menu(); } QSize PythonQtWrapper_QPushButton::minimumSizeHint(QPushButton* theWrappedObject) const { return theWrappedObject->minimumSizeHint(); } void PythonQtWrapper_QPushButton::setAutoDefault(QPushButton* theWrappedObject, bool arg__1) { theWrappedObject->setAutoDefault(arg__1); } void PythonQtWrapper_QPushButton::setDefault(QPushButton* theWrappedObject, bool arg__1) { theWrappedObject->setDefault(arg__1); } void PythonQtWrapper_QPushButton::setFlat(QPushButton* theWrappedObject, bool arg__1) { theWrappedObject->setFlat(arg__1); } void PythonQtWrapper_QPushButton::setMenu(QPushButton* theWrappedObject, QMenu* menu) { theWrappedObject->setMenu(menu); } QSize PythonQtWrapper_QPushButton::sizeHint(QPushButton* theWrappedObject) const { return theWrappedObject->sizeHint(); }