| 627 | } |
| 628 | |
| 629 | HRESULT Window::DragOver(Windows::DWORD grfKeyState, Windows::POINTL pt, Windows::DWORD* pdwEffect) |
| 630 | { |
| 631 | POINT p = { pt.x, pt.y }; |
| 632 | ::ScreenToClient((HWND)_handle, &p); |
| 633 | DragDropEffect effect = DragDropEffect::None; |
| 634 | OnDragOver(&GuiDragDropData, Float2(static_cast<float>(p.x), static_cast<float>(p.y)), effect); |
| 635 | *pdwEffect = dropEffect2OleEnum(effect); |
| 636 | return S_OK; |
| 637 | } |
| 638 | |
| 639 | HRESULT Window::DragLeave() |
| 640 | { |
nothing calls this directly
no test coverage detected