ukui-notification/libukui-notification/notification-close-reason.h

59 lines
1.6 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_NOTIFICATIONCLOSEREASON_H
#define UKUI_NOTIFICATION_NOTIFICATIONCLOSEREASON_H
#include <QObject>
#include "ukui-notification_global.h"
namespace UkuiNotification {
/**
* @short .
* @author iaom
*/
2023-07-31 18:01:44 +08:00
class UKUINOTIFICATION_EXPORT NotificationCloseReason
{
Q_GADGET
public:
/**
* The reason a notification was closed
*/
2023-07-31 18:01:44 +08:00
enum CloseReason {
/**
* .
*/
Expired = 1,
/**
* .
*/
DismissedByUser = 2,
/**
* CloseNotification接口关闭
*/
Revoked = 3,
/**
* /
*/
Undefined = 4,
2023-07-31 18:01:44 +08:00
};
Q_ENUM(CloseReason)
};
}
#endif //UKUI_NOTIFICATION_NOTIFICATIONCLOSEREASON_H