------------------------------------------------------------------------------
| 96 | |
| 97 | //------------------------------------------------------------------------------ |
| 98 | void vtkInteractorStyleUser::OnKeyRelease() |
| 99 | { |
| 100 | if (this->HasObserver(vtkCommand::KeyReleaseEvent)) |
| 101 | { |
| 102 | this->ShiftKey = this->Interactor->GetShiftKey(); |
| 103 | this->CtrlKey = this->Interactor->GetControlKey(); |
| 104 | this->KeySym = this->Interactor->GetKeySym(); |
| 105 | this->Char = this->Interactor->GetKeyCode(); |
| 106 | |
| 107 | this->InvokeEvent(vtkCommand::KeyReleaseEvent, nullptr); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | //------------------------------------------------------------------------------ |
| 112 | void vtkInteractorStyleUser::OnChar() |
no test coverage detected