ukui-notification/libukui-notification/notification-client.h

82 lines
2.7 KiB
C
Raw Normal View History

2023-07-31 18:01:44 +08:00
/*
* Copyright (C) 2023, KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* Authors: iaom <zhangpengfei@kylinos.cn>
*/
#ifndef UKUI_NOTIFICATION_NOTIFICATION_CLIENT_H
#define UKUI_NOTIFICATION_NOTIFICATION_CLIENT_H
#include "ukui-notification_global.h"
#include <QObject>
#include "popup-notification.h"
#include "notification-close-reason.h"
namespace UkuiNotification {
class NotificationClientPrivate;
/**
* @short .
* @author iaom
*/
2023-07-31 18:01:44 +08:00
class UKUINOTIFICATION_EXPORT NotificationClient : public QObject
{
Q_OBJECT
public:
explicit NotificationClient(QObject *parent = nullptr);
~NotificationClient();
/**
* @brief &
* @return
* @retval truefalse
*/
bool registerClient();
2023-07-31 18:01:44 +08:00
/**
* @brief
* @return
* @retval truefalse
2023-07-31 18:01:44 +08:00
*/
void unregisterClient();
/**
* @brief
* @param idid
* @param reason
* @return
* @retval truefalse
*/
2023-07-31 18:01:44 +08:00
bool closeNotification(uint id, NotificationCloseReason::CloseReason reason);
/**
* @brief
* @param id id
* @param action_key action的唯一标识
* @return
* @retval truefalse
*/
2023-07-31 18:01:44 +08:00
bool invokeAction(uint id, const QString &action_key);
Q_SIGNALS:
/**
* .
*/
2023-07-31 18:01:44 +08:00
void newNotification(const UkuiNotification::PopupNotification &notification);
/**
* .
*/
2023-07-31 18:01:44 +08:00
void notificationClosed(uint id, UkuiNotification::NotificationCloseReason::CloseReason closeReason);
private:
NotificationClientPrivate *d = nullptr;
};
} // UkuiNotification
#endif //UKUI_NOTIFICATION_NOTIFICATION_CLIENT_H