#ifndef PYTHONQTWRAPPER_QCHECKBOX_H #define 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 #include #include class PythonQtWrapper_QCheckBox : public QObject { Q_OBJECT public: public slots: QCheckBox* new_QCheckBox(QWidget* parent = 0); QCheckBox* new_QCheckBox(const QString& text, QWidget* parent = 0); void delete_QCheckBox(QCheckBox* obj) { delete obj; } Qt::CheckState checkState(QCheckBox* theWrappedObject) const; bool isTristate(QCheckBox* theWrappedObject) const; void setCheckState(QCheckBox* theWrappedObject, Qt::CheckState state); void setTristate(QCheckBox* theWrappedObject, bool y = true); QSize sizeHint(QCheckBox* theWrappedObject) const; }; #endif // PYTHONQTWRAPPER_QCHECKBOX_H