ContextMenuRequest QML Type

A request for showing a context menu. More...

Import Statement: import QtWebEngine
Since: QtWebEngine 1.4

Properties

Detailed Description

A ContextMenuRequest is passed as an argument of the WebEngineView::contextMenuRequested signal. It provides further information about the context of the request. The position 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 context menu should be displayed.

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

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

Property Documentation

accepted : bool

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

If the property is false after any signal handlers for WebEngineView::contextMenuRequested have been executed, a default context menu will be shown. To prevent this, set request.accepted to true.

The default is false.

Note: The default content of the context menu depends on the web element for which the request was actually generated.


[read-only, since QtWebEngine 1.7] editFlags : flags

The available edit operations in the current context or CanDoNone if no actions are available.

ConstantDescription
ContextMenuRequest.CanUndoUndo is available.
ContextMenuRequest.CanRedoRedo is available.
ContextMenuRequest.CanCutCut is available.
ContextMenuRequest.CanCopyCopy is available.
ContextMenuRequest.CanPastePaste is available.
ContextMenuRequest.CanDeleteDelete is available.
ContextMenuRequest.CanSelectAllSelect All is available.
ContextMenuRequest.CanTranslateTranslate is available.
ContextMenuRequest.CanEditRichlyContext is richly editable.

This property was introduced in QtWebEngine 1.7.


[read-only] isContentEditable : bool

Indicates whether the selected web content is editable.


[read-only] linkText : string

The text of the link if the context menu was requested for a link.


[read-only] linkUrl : url

The URL of the link if the selected web page content is a link. It is not guaranteed to be a valid URL.


[read-only, since QtWebEngine 1.7] mediaFlags : flags

The current media element's status and its available operations. MediaNone if the selected web page content is not a media element.

ConstantDescription
ContextMenuRequest.MediaInErrorAn error occurred.
ContextMenuRequest.MediaPausedMedia is paused.
ContextMenuRequest.MediaMutedMedia is muted.
ContextMenuRequest.MediaLoopMedia can be looped.
ContextMenuRequest.MediaCanSaveMedia can be saved.
ContextMenuRequest.MediaHasAudioMedia has audio.
ContextMenuRequest.MediaCanToggleControlsMedia can show controls.
ContextMenuRequest.MediaControlsMedia controls are shown.
ContextMenuRequest.MediaCanPrintMedia is printable.
ContextMenuRequest.MediaCanRotateMedia is rotatable.

This property was introduced in QtWebEngine 1.7.


[read-only] mediaType : enumeration

The type of the media element or MediaTypeNone if the selected web page content is not a media element.

ConstantDescription
ContextMenuRequest.MediaTypeNoneNot a media.
ContextMenuRequest.MediaTypeImageAn image.
ContextMenuRequest.MediaTypeVideoA video.
ContextMenuRequest.MediaTypeAudioAn audio element.
ContextMenuRequest.MediaTypeCanvasA canvas.
ContextMenuRequest.MediaTypeFileA file.
ContextMenuRequest.MediaTypePluginA plugin.

[read-only] mediaUrl : url

The URL of media if the selected web content is a media element.


[read-only] misspelledWord : string

If the context is a word considered misspelled by the spell-checker, returns the misspelled word.


[read-only] position : point

The position of the user action from where the context menu request originates.


[read-only] selectedText : string

The selected text the context menu was created for.


[read-only] spellCheckerSuggestions : stringlist

If the context is a word considered misspelled by the spell-checker, returns a list of suggested replacements.


© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.