2018-01-05 15:57:18 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "base/flat_map.h"
|
|
|
|
|
|
|
|
#include "dialogs/dialogs_key.h"
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
namespace Main {
|
|
|
|
class Session;
|
|
|
|
} // namespace Main
|
2019-04-16 14:05:56 +00:00
|
|
|
|
|
|
|
namespace Data {
|
|
|
|
class Session;
|
2019-04-17 13:22:37 +00:00
|
|
|
class Folder;
|
2020-05-28 14:32:10 +00:00
|
|
|
class CloudImageView;
|
2019-04-16 14:05:56 +00:00
|
|
|
} // namespace Data
|
|
|
|
|
2018-01-05 15:57:18 +00:00
|
|
|
namespace Dialogs {
|
|
|
|
|
|
|
|
class Row;
|
|
|
|
class IndexedList;
|
2020-03-16 10:20:18 +00:00
|
|
|
class MainList;
|
2020-02-07 09:43:12 +00:00
|
|
|
|
|
|
|
struct RowsByLetter {
|
|
|
|
not_null<Row*> main;
|
|
|
|
base::flat_map<QChar, not_null<Row*>> letters;
|
|
|
|
};
|
2018-01-05 15:57:18 +00:00
|
|
|
|
|
|
|
enum class SortMode {
|
2020-03-17 13:04:30 +00:00
|
|
|
Date = 0x00,
|
|
|
|
Name = 0x01,
|
|
|
|
Add = 0x02,
|
2018-01-05 15:57:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct PositionChange {
|
2019-04-16 14:05:56 +00:00
|
|
|
int from = -1;
|
|
|
|
int to = -1;
|
2018-01-05 15:57:18 +00:00
|
|
|
};
|
|
|
|
|
2019-04-22 14:22:39 +00:00
|
|
|
struct UnreadState {
|
2019-04-24 15:28:01 +00:00
|
|
|
int messages = 0;
|
|
|
|
int messagesMuted = 0;
|
|
|
|
int chats = 0;
|
|
|
|
int chatsMuted = 0;
|
|
|
|
int marks = 0;
|
|
|
|
int marksMuted = 0;
|
|
|
|
bool known = false;
|
|
|
|
|
|
|
|
UnreadState &operator+=(const UnreadState &other) {
|
|
|
|
messages += other.messages;
|
|
|
|
messagesMuted += other.messagesMuted;
|
|
|
|
chats += other.chats;
|
|
|
|
chatsMuted += other.chatsMuted;
|
|
|
|
marks += other.marks;
|
|
|
|
marksMuted += other.marksMuted;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
UnreadState &operator-=(const UnreadState &other) {
|
|
|
|
messages -= other.messages;
|
|
|
|
messagesMuted -= other.messagesMuted;
|
|
|
|
chats -= other.chats;
|
|
|
|
chatsMuted -= other.chatsMuted;
|
|
|
|
marks -= other.marks;
|
|
|
|
marksMuted -= other.marksMuted;
|
|
|
|
return *this;
|
|
|
|
}
|
2019-04-23 12:29:23 +00:00
|
|
|
|
|
|
|
bool empty() const {
|
2019-04-24 15:28:01 +00:00
|
|
|
return !messages && !chats && !marks;
|
2019-04-23 12:29:23 +00:00
|
|
|
}
|
2019-04-22 14:22:39 +00:00
|
|
|
};
|
|
|
|
|
2019-04-24 15:28:01 +00:00
|
|
|
inline UnreadState operator+(const UnreadState &a, const UnreadState &b) {
|
|
|
|
auto result = a;
|
|
|
|
result += b;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline UnreadState operator-(const UnreadState &a, const UnreadState &b) {
|
|
|
|
auto result = a;
|
|
|
|
result -= b;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-01-05 15:57:18 +00:00
|
|
|
class Entry {
|
|
|
|
public:
|
2020-06-12 14:09:04 +00:00
|
|
|
enum class Type {
|
|
|
|
History,
|
|
|
|
Folder,
|
|
|
|
};
|
|
|
|
Entry(not_null<Data::Session*> owner, Type type);
|
2019-04-16 08:50:59 +00:00
|
|
|
Entry(const Entry &other) = delete;
|
|
|
|
Entry &operator=(const Entry &other) = delete;
|
|
|
|
virtual ~Entry() = default;
|
2018-01-05 15:57:18 +00:00
|
|
|
|
2020-02-07 09:43:12 +00:00
|
|
|
[[nodiscard]] Data::Session &owner() const;
|
|
|
|
[[nodiscard]] Main::Session &session() const;
|
2019-04-16 14:05:56 +00:00
|
|
|
|
2020-06-12 14:09:04 +00:00
|
|
|
History *asHistory();
|
|
|
|
Data::Folder *asFolder();
|
|
|
|
|
2020-03-16 10:20:18 +00:00
|
|
|
PositionChange adjustByPosInChatList(
|
|
|
|
FilterId filterId,
|
|
|
|
not_null<MainList*> list);
|
2020-02-07 09:43:12 +00:00
|
|
|
[[nodiscard]] bool inChatList(FilterId filterId = 0) const {
|
|
|
|
return _chatListLinks.contains(filterId);
|
2018-01-05 15:57:18 +00:00
|
|
|
}
|
2020-06-12 14:09:04 +00:00
|
|
|
RowsByLetter *chatListLinks(FilterId filterId);
|
|
|
|
const RowsByLetter *chatListLinks(FilterId filterId) const;
|
2020-02-07 09:43:12 +00:00
|
|
|
[[nodiscard]] int posInChatList(FilterId filterId) const;
|
2020-03-16 10:20:18 +00:00
|
|
|
not_null<Row*> addToChatList(
|
|
|
|
FilterId filterId,
|
|
|
|
not_null<MainList*> list);
|
|
|
|
void removeFromChatList(
|
|
|
|
FilterId filterId,
|
|
|
|
not_null<MainList*> list);
|
2020-02-07 09:43:12 +00:00
|
|
|
void removeChatListEntryByLetter(FilterId filterId, QChar letter);
|
2018-01-05 15:57:18 +00:00
|
|
|
void addChatListEntryByLetter(
|
2020-02-07 09:43:12 +00:00
|
|
|
FilterId filterId,
|
2018-01-05 15:57:18 +00:00
|
|
|
QChar letter,
|
|
|
|
not_null<Row*> row);
|
2020-06-12 14:09:04 +00:00
|
|
|
void updateChatListEntry();
|
2020-03-17 13:04:30 +00:00
|
|
|
[[nodiscard]] bool isPinnedDialog(FilterId filterId) const {
|
|
|
|
return lookupPinnedIndex(filterId) != 0;
|
2018-01-05 15:57:18 +00:00
|
|
|
}
|
2020-03-17 13:04:30 +00:00
|
|
|
void cachePinnedIndex(FilterId filterId, int index);
|
2020-04-24 12:40:20 +00:00
|
|
|
[[nodiscard]] bool isTopPromoted() const;
|
2020-03-17 13:04:30 +00:00
|
|
|
[[nodiscard]] uint64 sortKeyInChatList(FilterId filterId) const {
|
|
|
|
return filterId
|
|
|
|
? computeSortPosition(filterId)
|
|
|
|
: _sortKeyInChatList;
|
2020-03-09 11:17:56 +00:00
|
|
|
}
|
2018-01-05 15:57:18 +00:00
|
|
|
void updateChatListSortPosition();
|
2019-01-15 11:57:45 +00:00
|
|
|
void setChatListTimeId(TimeId date);
|
2018-01-29 17:13:24 +00:00
|
|
|
virtual void updateChatListExistence();
|
2018-01-23 16:51:12 +00:00
|
|
|
bool needUpdateInChatList() const;
|
2019-04-18 09:00:38 +00:00
|
|
|
virtual TimeId adjustedChatListTimeId() const;
|
2018-01-05 15:57:18 +00:00
|
|
|
|
2019-04-18 11:31:30 +00:00
|
|
|
virtual int fixedOnTopIndex() const = 0;
|
|
|
|
static constexpr auto kArchiveFixOnTopIndex = 1;
|
2020-04-24 10:31:28 +00:00
|
|
|
static constexpr auto kTopPromotionFixOnTopIndex = 2;
|
2019-04-18 11:31:30 +00:00
|
|
|
|
2018-01-23 16:51:12 +00:00
|
|
|
virtual bool shouldBeInChatList() const = 0;
|
2018-01-05 15:57:18 +00:00
|
|
|
virtual int chatListUnreadCount() const = 0;
|
2018-06-26 18:03:45 +00:00
|
|
|
virtual bool chatListUnreadMark() const = 0;
|
2018-01-05 15:57:18 +00:00
|
|
|
virtual bool chatListMutedBadge() const = 0;
|
2019-04-22 14:22:39 +00:00
|
|
|
virtual UnreadState chatListUnreadState() const = 0;
|
2019-01-15 11:57:45 +00:00
|
|
|
virtual HistoryItem *chatListMessage() const = 0;
|
|
|
|
virtual bool chatListMessageKnown() const = 0;
|
|
|
|
virtual void requestChatListMessage() = 0;
|
|
|
|
virtual const QString &chatListName() const = 0;
|
|
|
|
virtual const base::flat_set<QString> &chatListNameWords() const = 0;
|
|
|
|
virtual const base::flat_set<QChar> &chatListFirstLetters() const = 0;
|
2018-01-05 15:57:18 +00:00
|
|
|
|
2019-04-18 09:00:38 +00:00
|
|
|
virtual bool folderKnown() const {
|
|
|
|
return true;
|
|
|
|
}
|
2019-04-17 13:22:37 +00:00
|
|
|
virtual Data::Folder *folder() const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-01-05 15:57:18 +00:00
|
|
|
virtual void loadUserpic() = 0;
|
|
|
|
virtual void paintUserpic(
|
|
|
|
Painter &p,
|
2020-05-28 14:32:10 +00:00
|
|
|
std::shared_ptr<Data::CloudImageView> &view,
|
2018-01-05 15:57:18 +00:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int size) const = 0;
|
|
|
|
void paintUserpicLeft(
|
|
|
|
Painter &p,
|
2020-05-28 14:32:10 +00:00
|
|
|
std::shared_ptr<Data::CloudImageView> &view,
|
2018-01-05 15:57:18 +00:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int w,
|
|
|
|
int size) const {
|
2020-05-28 14:32:10 +00:00
|
|
|
paintUserpic(p, view, rtl() ? (w - x - size) : x, y, size);
|
2018-01-05 15:57:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:57:45 +00:00
|
|
|
TimeId chatListTimeId() const {
|
|
|
|
return _timeId;
|
2018-01-05 15:57:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mutable const HistoryItem *textCachedFor = nullptr; // cache
|
2019-06-12 13:26:04 +00:00
|
|
|
mutable Ui::Text::String lastItemTextCache;
|
2018-01-05 15:57:18 +00:00
|
|
|
|
2019-04-22 14:22:39 +00:00
|
|
|
protected:
|
2020-03-16 10:20:18 +00:00
|
|
|
void notifyUnreadStateChange(const UnreadState &wasState);
|
2019-04-22 14:22:39 +00:00
|
|
|
auto unreadStateChangeNotifier(bool required) {
|
|
|
|
const auto notify = required && inChatList();
|
|
|
|
const auto wasState = notify ? chatListUnreadState() : UnreadState();
|
|
|
|
return gsl::finally([=] {
|
|
|
|
if (notify) {
|
|
|
|
notifyUnreadStateChange(wasState);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-17 13:04:30 +00:00
|
|
|
[[nodiscard]] int lookupPinnedIndex(FilterId filterId) const;
|
|
|
|
|
2020-04-29 08:46:02 +00:00
|
|
|
void cacheTopPromoted(bool promoted);
|
|
|
|
|
2018-01-05 15:57:18 +00:00
|
|
|
private:
|
2018-01-23 16:51:12 +00:00
|
|
|
virtual void changedChatListPinHook();
|
2020-03-17 13:04:30 +00:00
|
|
|
void pinnedIndexChanged(int was, int now);
|
|
|
|
[[nodiscard]] uint64 computeSortPosition(FilterId filterId) const;
|
2018-01-23 16:51:12 +00:00
|
|
|
|
|
|
|
void setChatListExistence(bool exists);
|
2020-02-07 09:43:12 +00:00
|
|
|
not_null<Row*> mainChatListLink(FilterId filterId) const;
|
|
|
|
Row *maybeMainChatListLink(FilterId filterId) const;
|
2018-01-05 15:57:18 +00:00
|
|
|
|
2020-06-12 14:09:04 +00:00
|
|
|
const not_null<Data::Session*> _owner;
|
2020-02-07 09:43:12 +00:00
|
|
|
base::flat_map<FilterId, RowsByLetter> _chatListLinks;
|
2018-01-05 15:57:18 +00:00
|
|
|
uint64 _sortKeyInChatList = 0;
|
2020-03-09 11:17:56 +00:00
|
|
|
uint64 _sortKeyByDate = 0;
|
2020-03-17 13:04:30 +00:00
|
|
|
base::flat_map<FilterId, int> _pinnedIndex;
|
2019-01-15 11:57:45 +00:00
|
|
|
TimeId _timeId = 0;
|
2020-04-29 08:46:02 +00:00
|
|
|
bool _isTopPromoted = false;
|
2020-06-12 14:09:04 +00:00
|
|
|
const bool _isFolder = false;
|
2018-01-05 15:57:18 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Dialogs
|