Interface CefDragHandler

  • All Known Implementing Classes:
    CefClient

    public interface CefDragHandler
    Implement this interface to handle events related to dragging. The methods of this class will be called on the UI thread.
    • Method Detail

      • onDragEnter

        boolean onDragEnter​(CefBrowser browser,
                            CefDragData dragData,
                            int mask)
        Called when an external drag event enters the browser window.
        Parameters:
        browser - The browser generating the event.
        dragData - Contains the drag event data. Instance only valid within the scope of this method.
        mask - Represents the type of drag operation. See DragOperationMask for possible values.
        Returns:
        False for default drag handling behavior or true to cancel the drag event.