You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.0 KiB
112 lines
3.0 KiB
/* |
|
* Copyright 2018-2019 Kai Uwe Broulik <kde@privat.broulik.de> |
|
* |
|
* This library is free software; you can redistribute it and/or |
|
* modify it under the terms of the GNU Lesser General Public |
|
* License as published by the Free Software Foundation; either |
|
* version 2.1 of the License, or (at your option) version 3, or any |
|
* later version accepted by the membership of KDE e.V. (or its |
|
* successor approved by the membership of KDE e.V.), which shall |
|
* act as a proxy defined in Section 6 of version 3 of the license. |
|
* |
|
* This library 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 |
|
* Lesser General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Lesser General Public |
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>. |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QDBusArgument> |
|
#include <QDateTime> |
|
#include <QScopedPointer> |
|
#include <QImage> |
|
#include <QList> |
|
#include <QString> |
|
#include <QUrl> |
|
|
|
#include <KService> |
|
|
|
#include "notifications.h" |
|
|
|
namespace NotificationManager |
|
{ |
|
|
|
class Q_DECL_HIDDEN Notification::Private |
|
{ |
|
public: |
|
Private(); |
|
~Private(); |
|
|
|
static QString sanitize(const QString &text); |
|
static QImage decodeNotificationSpecImageHint(const QDBusArgument &arg); |
|
static void sanitizeImage(QImage &image); |
|
|
|
void loadImagePath(const QString &path); |
|
|
|
static QString defaultComponentName(); |
|
static QSize maximumImageSize(); |
|
|
|
static KService::Ptr serviceForDesktopEntry(const QString &desktopEntry); |
|
|
|
void setDesktopEntry(const QString &desktopEntry); |
|
void processHints(const QVariantMap &hints); |
|
|
|
void setUrgency(Notifications::Urgency urgency); |
|
|
|
uint id = 0; |
|
// Bus name of the creator/sender |
|
QString dBusService; |
|
QDateTime created; |
|
QDateTime updated; |
|
bool read = false; |
|
|
|
QString summary; |
|
QString body; |
|
// raw body text without sanitize called. |
|
QString rawBody; |
|
// Can be theme icon name or path |
|
QString icon; |
|
QImage image; |
|
|
|
QString applicationName; |
|
QString desktopEntry; |
|
bool configurableService = false; |
|
QString serviceName; // "Name" field in KService from desktopEntry |
|
QString applicationIconName; |
|
|
|
QString originName; |
|
|
|
QStringList actionNames; |
|
QStringList actionLabels; |
|
bool hasDefaultAction = false; |
|
QString defaultActionLabel; |
|
|
|
bool hasConfigureAction = false; |
|
QString configureActionLabel; |
|
|
|
bool configurableNotifyRc = false; |
|
QString notifyRcName; |
|
QString eventId; |
|
|
|
bool hasReplyAction = false; |
|
QString replyActionLabel; |
|
QString replyPlaceholderText; |
|
QString replySubmitButtonText; |
|
QString replySubmitButtonIconName; |
|
|
|
QList<QUrl> urls; |
|
QVariantMap hints = QVariantMap(); |
|
|
|
bool userActionFeedback = false; |
|
Notifications::Urgency urgency = Notifications::NormalUrgency; |
|
int timeout = -1; |
|
|
|
bool expired = false; |
|
bool dismissed = false; |
|
}; |
|
|
|
} // namespace NotificationManager
|
|
|