------------------------------------------------------------------------------
| 755 | |
| 756 | //------------------------------------------------------------------------------ |
| 757 | int vtkWin32RenderWindowInteractor::OnRButtonUp(HWND, UINT nFlags, int X, int Y) |
| 758 | { |
| 759 | if (!this->Enabled) |
| 760 | { |
| 761 | return 0; |
| 762 | } |
| 763 | this->SetEventInformationFlipY(X, Y, nFlags & MK_CONTROL, nFlags & MK_SHIFT); |
| 764 | this->SetAltKey((GetKeyState(VK_MENU) & 0x8000) != 0); |
| 765 | const int ret = this->InvokeEvent(vtkCommand::RightButtonReleaseEvent, nullptr); |
| 766 | ReleaseCapture(); |
| 767 | return ret; |
| 768 | } |
| 769 | |
| 770 | //------------------------------------------------------------------------------ |
| 771 | int vtkWin32RenderWindowInteractor::OnSize(HWND, UINT, int X, int Y) |
no test coverage detected