aboutsummaryrefslogtreecommitdiff
path: root/room.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-03-27 20:34:46 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-03-27 20:34:46 +0900
commitf213e02daa6b9e83e8e76d1576e446357c6c3bc7 (patch)
treeb5b648115723ed9a60d6f6ddef095c7900484e84 /room.h
parentd38020752c4a03fdc5b74f9704b28b302ec5ebf8 (diff)
downloadlibquotient-f213e02daa6b9e83e8e76d1576e446357c6c3bc7.tar.gz
libquotient-f213e02daa6b9e83e8e76d1576e446357c6c3bc7.zip
Rework unread messages counting logic
The previous one didn't cover all the cases; the current one seems to do. Closes #192. Accompanied by the developer's notes at: https://github.com/QMatrixClient/libqmatrixclient/wiki/unread_count
Diffstat (limited to 'room.h')
-rw-r--r--room.h24
1 files changed, 22 insertions, 2 deletions
diff --git a/room.h b/room.h
index c153bfc3..015e9dfc 100644
--- a/room.h
+++ b/room.h
@@ -113,6 +113,8 @@ namespace QMatrixClient
Q_PROPERTY(QString lastDisplayedEventId READ lastDisplayedEventId WRITE setLastDisplayedEventId NOTIFY lastDisplayedEventChanged)
Q_PROPERTY(QString readMarkerEventId READ readMarkerEventId WRITE markMessagesAsRead NOTIFY readMarkerMoved)
+ Q_PROPERTY(bool hasUnreadMessages READ hasUnreadMessages NOTIFY unreadMessagesChanged)
+ Q_PROPERTY(int unreadCount READ unreadCount NOTIFY unreadMessagesChanged)
Q_PROPERTY(QStringList tagNames READ tagNames NOTIFY tagsChanged)
public:
@@ -229,8 +231,26 @@ namespace QMatrixClient
*/
void markMessagesAsRead(QString uptoEventId);
- Q_INVOKABLE bool hasUnreadMessages() const;
- int unreadMessagesCount() const;
+ /** Check whether there are unread messages in the room */
+ bool hasUnreadMessages() const;
+
+ /** Get the number of unread messages in the room
+ * Depending on the read marker state, this call may return either
+ * a precise or an estimate number of unread events. Only "notable"
+ * events (non-redacted message events from users other than local)
+ * are counted.
+ *
+ * In a case when readMarker() == timelineEdge() (the local read
+ * marker is beyond the local timeline) only the bottom limit of
+ * the unread messages number can be estimated (and even that may
+ * be slightly off due to, e.g., redactions of events not loaded
+ * to the local timeline).
+ *
+ * If all messages are read, this function will return -1 (_not_ 0,
+ * as zero may mean "zero or more unread messages" in a situation
+ * when the read marker is outside the local timeline.
+ */
+ int unreadCount() const;
Q_INVOKABLE int notificationCount() const;
Q_INVOKABLE void resetNotificationCount();