harbour-fernschreiber/src/chatmodel.h

51 lines
1.4 KiB
C
Raw Normal View History

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;
Q_INVOKABLE void initialize(const QVariantMap &chatInformation);
2020-08-26 23:52:06 +03:00
Q_INVOKABLE void triggerLoadMoreHistory();
2020-08-22 22:43:20 +03:00
signals:
void messagesReceived(const int &modelIndex);
void messagesIncrementalUpdate(const int &modelIndex);
2020-08-23 00:49:02 +03:00
void newMessageReceived();
void unreadCountUpdated(const int &unreadCount);
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);
void handleChatReadInboxUpdated(const QString &chatId, const int &unreadCount);
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;
QVariantMap chatInformation;
2020-08-22 22:43:20 +03:00
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-28 11:41:18 +03:00
QVariantMap enhanceMessage(const QVariantMap &message);
2020-08-22 18:30:02 +03:00
};
#endif // CHATMODEL_H