diff options
Diffstat (limited to 'src/timeline/EventDelegateChooser.h')
-rw-r--r-- | src/timeline/EventDelegateChooser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/timeline/EventDelegateChooser.h b/src/timeline/EventDelegateChooser.h index ce22ca3a..b627b383 100644 --- a/src/timeline/EventDelegateChooser.h +++ b/src/timeline/EventDelegateChooser.h @@ -54,6 +54,7 @@ class EventDelegateChooser : public QQuickItem public: Q_PROPERTY(QQmlListProperty<EventDelegateChoice> choices READ choices CONSTANT FINAL) Q_PROPERTY(QQuickItem *main READ main NOTIFY mainChanged FINAL) + Q_PROPERTY(QQuickItem *reply READ reply NOTIFY replyChanged FINAL) Q_PROPERTY(TimelineModel *room READ room WRITE setRoom NOTIFY roomChanged REQUIRED FINAL) Q_PROPERTY(QString eventId READ eventId WRITE setEventId NOTIFY eventIdChanged REQUIRED FINAL) Q_PROPERTY(QString replyTo READ replyTo WRITE setReplyTo NOTIFY replyToChanged REQUIRED FINAL) @@ -64,6 +65,10 @@ public: { return qobject_cast<QQuickItem *>(eventIncubator.object()); } + [[nodiscard]] QQuickItem *reply() const + { + return qobject_cast<QQuickItem *>(replyIncubator.object()); + } void setRoom(TimelineModel *m) { |