------------------------------------------------------------------------------
| 91 | |
| 92 | //------------------------------------------------------------------------------ |
| 93 | void vtkResliceImageViewerMeasurements ::ProcessEventsHandler( |
| 94 | vtkObject*, unsigned long, void* clientdata, void*) |
| 95 | { |
| 96 | vtkResliceImageViewerMeasurements* self = |
| 97 | reinterpret_cast<vtkResliceImageViewerMeasurements*>(clientdata); |
| 98 | |
| 99 | // if ProcessEvents is Off, we ignore all interaction events. |
| 100 | if (!self->GetProcessEvents()) |
| 101 | { |
| 102 | return; |
| 103 | } |
| 104 | |
| 105 | self->Update(); |
| 106 | } |
| 107 | |
| 108 | //------------------------------------------------------------------------------ |
| 109 | void vtkResliceImageViewerMeasurements::Update() |
nothing calls this directly
no test coverage detected