kdeconnect-kde/plugins/notifications
l10n daemon script 871fcf0cd1 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2023-11-17 01:18:34 +00:00
..
CMakeLists.txt Add missing QtWidgets link 2023-08-19 00:17:05 +02:00
kdeconnect_notifications.json SVN_SILENT made messages (.desktop file) - always resolve ours 2023-11-17 01:18:34 +00:00
notification.cpp Port to new KNotifications action API 2023-11-04 13:40:22 +01:00
notification.h Use pragma once in plugins 2023-07-22 20:51:19 +00:00
notificationsplugin.cpp plugins: Use QLatin1String::arg for faster and simpler string concatination 2023-08-28 17:20:46 +00:00
notificationsplugin.h plugins: Prefer using statements with baseclass over empty constructor 2023-08-07 19:28:37 +02:00
README Update readme 2023-03-31 21:00:48 +02:00
sendreplydialog.cpp Add explicit moc includes to cpp files 2023-07-30 07:27:45 +00:00
sendreplydialog.h Use std::unique_ptr for pimpl classes 2023-08-28 17:20:46 +00:00
sendreplydialog.ui [sendreplydialog] Move focus on tab 2021-09-26 17:27:42 +00:00

This plugin listens to packages with type "kdeconnect.notification" that will
contain all the information of the other device notifications.

The other device will report us every notification that is created or dismissed,
so we can keep in sync a local list of notifications.

At the beginning we can request the already existing notifications by sending a
package with the boolean "request" set to true.

The received packages will contain the following fields:

"id" (string): A unique notification id.
"appName" (string): The app that generated the notification
"ticker" (string): The title or headline of the notification, for compatibility with older Android versions.
"isClearable" (boolean): True if we can request to dismiss the notification.
"isCancel" (boolean): True if the notification was dismissed in the peer device.
"title" (string): The title of the notification.
"text" (string): The text/content of the notification.
"requestReplyId" (string): Used to reply to messages.
"silent" (bool): Don't show a notification popup for this notification.

Additionally the package can contain a payload with the icon of the notification
in PNG format. If there another field will be present:

"payloadHash" (string): MD5 hash of the payload. Used as a filename to store the payload.

The content of these fields is used to display the notifications to the user.
Note that if we receive a second notification with the same "id", the existing notification is updated.

If the user dismisses a notification from this device, we have to request the
other device to remove it. This is done by sending a package with the fields
"id" set to the id of the notification we want to dismiss and a boolean "cancel"
set to true. The other device will answer with a notification package with
"isCancel" set to true when it is dismissed.