matrixion/src/timeline2/TimelineModel.h

58 lines
1.3 KiB
C
Raw Normal View History

2019-08-31 00:20:53 +03:00
#pragma once
#include <QAbstractListModel>
#include <QColor>
2019-08-31 23:43:31 +03:00
#include <QHash>
2019-08-31 00:20:53 +03:00
2019-08-31 23:43:31 +03:00
#include <mtx/responses.hpp>
2019-08-31 00:20:53 +03:00
class TimelineModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit TimelineModel(QString room_id, QObject *parent = 0);
2019-08-31 00:20:53 +03:00
enum Roles
{
Type,
Body,
FormattedBody,
UserId,
UserName,
Timestamp,
};
QHash<int, QByteArray> roleNames() const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
Q_INVOKABLE QColor userColor(QString id, QColor background);
2019-08-31 23:43:31 +03:00
void addEvents(const mtx::responses::Timeline &events);
public slots:
void fetchHistory();
private slots:
// Add old events at the top of the timeline.
void addBackwardsEvents(const mtx::responses::Messages &msgs);
signals:
void oldMessagesRetrieved(const mtx::responses::Messages &res);
2019-08-31 00:20:53 +03:00
private:
2019-08-31 23:43:31 +03:00
QHash<QString, mtx::events::collections::TimelineEvents> events;
2019-08-31 00:20:53 +03:00
std::vector<QString> eventOrder;
QString room_id_;
QString prev_batch_token_;
bool isInitialSync = true;
bool paginationInProgress = false;
2019-08-31 23:43:31 +03:00
QHash<QString, QColor> userColors;
2019-08-31 00:20:53 +03:00
};