harbour-fernschreiber/src/chatmodel.h

76 lines
2.7 KiB
C
Raw Normal View History

2020-09-02 23:49:15 +03:00
/*
Copyright (C) 2020 Sebastian J. Wolf
This file is part of Fernschreiber.
Fernschreiber is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Fernschreiber is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
*/
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:
2020-08-30 20:04:16 +03:00
void messagesReceived(const int &modelIndex, const int &lastReadSentIndex);
void messagesIncrementalUpdate(const int &modelIndex, const int &lastReadSentIndex);
2020-08-23 00:49:02 +03:00
void newMessageReceived();
void unreadCountUpdated(const int &unreadCount, const QString &lastReadInboxMessageId);
2020-08-30 20:04:16 +03:00
void lastReadSentMessageUpdated(const int &lastReadSentIndex);
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 QString &lastReadInboxMessageId, const int &unreadCount);
2020-08-30 20:04:16 +03:00
void handleChatReadOutboxUpdated(const QString &chatId, const QString &lastReadOutboxMessageId);
void handleMessageSendSucceeded(const QString &messageId, const QString &oldMessageId, 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;
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-30 20:04:16 +03:00
int calculateLastKnownMessageId();
int calculateLastReadSentMessageId();
void calculateMessageIndexMap();
2020-08-22 18:30:02 +03:00
};
#endif // CHATMODEL_H