service/notifications: add inline-reply action support

Signed-off-by: ipg0 <pyromancy00@gmail.com>
This commit is contained in:
ipg0 2025-07-15 00:15:55 +03:00 committed by outfoxxed
parent 3dfb7d8827
commit c40074dd56
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
7 changed files with 79 additions and 3 deletions

View file

@ -23,6 +23,7 @@ struct NotificationServerSupport {
bool actions = false;
bool actionIcons = false;
bool image = false;
bool inlineReply = false;
QVector<QString> extraHints;
};
@ -60,6 +61,7 @@ signals:
// NOLINTBEGIN
void NotificationClosed(quint32 id, quint32 reason);
void ActionInvoked(quint32 id, QString action);
void NotificationReplied(quint32 id, QString replyText);
// NOLINTEND
private slots: