cef_render_handler_t.start_dragging

Called when the user starts dragging content in the web view. Contextual information about the dragged content is supplied by |drag_data|. (|x|, |y|) is the drag start location in screen coordinates. OS APIs that run a system message loop may be used within the StartDragging call.

Return false (0) to abort the drag operation. Don't call any of

More...
struct cef_render_handler_t
extern (System)
int function(cef_render_handler_t* self, cef_browser_t* browser, cef_drag_data_t* drag_data, cef_drag_operations_mask_t allowed_ops, int x, int y) nothrow start_dragging;

Detailed Description

cef browser host t

:DragSource*Ended* functions after returning false (0).

Return true (1) to handle the drag operation. Call

cef browser host t

:DragSourceEndedAt and DragSourceSystemDragEnded either synchronously or asynchronously to inform the web view that the drag operation has ended.

Meta