#include "PythonQtWrapper_QGroupBox.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 QGroupBox* PythonQtWrapper_QGroupBox::new_QGroupBox(QWidget* parent) { return new QGroupBox(parent); } QGroupBox* PythonQtWrapper_QGroupBox::new_QGroupBox(const QString& title, QWidget* parent) { return new QGroupBox(title, parent); } Qt::Alignment PythonQtWrapper_QGroupBox::alignment(QGroupBox* theWrappedObject) const { return theWrappedObject->alignment(); } bool PythonQtWrapper_QGroupBox::isCheckable(QGroupBox* theWrappedObject) const { return theWrappedObject->isCheckable(); } bool PythonQtWrapper_QGroupBox::isChecked(QGroupBox* theWrappedObject) const { return theWrappedObject->isChecked(); } bool PythonQtWrapper_QGroupBox::isFlat(QGroupBox* theWrappedObject) const { return theWrappedObject->isFlat(); } QSize PythonQtWrapper_QGroupBox::minimumSizeHint(QGroupBox* theWrappedObject) const { return theWrappedObject->minimumSizeHint(); } void PythonQtWrapper_QGroupBox::setAlignment(QGroupBox* theWrappedObject, int alignment) { theWrappedObject->setAlignment(alignment); } void PythonQtWrapper_QGroupBox::setCheckable(QGroupBox* theWrappedObject, bool checkable) { theWrappedObject->setCheckable(checkable); } void PythonQtWrapper_QGroupBox::setFlat(QGroupBox* theWrappedObject, bool flat) { theWrappedObject->setFlat(flat); } void PythonQtWrapper_QGroupBox::setTitle(QGroupBox* theWrappedObject, const QString& title) { theWrappedObject->setTitle(title); } QString PythonQtWrapper_QGroupBox::title(QGroupBox* theWrappedObject) const { return theWrappedObject->title(); }