#include "PythonQtWrapper_QDockWidget.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 QDockWidget* PythonQtWrapper_QDockWidget::new_QDockWidget(QWidget* parent, Qt::WindowFlags flags) { return new QDockWidget(parent, flags); } QDockWidget* PythonQtWrapper_QDockWidget::new_QDockWidget(const QString& title, QWidget* parent, Qt::WindowFlags flags) { return new QDockWidget(title, parent, flags); } Qt::DockWidgetAreas PythonQtWrapper_QDockWidget::allowedAreas(QDockWidget* theWrappedObject) const { return theWrappedObject->allowedAreas(); } QDockWidget::DockWidgetFeatures PythonQtWrapper_QDockWidget::features(QDockWidget* theWrappedObject) const { return theWrappedObject->features(); } bool PythonQtWrapper_QDockWidget::isAreaAllowed(QDockWidget* theWrappedObject, Qt::DockWidgetArea area) const { return theWrappedObject->isAreaAllowed(area); } bool PythonQtWrapper_QDockWidget::isFloating(QDockWidget* theWrappedObject) const { return theWrappedObject->isFloating(); } void PythonQtWrapper_QDockWidget::setAllowedAreas(QDockWidget* theWrappedObject, Qt::DockWidgetAreas areas) { theWrappedObject->setAllowedAreas(areas); } void PythonQtWrapper_QDockWidget::setFeatures(QDockWidget* theWrappedObject, QDockWidget::DockWidgetFeatures features) { theWrappedObject->setFeatures(features); } void PythonQtWrapper_QDockWidget::setFloating(QDockWidget* theWrappedObject, bool floating) { theWrappedObject->setFloating(floating); } void PythonQtWrapper_QDockWidget::setTitleBarWidget(QDockWidget* theWrappedObject, QWidget* widget) { theWrappedObject->setTitleBarWidget(widget); } void PythonQtWrapper_QDockWidget::setWidget(QDockWidget* theWrappedObject, QWidget* widget) { theWrappedObject->setWidget(widget); } QWidget* PythonQtWrapper_QDockWidget::titleBarWidget(QDockWidget* theWrappedObject) const { return theWrappedObject->titleBarWidget(); } QAction* PythonQtWrapper_QDockWidget::toggleViewAction(QDockWidget* theWrappedObject) const { return theWrappedObject->toggleViewAction(); } QWidget* PythonQtWrapper_QDockWidget::widget(QDockWidget* theWrappedObject) const { return theWrappedObject->widget(); }