2020-08-22 18:30:02 +03:00
|
|
|
#ifndef CHATMODEL_H
|
|
|
|
#define CHATMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QMutex>
|
|
|
|
#include "tdlibwrapper.h"
|
|
|
|
|
|
|
|
class ChatModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
ChatModel(TDLibWrapper *tdLibWrapper);
|
|
|
|
~ChatModel() override;
|
|
|
|
|
|
|
|
virtual int rowCount(const QModelIndex&) const override;
|
|
|
|
virtual QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
virtual bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;
|
|
|
|
|
2020-08-22 22:43:20 +03:00
|
|
|
Q_INVOKABLE void initialize(const QString &chatId);
|
2020-08-26 23:52:06 +03:00
|
|
|
Q_INVOKABLE void triggerLoadMoreHistory();
|
2020-08-22 22:43:20 +03:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void messagesReceived();
|
2020-08-26 23:52:06 +03:00
|
|
|
void messagesIncrementalUpdate();
|
2020-08-23 18:24:05 +03:00
|
|
|
void noMessagesAvailable();
|
2020-08-23 00:49:02 +03:00
|
|
|
void newMessageReceived();
|
2020-08-22 22:43:20 +03:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void handleMessagesReceived(const QVariantList &messages);
|
2020-08-23 00:49:02 +03:00
|
|
|
void handleNewMessageReceived(const QString &chatId, const QVariantMap &message);
|
2020-08-22 22:43:20 +03:00
|
|
|
|
2020-08-22 18:30:02 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
TDLibWrapper *tdLibWrapper;
|
|
|
|
QVariantList messages;
|
|
|
|
QVariantList messagesToBeAdded;
|
|
|
|
QVariantMap messageIndexMap;
|
2020-08-22 22:43:20 +03:00
|
|
|
QMutex messagesMutex;
|
|
|
|
QString chatId;
|
|
|
|
bool inReload;
|
2020-08-26 23:52:06 +03:00
|
|
|
bool inIncrementalUpdate;
|
2020-08-23 00:49:02 +03:00
|
|
|
|
|
|
|
void insertMessages();
|
2020-08-22 18:30:02 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHATMODEL_H
|