TouchSelectionMenuRequest QML Type

A request for showing a touch selection menu. 更多...

import 語句: import QtWebEngine
Since: QtWebEngine 6.3

特性

詳細描述

A TouchSelectionMenuRequest is passed as an argument of the WebEngineView::touchSelectionMenuRequest signal. It provides further information about the context of the request. The selectionBounds property provides the origin of the request.

The accepted property of the request indicates whether the request is handled by the user code or the default touch selection menu should be displayed.

The following code uses a custom menu to handle the request:

WebEngineView {
    id: view
    // ...
    onTouchSelectionMenuRequested: function(request) {
        request.accepted = true;
        myMenu.x = request.selectionBounds.x;
        myMenu.y = request.selectionBounds.y;
        myMenu.trigger.connect(view.triggerWebAction);
        myMenu.popup();
    }
    // ...
}
					

特性文檔編製

accepted : bool

Indicates whether the touch selection menu request has been handled by the signal handler.

若特性為 false after any signal handlers for WebEngineView::touchSelectionMenuRequested have been executed, a default touch selection menu will be shown. To prevent this, set request.accepted to true .

默認為 false .

注意: The default content of the touch selection menu depends on the web element for which the request was actually generated.

selectionBounds : rect [read-only]

The position of the bound rectangle from the touch text selection.