------------------------------------------------------------------------------
| 830 | |
| 831 | //------------------------------------------------------------------------------ |
| 832 | int vtkWin32RenderWindowInteractor::OnChar(HWND, UINT nChar, UINT nRepCnt, UINT) |
| 833 | { |
| 834 | if (!this->Enabled) |
| 835 | { |
| 836 | return 0; |
| 837 | } |
| 838 | int ctrl, shift, alt; |
| 839 | ::RecoverModifiersStatus(ctrl, shift, alt); |
| 840 | this->SetKeyEventInformation(ctrl, shift, nChar, nRepCnt); |
| 841 | this->SetAltKey(alt); |
| 842 | return this->InvokeEvent(vtkCommand::CharEvent, nullptr); |
| 843 | } |
| 844 | |
| 845 | //------------------------------------------------------------------------------ |
| 846 | int vtkWin32RenderWindowInteractor::OnFocus(HWND, UINT) |
no test coverage detected