1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
|
/*
SPDX-FileCopyrightText: 2019 Kai Uwe Broulik <kde@privat.broulik.de>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#pragma once
#include <QQmlParserStatus>
#include <QScopedPointer>
#include <QSortFilterProxyModel>
#include <QWindow>
#include "notificationmanager_export.h"
namespace NotificationManager
{
/**
* @brief A model with notifications and jobs
*
* This model contains application notifications as well as jobs
* and lets you apply fine-grained filter, sorting, and grouping rules.
*
* @author Kai Uwe Broulik <kde@privat.broulik.de>
**/
class NOTIFICATIONMANAGER_EXPORT Notifications : public QSortFilterProxyModel, public QQmlParserStatus
{
Q_OBJECT
Q_INTERFACES(QQmlParserStatus)
/**
* The number of notifications the model should at most contain.
*
* Default is 0, which is no limit.
*/
Q_PROPERTY(int limit READ limit WRITE setLimit NOTIFY limitChanged)
/**
* Whether to show expired notifications.
*
* Expired notifications are those that timed out, i.e. ones that were not explicitly
* closed or acted upon by the user, nor revoked by the issuing application.
*
* An expired notification has its actions removed.
*
* Default is false.
*/
Q_PROPERTY(bool showExpired READ showExpired WRITE setShowExpired NOTIFY showExpiredChanged)
/**
* Whether to show dismissed notifications.
*
* Dismissed notifications are those that are temporarily hidden by the user.
* This can e.g. be a copy job that has its popup closed but still continues in the background.
*
* Default is false.
*/
Q_PROPERTY(bool showDismissed READ showDismissed WRITE setShowDismissed NOTIFY showDismissedChanged)
/**
* A list of desktop entries for which no notifications should be shown.
*
* If the same desktop entry is present in both blacklist and whitelist,
* the blacklist takes precedence, i.e. the notification is not shown.
*/
Q_PROPERTY(QStringList blacklistedDesktopEntries READ blacklistedDesktopEntries WRITE setBlacklistedDesktopEntries NOTIFY blacklistedDesktopEntriesChanged)
/**
* A list of notifyrc names for which no notifications should be shown.
*
* If the same notifyrc name is present in both blacklist and whitelist,
* the blacklist takes precedence, i.e. the notification is not shown.
*/
Q_PROPERTY(QStringList blacklistedNotifyRcNames READ blacklistedNotifyRcNames WRITE setBlacklistedNotifyRcNames NOTIFY blacklistedNotifyRcNamesChanged)
/**
* A list of desktop entries for which notifications should be shown.
*
* This bypasses any filtering for urgency.
*
* If the same desktop entry is present in both whitelist and blacklist,
* the blacklist takes precedence, i.e. the notification is not shown.
*
* Default is empty list, which means normal filtering is applied.
*/
Q_PROPERTY(QStringList whitelistedDesktopEntries READ whitelistedDesktopEntries WRITE setWhitelistedDesktopEntries NOTIFY whitelistedDesktopEntriesChanged)
/**
* A list of notifyrc names for which notifications should be shown.
*
* This bypasses any filtering for urgency.
*
* If the same notifyrc name is present in both whitelist and blacklist,
* the blacklist takes precedence, i.e. the notification is not shown.
*
* Default is empty list, which means normal filtering is applied.
*/
Q_PROPERTY(QStringList whitelistedNotifyRcNames READ whitelistedNotifyRcNames WRITE setWhitelistedNotifyRcNames NOTIFY whitelistedNotifyRcNamesChanged)
/**
* Whether to show notifications.
*
* Default is true.
*/
Q_PROPERTY(bool showNotifications READ showNotifications WRITE setShowNotifications NOTIFY showNotificationsChanged)
/**
* Whether to show application jobs.
*
* Default is false.
*/
Q_PROPERTY(bool showJobs READ showJobs WRITE setShowJobs NOTIFY showJobsChanged)
/**
* The notification urgency types the model should contain.
*
* Default is all urgencies: low, normal, critical.
*/
Q_PROPERTY(Urgencies urgencies READ urgencies WRITE setUrgencies NOTIFY urgenciesChanged)
/**
* The sort mode for notifications.
*
* Default is strictly by date created/updated.
*/
Q_PROPERTY(SortMode sortMode READ sortMode WRITE setSortMode NOTIFY sortModeChanged)
/**
* The sort order for notifications.
*
* This only affects the sort order by date. When @c sortMode is set to SortByTypeAndUrgency
* the order of notification groups (e.g. high - jobs - normal - low) is unaffected, and only
* notifications within the same group are either sorted ascending or descending by their
* creation/update date.
*
* Default is DescendingOrder, i.e. newest notifications come first.
*
* @since 5.19
*/
Q_PROPERTY(Qt::SortOrder sortOrder READ sortOrder WRITE setSortOrder NOTIFY sortOrderChanged)
/**
* The group mode for notifications.
*
* Default is ungrouped.
*/
Q_PROPERTY(GroupMode groupMode READ groupMode WRITE setGroupMode NOTIFY groupModeChanged)
/**
* How many notifications are shown in each group.
*
* You can expand a group by setting the IsGroupExpandedRole to true.
*
* Default is 0, which means no limit.
*/
Q_PROPERTY(int groupLimit READ groupLimit WRITE setGroupLimit NOTIFY groupLimitChanged)
/**
* Whether to automatically show notifications that are unread.
*
* This is any notification that was created or updated after the value of @c lastRead.
*/
Q_PROPERTY(bool expandUnread READ expandUnread WRITE setExpandUnread NOTIFY expandUnreadChanged)
/**
* The number of notifications in the model
*/
Q_PROPERTY(int count READ count NOTIFY countChanged)
/**
* The number of active, i.e. non-expired notifications
*/
Q_PROPERTY(int activeNotificationsCount READ activeNotificationsCount NOTIFY activeNotificationsCountChanged)
/**
* The number of inactive, i.e. non-expired notifications
*/
Q_PROPERTY(int expiredNotificationsCount READ expiredNotificationsCount NOTIFY expiredNotificationsCountChanged)
/**
* The time when the user last could read the notifications.
* This is typically reset whenever the list of notifications is opened and is used to determine
* the @c unreadNotificationsCount
*/
Q_PROPERTY(QDateTime lastRead READ lastRead WRITE setLastRead RESET resetLastRead NOTIFY lastReadChanged)
/**
* The number of notifications added since lastRead
*
* This can be used to show a "n unread notifications" label
*/
Q_PROPERTY(int unreadNotificationsCount READ unreadNotificationsCount NOTIFY unreadNotificationsCountChanged)
/**
* The number of active jobs
*/
Q_PROPERTY(int activeJobsCount READ activeJobsCount NOTIFY activeJobsCountChanged)
/**
* The combined percentage of all jobs.
*
* This is the average of all percentages and could can be used to show
* a global progress bar.
*/
Q_PROPERTY(int jobsPercentage READ jobsPercentage NOTIFY jobsPercentageChanged)
/**
* The window that will render the notifications
*
* This is used to tell the xdg_activation_v1 protocol who is requesting the activation.
*/
Q_PROPERTY(QWindow *window READ window WRITE setWindow NOTIFY windowChanged)
public:
explicit Notifications(QObject *parent = nullptr);
~Notifications() override;
enum Roles {
IdRole = Qt::UserRole + 1, ///< A notification identifier. This can be uint notification ID or string application job source.
SummaryRole = Qt::DisplayRole, ///< The notification summary.
ImageRole = Qt::DecorationRole, ///< The notification main image, which is not the application icon. Only valid for pixmap icons.
IsGroupRole = Qt::UserRole + 2, ///< Whether the item is a group
GroupChildrenCountRole, ///< The number of children in a group.
ExpandedGroupChildrenCountRole, ///< The number of children in a group that are expanded.
IsGroupExpandedRole, ///< Whether the group is expanded, this role is writable.
IsInGroupRole, ///< Whether the notification is currently inside a group.
TypeRole, ///< The type of model entry, either NotificationType or JobType.
CreatedRole, ///< When the notification was first created.
UpdatedRole, ///< When the notification was last updated, invalid when it hasn't been updated.
BodyRole, ///< The notification body text.
IconNameRole, ///< The notification main icon name, which is not the application icon. Only valid for icon names, if a URL supplied, it is loaded and
///< exposed as ImageRole instead.
DesktopEntryRole, ///< The desktop entry (without .desktop suffix, e.g. org.kde.spectacle) of the application that sent the notification.
NotifyRcNameRole, ///< The notifyrc name (e.g. spectaclerc) of the application that sent the notification.
ApplicationNameRole, ///< The user-visible name of the application (e.g. Spectacle)
ApplicationIconNameRole, ///< The icon name of the application
OriginNameRole, ///< The name of the device or account the notification originally came from, e.g. "My Phone" (in case of device sync) or
///< "foo@example.com" (in case of an email notification)
// Jobs
JobStateRole, ///< The state of the job, either JobStateJopped, JobStateSuspended, or JobStateRunning.
PercentageRole, ///< The percentage of the job. Use @c jobsPercentage to get a global percentage for all jobs.
JobErrorRole, ///< The error id of the job, zero in case of no error.
SuspendableRole, ///< Whether the job can be suspended @sa suspendJob
KillableRole, ///< Whether the job can be killed/canceled @sa killJob
JobDetailsRole, ///< A pointer to a Job item itself containing more detailed information about the job
ActionNamesRole, ///< The IDs of the actions, excluding the default and settings action, e.g. [action1, action2]
ActionLabelsRole, ///< The user-visible labels of the actions, excluding the default and settings action, e.g. ["Accept", "Reject"]
HasDefaultActionRole, ///< Whether the notification has a default action, which is one that is invoked when the popup itself is clicked
DefaultActionLabelRole, ///< The user-visible label of the default action, typically not shown as the popup itself becomes clickable
UrlsRole, ///< A list of URLs associated with the notification, e.g. a path to a screenshot that was just taken or image received
UrgencyRole, ///< The notification urgency, either LowUrgency, NormalUrgency, or CriticalUrgency. Jobs do not have an urgency.
TimeoutRole, ///< The timeout for the notification in milliseconds. 0 means the notification should not timeout, -1 means a sensible default should be
///< applied.
ConfigurableRole, ///< Whether the notification can be configured because a desktopEntry or notifyRcName is known, or the notification has a setting
///< action. @sa configure
ConfigureActionLabelRole, ///< The user-visible label for the settings action
ClosableRole, ///< Whether the item can be closed. Notifications are always closable, jobs are only when in JobStateStopped.
ExpiredRole, ///< The notification timed out and closed. Actions on it cannot be invoked anymore.
DismissedRole, ///< The notification got temporarily hidden by the user but could still be interacted with.
ReadRole, ///< Whether the notification got read by the user. If true, the notification isn't considered unread even if created after lastRead.
///< @since 5.17
UserActionFeedbackRole, ///< Whether this notification is a response/confirmation to an explicit user action. @since 5.18
HasReplyActionRole, ///< Whether the notification has a reply action. @since 5.18
ReplyActionLabelRole, ///< The user-visible label for the reply action. @since 5.18
ReplyPlaceholderTextRole, ///< A custom placeholder text for the reply action, e.g. "Reply to Max...". @since 5.18
ReplySubmitButtonTextRole, ///< A custom text for the reply submit button, e.g. "Submit Comment". @since 5.18
ReplySubmitButtonIconNameRole, ///< A custom icon name for the reply submit button. @since 5.18
CategoryRole, ///< The (optional) category of the notification. Notifications can optionally have a type indicator. Although neither client or nor
///< server must support this, some may choose to. Those servers implementing categories may use them to intelligently display the
///< notification in a certain way, or group notifications of similar types. @since 5.21
ResidentRole, ///< Whether the notification should keep its actions even when they were invoked. @since 5.22
TransientRole, ///< Whether the notification is transient and should not be kept in history. @since 5.22
};
Q_ENUM(Roles)
/**
* The type of model item.
*/
enum Type {
NoType,
NotificationType, ///< This item represents a notification.
JobType, ///< This item represents an application job.
};
Q_ENUM(Type)
/**
* The notification urgency.
*
* @note jobs do not have an urgency, yet still might be above normal urgency notifications.
*/
enum Urgency {
// these don't match the spec's value
LowUrgency = 1 << 0, ///< The notification has low urgency, it is not important and may not be shown or added to a history.
NormalUrgency = 1 << 1, ///< The notification has normal urgency. This is also the default if no urgecny is supplied.
CriticalUrgency = 1 << 2,
};
Q_ENUM(Urgency)
Q_DECLARE_FLAGS(Urgencies, Urgency)
Q_FLAG(Urgencies)
/**
* Which items should be cleared in a call to @c clear
*/
enum ClearFlag {
ClearExpired = 1 << 1,
// TODO more
};
Q_ENUM(ClearFlag)
Q_DECLARE_FLAGS(ClearFlags, ClearFlag)
Q_FLAG(ClearFlags)
/**
* The state an application job is in.
*/
enum JobState {
JobStateStopped, ///< The job is stopped. It has either finished (error is 0) or failed (error is not 0)
JobStateRunning, ///< The job is currently running.
JobStateSuspended, ///< The job is currentl paused
};
Q_ENUM(JobState)
/**
* The sort mode for the model.
*/
enum SortMode {
SortByDate = 0, ///< Sort notifications strictly by the date they were updated or created.
// should this be flags? SortJobsFirst | SortByUrgency | ...?
SortByTypeAndUrgency, ///< Sort notifications taking into account their type and urgency. The order is (descending): Critical, jobs, Normal, Low.
};
Q_ENUM(SortMode)
/**
* The group mode for the model.
*/
enum GroupMode {
GroupDisabled = 0,
// GroupApplicationsTree, // TODO make actual tree
GroupApplicationsFlat,
};
Q_ENUM(GroupMode)
enum InvokeBehavior {
None = 0,
Close = 1,
};
Q_ENUM(InvokeBehavior)
Q_DECLARE_FLAGS(InvokeBehaviors, InvokeBehavior)
Q_FLAG(InvokeBehaviors)
int limit() const;
void setLimit(int limit);
bool showExpired() const;
void setShowExpired(bool show);
bool showDismissed() const;
void setShowDismissed(bool show);
QStringList blacklistedDesktopEntries() const;
void setBlacklistedDesktopEntries(const QStringList &blacklist);
QStringList blacklistedNotifyRcNames() const;
void setBlacklistedNotifyRcNames(const QStringList &blacklist);
QStringList whitelistedDesktopEntries() const;
void setWhitelistedDesktopEntries(const QStringList &whitelist);
QStringList whitelistedNotifyRcNames() const;
void setWhitelistedNotifyRcNames(const QStringList &whitelist);
bool showNotifications() const;
void setShowNotifications(bool showNotifications);
bool showJobs() const;
void setShowJobs(bool showJobs);
Urgencies urgencies() const;
void setUrgencies(Urgencies urgencies);
SortMode sortMode() const;
void setSortMode(SortMode sortMode);
Qt::SortOrder sortOrder() const;
void setSortOrder(Qt::SortOrder sortOrder);
GroupMode groupMode() const;
void setGroupMode(GroupMode groupMode);
int groupLimit() const;
void setGroupLimit(int limit);
bool expandUnread() const;
void setExpandUnread(bool expand);
QWindow *window() const;
void setWindow(QWindow *window);
int count() const;
int activeNotificationsCount() const;
int expiredNotificationsCount() const;
QDateTime lastRead() const;
void setLastRead(const QDateTime &lastRead);
void resetLastRead();
int unreadNotificationsCount() const;
int activeJobsCount() const;
int jobsPercentage() const;
/**
* Convert the given QModelIndex into a QPersistentModelIndex
*/
Q_INVOKABLE QPersistentModelIndex makePersistentModelIndex(const QModelIndex &idx) const;
/**
* @brief Expire a notification
*
* Closes the notification in response to its timeout running out.
*
* Call this if you have an implementation that handles the timeout itself
* by having called @c stopTimeout
*
* @sa stopTimeout
*/
Q_INVOKABLE void expire(const QModelIndex &idx);
/**
* @brief Close a notification
*
* Closes the notification in response to the user explicitly closing it.
*
* When the model index belongs to a group, the entire group is closed.
*/
Q_INVOKABLE void close(const QModelIndex &idx);
/**
* @brief Configure a notification
*
* This will invoke the settings action, if available, otherwise open the
* kcm_notifications KCM for configuring the respective application and event.
*/
Q_INVOKABLE void configure(const QModelIndex &idx); // TODO pass ctx for transient handling
/**
* @brief Invoke the default notification action
*
* Invokes the action that should be triggered when clicking
* the notification bubble itself.
*/
Q_INVOKABLE void invokeDefaultAction(const QModelIndex &idx, InvokeBehavior behavior = None);
/**
* @brief Invoke a notification action
*
* Invokes the action with the given actionId on the notification.
* For invoking the default action, i.e. the one that is triggered
* when clicking the notification bubble, use invokeDefaultAction
*/
Q_INVOKABLE void invokeAction(const QModelIndex &idx, const QString &actionId, InvokeBehavior = None);
/**
* @brief Reply to a notification
*
* Replies to the given notification with the given text.
* @since 5.18
*/
Q_INVOKABLE void reply(const QModelIndex &idx, const QString &text, InvokeBehavior behavior);
/**
* @brief Start automatic timeout of notifications
*
* Call this if you no longer handle the timeout yourself.
*
* @sa stopTimeout
*/
Q_INVOKABLE void startTimeout(const QModelIndex &idx);
Q_INVOKABLE void startTimeout(uint notificationId);
/**
* @brief Stop the automatic timeout of notifications
*
* Call this if you have an implementation that handles the timeout itself
* taking into account e.g. whether the user is currently interacting with
* the notification to not close it under their mouse. Call @c expire
* once your custom timer has run out.
*
* @sa expire
*/
Q_INVOKABLE void stopTimeout(const QModelIndex &idx);
/**
* @brief Suspend a job
*/
Q_INVOKABLE void suspendJob(const QModelIndex &idx);
/**
* @brief Resume a job
*/
Q_INVOKABLE void resumeJob(const QModelIndex &idx);
/**
* @brief Kill a job
*/
Q_INVOKABLE void killJob(const QModelIndex &idx);
/**
* @brief Clear notifications
*
* Removes the notifications matching th ClearFlags from the model.
* This can be used for e.g. a "Clear History" action.
*/
Q_INVOKABLE void clear(ClearFlags flags);
/**
* Returns a model index pointing to the group of a notification.
*/
Q_INVOKABLE QModelIndex groupIndex(const QModelIndex &idx) const;
Q_INVOKABLE void collapseAllGroups();
QVariant data(const QModelIndex &index, int role) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
QHash<int, QByteArray> roleNames() const override;
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override;
bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override;
Q_SIGNALS:
void limitChanged();
void showExpiredChanged();
void showDismissedChanged();
void blacklistedDesktopEntriesChanged();
void blacklistedNotifyRcNamesChanged();
void whitelistedDesktopEntriesChanged();
void whitelistedNotifyRcNamesChanged();
void showNotificationsChanged();
void showJobsChanged();
void urgenciesChanged();
void sortModeChanged();
void sortOrderChanged();
void groupModeChanged();
void groupLimitChanged();
void expandUnreadChanged();
void countChanged();
void activeNotificationsCountChanged();
void expiredNotificationsCountChanged();
void lastReadChanged();
void unreadNotificationsCountChanged();
void activeJobsCountChanged();
void jobsPercentageChanged();
void windowChanged(QWindow *window);
protected:
void classBegin() override;
void componentComplete() override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace NotificationManager
Q_DECLARE_OPERATORS_FOR_FLAGS(NotificationManager::Notifications::Urgencies)
|