| 37 | |
| 38 | //----------------------------------------------------------------------------- |
| 39 | class DepthMapViewPrivate |
| 40 | { |
| 41 | public: |
| 42 | DepthMapViewPrivate() : renderQueued(false) {} |
| 43 | void setPopup(QAction* action, QMenu* menu); |
| 44 | void setPopup(QAction* action, QWidget* widget); |
| 45 | |
| 46 | bool viewNeedsReset; |
| 47 | bool validDepthInput; |
| 48 | |
| 49 | Ui::DepthMapView UI; |
| 50 | |
| 51 | vtkNew<vtkRenderer> renderer; |
| 52 | vtkSmartPointer<vtkRenderWindow> renderWindow; |
| 53 | |
| 54 | vtkNew<vtkMaptkScalarDataFilter> scalarFilter; |
| 55 | vtkNew<vtkPolyDataMapper> mapper; |
| 56 | vtkNew<vtkActor> actor; |
| 57 | |
| 58 | DepthMapViewOptions* depthMapViewOptions; |
| 59 | |
| 60 | vtkSmartPointer<vtkMaptkImageDataGeometryFilter> inputDepthGeometryFilter; |
| 61 | |
| 62 | bool renderQueued; |
| 63 | }; |
| 64 | |
| 65 | //----------------------------------------------------------------------------- |
| 66 | void DepthMapViewPrivate::setPopup(QAction* action, QMenu* menu) |
nothing calls this directly
no outgoing calls
no test coverage detected