| 12 | #include "Widgets/vvSelectFramesDialog.h" |
| 13 | |
| 14 | class vvPythonQtDecorators : public QObject |
| 15 | { |
| 16 | Q_OBJECT |
| 17 | |
| 18 | public: |
| 19 | vvPythonQtDecorators(QObject* parent = 0) |
| 20 | : QObject(parent) |
| 21 | { |
| 22 | this->registerClassForPythonQt(&pqLidarViewManager::staticMetaObject); |
| 23 | this->registerClassForPythonQt(&vvCalibrationDialog::staticMetaObject); |
| 24 | this->registerClassForPythonQt(&vvCropReturnsDialog::staticMetaObject); |
| 25 | this->registerClassForPythonQt(&vvLaserSelectionDialog::staticMetaObject); |
| 26 | this->registerClassForPythonQt(&vvSelectFramesDialog::staticMetaObject); |
| 27 | } |
| 28 | |
| 29 | inline void registerClassForPythonQt(const QMetaObject* metaobject) |
| 30 | { |
| 31 | PythonQt::self()->registerClass(metaobject, "paraview"); |
| 32 | } |
| 33 | |
| 34 | public slots: |
| 35 | |
| 36 | vvCalibrationDialog* new_vvCalibrationDialog(QWidget* arg0) |
| 37 | { |
| 38 | return new vvCalibrationDialog(arg0); |
| 39 | } |
| 40 | |
| 41 | vvCropReturnsDialog* new_vvCropReturnsDialog(QWidget* arg0) |
| 42 | { |
| 43 | return new vvCropReturnsDialog(arg0); |
| 44 | } |
| 45 | |
| 46 | vvSelectFramesDialog* new_vvSelectFramesDialog(QWidget* arg0) |
| 47 | { |
| 48 | return new vvSelectFramesDialog(arg0); |
| 49 | } |
| 50 | |
| 51 | vvLaserSelectionDialog* new_vvLaserSelectionDialog(QWidget* arg0) |
| 52 | { |
| 53 | return new vvLaserSelectionDialog(arg0); |
| 54 | } |
| 55 | |
| 56 | QVector<int> getLaserSelectionSelector(vvLaserSelectionDialog* inst) |
| 57 | { |
| 58 | return inst->getLaserSelectionSelector(); |
| 59 | } |
| 60 | |
| 61 | void setLaserSelectionSelector(vvLaserSelectionDialog* inst, const QVector<int>& arg0) |
| 62 | { |
| 63 | inst->setLaserSelectionSelector(arg0); |
| 64 | } |
| 65 | |
| 66 | bool isDisplayMoreSelectionsChecked(vvLaserSelectionDialog* inst) |
| 67 | { |
| 68 | return inst->isDisplayMoreSelectionsChecked(); |
| 69 | } |
| 70 | |
| 71 | void setDisplayMoreSelectionsChecked(vvLaserSelectionDialog* inst, bool arg0) |
nothing calls this directly
no test coverage detected