#include "PythonQtWrapper_QDialog.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 QDialog* PythonQtWrapper_QDialog::new_QDialog(QWidget* parent, Qt::WindowFlags f) { return new QDialog(parent, f); } bool PythonQtWrapper_QDialog::isSizeGripEnabled(QDialog* theWrappedObject) const { return theWrappedObject->isSizeGripEnabled(); } QSize PythonQtWrapper_QDialog::minimumSizeHint(QDialog* theWrappedObject) const { return theWrappedObject->minimumSizeHint(); } int PythonQtWrapper_QDialog::result(QDialog* theWrappedObject) const { return theWrappedObject->result(); } void PythonQtWrapper_QDialog::setModal(QDialog* theWrappedObject, bool modal) { theWrappedObject->setModal(modal); } void PythonQtWrapper_QDialog::setResult(QDialog* theWrappedObject, int r) { theWrappedObject->setResult(r); } void PythonQtWrapper_QDialog::setSizeGripEnabled(QDialog* theWrappedObject, bool arg__1) { theWrappedObject->setSizeGripEnabled(arg__1); } void PythonQtWrapper_QDialog::setVisible(QDialog* theWrappedObject, bool visible) { theWrappedObject->setVisible(visible); } QSize PythonQtWrapper_QDialog::sizeHint(QDialog* theWrappedObject) const { return theWrappedObject->sizeHint(); }