/**************************************************************************** ** ** Copyright (C) 2022 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ******************************************************************************/ /* This file was originally created by qdbusxml2cpp version 0.8 Command line was: qdbusxml2cpp -p qxdgnotificationproxy ../../3rdparty/dbus-ifaces/org.freedesktop.Notifications.xml However it is maintained manually. It is also not part of the public API. This header file may change from version to version without notice, or even be removed. */ #ifndef QXDGNOTIFICATIONPROXY_P_H #define QXDGNOTIFICATIONPROXY_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE Q_DECLARE_LOGGING_CATEGORY(qLcTray) /* * Proxy class for interface org.freedesktop.Notifications */ class QXdgNotificationInterface: public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.freedesktop.Notifications"; } public: QXdgNotificationInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); ~QXdgNotificationInterface(); public Q_SLOTS: // METHODS inline QDBusPendingReply<> closeNotification(uint id) { return asyncCall(QStringLiteral("CloseNotification"), id); } inline QDBusPendingReply getCapabilities() { return asyncCall(QStringLiteral("GetCapabilities")); } inline QDBusPendingReply getServerInformation() { return asyncCall(QStringLiteral("GetServerInformation")); } inline QDBusReply getServerInformation(QString &vendor, QString &version, QString &specVersion) { QDBusMessage reply = call(QDBus::Block, QStringLiteral("GetServerInformation")); if (reply.type() == QDBusMessage::ReplyMessage && reply.arguments().count() == 4) { vendor = qdbus_cast(reply.arguments().at(1)); version = qdbus_cast(reply.arguments().at(2)); specVersion = qdbus_cast(reply.arguments().at(3)); } return reply; } // see https://developer.gnome.org/notification-spec/#basic-design inline QDBusPendingReply notify(const QString &appName, uint replacesId, const QString &appIcon, const QString &summary, const QString &body, const QStringList &actions, const QVariantMap &hints, int timeout) { qCDebug(qLcTray) << appName << replacesId << appIcon << summary << body << actions << hints << timeout; return asyncCall(QStringLiteral("Notify"), appName, replacesId, appIcon, summary, body, actions, hints, timeout); } Q_SIGNALS: void ActionInvoked(uint id, const QString &action_key); void NotificationClosed(uint id, uint reason); }; QT_END_NAMESPACE namespace org { namespace freedesktop { using Notifications = QT_PREPEND_NAMESPACE(QXdgNotificationInterface); } } #endif