#include "PythonQtWrapper_QCheckBox.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 QCheckBox* PythonQtWrapper_QCheckBox::new_QCheckBox(QWidget* parent) { return new QCheckBox(parent); } QCheckBox* PythonQtWrapper_QCheckBox::new_QCheckBox(const QString& text, QWidget* parent) { return new QCheckBox(text, parent); } Qt::CheckState PythonQtWrapper_QCheckBox::checkState(QCheckBox* theWrappedObject) const { return theWrappedObject->checkState(); } bool PythonQtWrapper_QCheckBox::isTristate(QCheckBox* theWrappedObject) const { return theWrappedObject->isTristate(); } void PythonQtWrapper_QCheckBox::setCheckState(QCheckBox* theWrappedObject, Qt::CheckState state) { theWrappedObject->setCheckState(state); } void PythonQtWrapper_QCheckBox::setTristate(QCheckBox* theWrappedObject, bool y) { theWrappedObject->setTristate(y); } QSize PythonQtWrapper_QCheckBox::sizeHint(QCheckBox* theWrappedObject) const { return theWrappedObject->sizeHint(); }