2020-09-02 23:49:15 +03:00
|
|
|
/*
|
2020-10-19 20:34:47 +03:00
|
|
|
Copyright (C) 2020 Sebastian J. Wolf and other contributors
|
2020-09-02 23:49:15 +03:00
|
|
|
|
|
|
|
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-19 10:55:13 +03:00
|
|
|
#ifndef CHATLISTMODEL_H
|
|
|
|
#define CHATLISTMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include "tdlibwrapper.h"
|
|
|
|
|
|
|
|
class ChatListModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-10-04 04:27:49 +03:00
|
|
|
Q_PROPERTY(bool showAllChats READ showAllChats WRITE setShowAllChats NOTIFY showAllChatsChanged)
|
|
|
|
|
2020-08-19 10:55:13 +03:00
|
|
|
public:
|
|
|
|
ChatListModel(TDLibWrapper *tdLibWrapper);
|
|
|
|
~ChatListModel() override;
|
|
|
|
|
2020-10-01 00:59:12 +03:00
|
|
|
virtual QHash<int,QByteArray> roleNames() const override;
|
2020-08-19 10:55:13 +03:00
|
|
|
virtual int rowCount(const QModelIndex&) const override;
|
|
|
|
virtual QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
|
2020-09-20 01:13:42 +03:00
|
|
|
Q_INVOKABLE void redrawModel();
|
2020-10-19 13:20:02 +03:00
|
|
|
Q_INVOKABLE QVariantMap get(int row);
|
2020-11-20 21:08:05 +03:00
|
|
|
Q_INVOKABLE QVariantMap getById(qlonglong chatId);
|
2020-08-20 19:45:56 +03:00
|
|
|
|
2020-10-04 04:27:49 +03:00
|
|
|
bool showAllChats() const;
|
|
|
|
void setShowAllChats(bool showAll);
|
|
|
|
|
2020-09-27 17:18:14 +03:00
|
|
|
private slots:
|
2020-08-19 10:55:13 +03:00
|
|
|
void handleChatDiscovered(const QString &chatId, const QVariantMap &chatInformation);
|
2020-08-20 15:58:32 +03:00
|
|
|
void handleChatLastMessageUpdated(const QString &chatId, const QString &order, const QVariantMap &lastMessage);
|
2020-08-20 01:24:24 +03:00
|
|
|
void handleChatOrderUpdated(const QString &chatId, const QString &order);
|
2020-10-01 00:59:12 +03:00
|
|
|
void handleChatReadInboxUpdated(const QString &chatId, const QString &lastReadInboxMessageId, int unreadCount);
|
2020-08-31 22:51:52 +03:00
|
|
|
void handleChatReadOutboxUpdated(const QString &chatId, const QString &lastReadOutboxMessageId);
|
2020-11-15 07:11:10 +03:00
|
|
|
void handleChatPhotoUpdated(qlonglong chatId, const QVariantMap &photo);
|
2020-11-17 14:18:46 +03:00
|
|
|
void handleChatPinnedMessageUpdated(qlonglong chatId, qlonglong pinnedMessageId);
|
2020-08-31 22:51:52 +03:00
|
|
|
void handleMessageSendSucceeded(const QString &messageId, const QString &oldMessageId, const QVariantMap &message);
|
2020-09-16 21:43:36 +03:00
|
|
|
void handleChatNotificationSettingsUpdated(const QString &chatId, const QVariantMap &chatNotificationSettings);
|
2020-10-04 04:27:49 +03:00
|
|
|
void handleGroupUpdated(qlonglong groupId);
|
2020-10-01 00:59:12 +03:00
|
|
|
void handleRelativeTimeRefreshTimer();
|
2020-08-19 10:55:13 +03:00
|
|
|
|
2020-10-04 04:27:49 +03:00
|
|
|
signals:
|
|
|
|
void showAllChatsChanged();
|
2020-10-04 17:06:20 +03:00
|
|
|
void chatChanged(const qlonglong &changedChatId);
|
2020-11-07 22:29:44 +03:00
|
|
|
void chatJoined(const qlonglong &chatId, const QString &chatTitle);
|
2020-08-20 11:50:47 +03:00
|
|
|
|
2020-09-27 17:18:14 +03:00
|
|
|
private:
|
|
|
|
class ChatData;
|
2020-10-04 04:27:49 +03:00
|
|
|
void addVisibleChat(ChatData *chat);
|
|
|
|
void updateChatVisibility(const TDLibWrapper::Group *group);
|
|
|
|
int updateChatOrder(int chatIndex);
|
2020-08-20 18:06:47 +03:00
|
|
|
|
2020-10-04 04:27:49 +03:00
|
|
|
private:
|
2020-09-27 17:18:14 +03:00
|
|
|
TDLibWrapper *tdLibWrapper;
|
2020-10-01 00:59:12 +03:00
|
|
|
QTimer *relativeTimeRefreshTimer;
|
2020-09-27 17:18:14 +03:00
|
|
|
QList<ChatData*> chatList;
|
2020-10-04 04:27:49 +03:00
|
|
|
QHash<qlonglong,int> chatIndexMap;
|
|
|
|
QHash<qlonglong,ChatData*> hiddenChats;
|
|
|
|
bool showHiddenChats;
|
2020-08-19 10:55:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHATLISTMODEL_H
|