WebEngineNotification QML Type

Encapsulates the data of an HTML5 web notification. More...

Import Statement: import QtWebEngine
Since: QtWebEngine 1.9
Instantiates: QWebEngineNotification

Properties

Signals

Methods

Detailed Description

This type contains the information and API for HTML5 desktop and push notifications.

Web engine notifications are passed to the user in the WebEngineProfile::presentNotification() signal.

For more information about how to handle web notification, see the Notification Example.

Property Documentation

[read-only] direction : enumeration

The text direction for the notification's title and body.

ConstantDescription
Qt.LeftToRightItems are laid out from left to right.
Qt.RightToLeftItems are laid out from right to left.
Qt.LayoutDirectionAutoThe direction to lay out items is determined automatically.

[read-only] language : string

The primary language for the notification's title and body.

Its value is a valid BCP 47 language tag, or the empty string.


[read-only] message : string

The body of the notification message.


[read-only] origin : url

The URL of the page sending the notification.


[read-only] tag : string

The tag of the notification message.

New notifications that have the same tag and origin URL as an existing one should replace or update the old notification with the same tag.


[read-only] title : string

The title of the notification.


Signal Documentation

closed()

This signal is emitted when the web page calls close steps for the notification, and it no longer needs to be shown.

Note: The corresponding handler is onClosed.


Method Documentation

void click()

Creates and dispatches a JavaScript click event on notification.

Should be called by the notification platform when the notification is activated by the user.


void close()

Creates and dispatches a JavaScript close event on notification.

Should be called by the notification platform when the notification is closed, either by the underlying platform or by the user.


void show()

Creates and dispatches a JavaScript show event on notification.

Should be called by the notification platform when the notification has been shown to user.


© 2022 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.