| 615 | } |
| 616 | |
| 617 | HRESULT Window::DragEnter(Windows::IDataObject* pDataObj, Windows::DWORD grfKeyState, Windows::POINTL pt, Windows::DWORD* pdwEffect) |
| 618 | { |
| 619 | POINT p = { pt.x, pt.y }; |
| 620 | ::ScreenToClient((HWND)_handle, &p); |
| 621 | GuiDragDropData.Init((IDataObject*)pDataObj); |
| 622 | DragDropEffect effect = DragDropEffect::None; |
| 623 | OnDragEnter(&GuiDragDropData, Float2(static_cast<float>(p.x), static_cast<float>(p.y)), effect); |
| 624 | Focus(); |
| 625 | *pdwEffect = dropEffect2OleEnum(effect); |
| 626 | return S_OK; |
| 627 | } |
| 628 | |
| 629 | HRESULT Window::DragOver(Windows::DWORD grfKeyState, Windows::POINTL pt, Windows::DWORD* pdwEffect) |
| 630 | { |
nothing calls this directly
no test coverage detected