OGS
VtkAddFilterDialog.h
Go to the documentation of this file.
1
15#pragma once
16
17// ** INCLUDES **
18#include "ui_VtkAddFilterDialogBase.h"
19
20class VtkVisPipeline;
21class QModelIndex;
22class QRadioButton;
23
28class VtkAddFilterDialog : public QDialog, public Ui_VtkAddFilterDialogBase
29{
30 Q_OBJECT
31
32public:
34 QModelIndex parentIndex,
35 QDialog* parent = nullptr);
36
37public slots:
39
40protected slots:
41 void on_filterListWidget_currentRowChanged(int currentRow);
42
43private:
45 QModelIndex _parentIndex;
46};
Dialog for selecting a filter to be applied to a VtkPipelineItem. The dialog lets you select filters ...
VtkAddFilterDialog(VtkVisPipeline &pipeline, QModelIndex parentIndex, QDialog *parent=nullptr)
VtkVisPipeline & _pipeline
void on_filterListWidget_currentRowChanged(int currentRow)
VtkVisPipeline manages the VTK visualization. It is a TreeModel and provides functions for adding and...