2018-09-17 13:01:02 +00:00
|
|
|
#ifndef SpectralRoom_H
|
|
|
|
#define SpectralRoom_H
|
2018-08-18 08:02:47 +00:00
|
|
|
|
|
|
|
#include "room.h"
|
|
|
|
|
|
|
|
#include <QObject>
|
2018-08-20 14:40:36 +00:00
|
|
|
#include <QTimer>
|
2018-08-18 08:02:47 +00:00
|
|
|
|
|
|
|
using namespace QMatrixClient;
|
|
|
|
|
2018-09-17 13:01:02 +00:00
|
|
|
class SpectralRoom : public Room {
|
2018-08-18 08:02:47 +00:00
|
|
|
Q_OBJECT
|
2018-10-14 22:49:30 +00:00
|
|
|
Q_PROPERTY(QImage avatar READ getAvatar NOTIFY inheritedAvatarChanged)
|
2018-08-20 14:40:36 +00:00
|
|
|
Q_PROPERTY(bool hasUsersTyping READ hasUsersTyping NOTIFY typingChanged)
|
|
|
|
Q_PROPERTY(QString usersTyping READ getUsersTyping NOTIFY typingChanged)
|
2018-08-18 08:02:47 +00:00
|
|
|
Q_PROPERTY(QString cachedInput READ cachedInput WRITE setCachedInput NOTIFY
|
|
|
|
cachedInputChanged)
|
2018-09-30 14:13:54 +00:00
|
|
|
Q_PROPERTY(bool busy READ busy NOTIFY busyChanged)
|
|
|
|
|
2018-08-18 08:02:47 +00:00
|
|
|
public:
|
2018-09-17 13:01:02 +00:00
|
|
|
explicit SpectralRoom(Connection* connection, QString roomId,
|
2018-08-18 08:02:47 +00:00
|
|
|
JoinState joinState = {});
|
|
|
|
|
2018-09-10 07:01:01 +00:00
|
|
|
QImage getAvatar() { return avatar(128); }
|
2018-09-10 01:51:02 +00:00
|
|
|
|
2018-08-18 08:02:47 +00:00
|
|
|
const QString& cachedInput() const { return m_cachedInput; }
|
|
|
|
void setCachedInput(const QString& input) {
|
|
|
|
if (input != m_cachedInput) {
|
|
|
|
m_cachedInput = input;
|
|
|
|
emit cachedInputChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-30 14:13:54 +00:00
|
|
|
bool busy() { return m_busy; }
|
|
|
|
void setBusy(bool value) {
|
|
|
|
if (m_busy != value) {
|
|
|
|
m_busy = value;
|
|
|
|
emit busyChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 14:40:36 +00:00
|
|
|
bool hasUsersTyping();
|
|
|
|
QString getUsersTyping();
|
|
|
|
|
2018-08-22 15:21:39 +00:00
|
|
|
QString lastEvent();
|
2018-09-06 04:34:15 +00:00
|
|
|
bool isEventHighlighted(const QMatrixClient::RoomEvent* e) const;
|
2018-08-22 15:21:39 +00:00
|
|
|
|
2018-09-18 12:57:38 +00:00
|
|
|
QDateTime lastActiveTime();
|
|
|
|
|
2018-09-19 23:01:55 +00:00
|
|
|
Q_INVOKABLE float orderForTag(QString name);
|
2018-09-28 11:47:17 +00:00
|
|
|
Q_INVOKABLE int savedTopVisibleIndex() const;
|
|
|
|
Q_INVOKABLE int savedBottomVisibleIndex() const;
|
|
|
|
Q_INVOKABLE void saveViewport(int topIndex, int bottomIndex);
|
2018-09-19 23:01:55 +00:00
|
|
|
|
2018-10-07 12:38:30 +00:00
|
|
|
Q_INVOKABLE void getPreviousContent(int limit = 10);
|
|
|
|
|
2018-08-18 08:02:47 +00:00
|
|
|
private:
|
2018-08-19 06:32:18 +00:00
|
|
|
QString m_cachedInput;
|
2018-09-06 04:34:15 +00:00
|
|
|
QSet<const QMatrixClient::RoomEvent*> highlights;
|
2018-08-18 08:02:47 +00:00
|
|
|
|
2018-09-30 14:13:54 +00:00
|
|
|
bool m_busy;
|
|
|
|
|
2018-08-18 08:02:47 +00:00
|
|
|
QString getMIME(const QUrl& fileUrl) const;
|
|
|
|
void postFile(const QUrl& localFile, const QUrl& mxcUrl);
|
|
|
|
|
2018-09-06 04:34:15 +00:00
|
|
|
void checkForHighlights(const QMatrixClient::TimelineItem& ti);
|
|
|
|
|
|
|
|
void onAddNewTimelineEvents(timeline_iter_t from) override;
|
|
|
|
void onAddHistoricalTimelineEvents(rev_iter_t from) override;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void countChanged();
|
|
|
|
|
2018-08-18 08:02:47 +00:00
|
|
|
signals:
|
|
|
|
void cachedInputChanged();
|
2018-09-30 14:13:54 +00:00
|
|
|
void busyChanged();
|
2018-10-14 22:49:30 +00:00
|
|
|
void inheritedAvatarChanged(); // https://bugreports.qt.io/browse/QTBUG-7684
|
2018-08-18 08:02:47 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void chooseAndUploadFile();
|
|
|
|
void saveFileAs(QString eventId);
|
|
|
|
void acceptInvitation();
|
|
|
|
void forget();
|
2018-08-20 14:40:36 +00:00
|
|
|
void sendTypingNotification(bool isTyping);
|
2018-09-18 12:57:38 +00:00
|
|
|
void sendReply(QString userId, QString eventId, QString replyContent,
|
|
|
|
QString sendContent);
|
2018-08-18 08:02:47 +00:00
|
|
|
};
|
|
|
|
|
2018-09-17 13:01:02 +00:00
|
|
|
#endif // SpectralRoom_H
|