IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

SystemTrayIcon QML Type

A system tray icon.

This type was introduced in Qt 5.8.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

SystemTrayIcon QML Type

  • Import Statement: import Qt.labs.platform

  • Since:: Qt 5.8

  • Inherits:: QtObject

Detailed Description

The SystemTrayIcon type provides an icon for an application in the system tray.

Many desktop platforms provide a special system tray or notification area, where applications can display icons and notification messages.

Image non disponible

The following example shows how to create a system tray icon, and how to make use of the activated() signal:

 
Sélectionnez
SystemTrayIcon {
    visible: true
    icon.source: "qrc:/images/tray-icon.png"

    onActivated: {
        window.show()
        window.raise()
        window.requestActivate()
    }
}

Tray menu

SystemTrayIcon can have a menu that opens when the icon is activated.

Image non disponible

The following example illustrates how to assign a Menu to a system tray icon:

 
Sélectionnez
SystemTrayIcon {
    visible: true
    icon.source: "qrc:/images/tray-icon.png"

    menu: Menu {
        MenuItem {
            text: qsTr("Quit")
            onTriggered: Qt.quit()
        }
    }
}

Notification messages

SystemTrayIcon can display notification messages.

Image non disponible

The following example presents how to show a notification message using showMessage(), and how to make use of the messageClicked() signal:

 
Sélectionnez
SystemTrayIcon {
    visible: true
    icon.source: "qrc:/images/tray-icon.png"

    onMessageClicked: console.log("Message clicked")
    Component.onCompleted: showMessage("Message title", "Something important came up. Click this to know more.")
}

Availability

A native system tray icon is currently available on the following platforms:

The Qt Labs Platform module uses Qt Widgets as a fallback on platforms that do not have a native implementation available. Therefore, applications that use types from the Qt Labs Platform module should link to QtWidgets and use QApplication instead of QGuiApplication.

To link against the QtWidgets library, add the following to your qmake project file:

 
Sélectionnez
QT += widgets

Create an instance of QApplication in main():

 
Sélectionnez
#include <QApplication>
#include <QQmlApplicationEngine>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
    return app.exec();
}

Types in Qt.labs modules are not guaranteed to remain compatible in future versions.

See Also

See also Menu

Property Documentation

 

[read-only] available : bool

This property holds whether the system tray is available.

[since Qt.labs.platform 1.1 (Qt 5.12)] geometry : rect

This property holds the geometry of the system tray icon.

This property was introduced in Qt.labs.platform 1.1 (Qt 5.12).

icon group

[since Qt.labs.platform 1.1 (Qt 5.12)] icon.mask : bool

[since Qt.labs.platform 1.1 (Qt 5.12)] icon.name : string

[since Qt.labs.platform 1.1 (Qt 5.12)] icon.source : url

This property holds the system tray icon.

 
Sélectionnez
SystemTrayIcon {
    icon.mask: true
    icon.source: "qrc:/images/tray-icon.png"
}

This QML property was introduced in Qt.labs.platform 1.1 (Qt 5.12).

menu : Menu

[read-only] supportsMessages : bool

This property holds whether the system tray icon supports notification messages.

See Also

See also showMessage()

tooltip : string

This property holds the tooltip of the system tray icon.

visible : bool

This property holds whether the system tray icon is visible.

The default value is false.

Signal Documentation

 

activated(ActivationReason reason)

This signal is emitted when the system tray icon is activated by the user. The reason argument specifies how the system tray icon was activated.

Available reasons:

Constant

Description

SystemTrayIcon.Unknown

Unknown reason

SystemTrayIcon.Context

The context menu for the system tray icon was requested

SystemTrayIcon.DoubleClick

The system tray icon was double clicked

SystemTrayIcon.Trigger

The system tray icon was clicked

SystemTrayIcon.MiddleClick

The system tray icon was clicked with the middle mouse button

The corresponding handler is onActivated.

messageClicked()

This signal is emitted when a notification message is clicked by the user.

The corresponding handler is onMessageClicked.

See Also

See also showMessage()

Method Documentation

 

void hide()

Hides the system tray icon.

void show()

Shows the system tray icon.

void showMessage(string title, string message, MessageIcon icon, int msecs)

Shows a system tray message with the given title, message and icon for the time specified in msecs.

System tray messages are dependent on the system configuration and user preferences, and may not appear at all. Therefore, it should not be relied upon as the sole means for providing critical information.

See Also

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+