diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2019-06-13 22:33:04 -0400 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2019-06-13 22:33:04 -0400 |
commit | 129beb57c9525439d04fc2bf74f4ccaed30369c9 (patch) | |
tree | 726c166c1a486a6f635cf62437caa63401a31470 /src/timeline/TimelineViewManager.h | |
parent | Merge branch '0.7.0-dev' of ssh://github.com/Nheko-Reborn/nheko into 0.7.0-dev (diff) | |
download | nheko-129beb57c9525439d04fc2bf74f4ccaed30369c9.tar.xz |
Further Improve Reply Functionality
Quoted replies now include matrix.to links for the event and the user. UI Rendering has been (slightly) improved... still very WIP. Restructured the reply structure in the code for future usability improvements.
Diffstat (limited to '')
-rw-r--r-- | src/timeline/TimelineViewManager.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/timeline/TimelineViewManager.h b/src/timeline/TimelineViewManager.h index 0ac6d67e..b52136d9 100644 --- a/src/timeline/TimelineViewManager.h +++ b/src/timeline/TimelineViewManager.h @@ -22,6 +22,8 @@ #include <mtx.hpp> +#include "Utils.h" + class QFile; class RoomInfoListItem; @@ -63,7 +65,7 @@ public slots: void setHistoryView(const QString &room_id); void queueTextMessage(const QString &msg); - void queueReplyMessage(const QString &reply, const QString &related_event); + void queueReplyMessage(const QString &reply, const RelatedInfo &related); void queueEmoteMessage(const QString &msg); void queueImageMessage(const QString &roomid, const QString &filename, |