[DragEnter]
| 29 | |
| 30 | //! [DragEnter] |
| 31 | HRESULT DropTarget::DragEnter( |
| 32 | IDataObject* dataObject, DWORD keyState, POINTL cursorPosition, DWORD* effect) |
| 33 | { |
| 34 | POINT point = {cursorPosition.x, cursorPosition.y}; |
| 35 | // Convert the screen point to client coordinates add the WebView's offset. |
| 36 | m_viewComponent->OffsetPointToWebView(&point); |
| 37 | return m_webViewCompositionController3->DragEnter(dataObject, keyState, point, effect); |
| 38 | } |
| 39 | //! [DragEnter] |
| 40 | |
| 41 | //! [DragOver] |
nothing calls this directly
no test coverage detected