2022-09-20 18:12:30 +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 "dialogs/dialogs_entry.h"
|
2022-09-23 19:21:31 +00:00
|
|
|
#include "dialogs/ui/dialogs_message_view.h"
|
2022-09-20 18:12:30 +00:00
|
|
|
|
|
|
|
class ChannelData;
|
|
|
|
|
|
|
|
namespace Dialogs {
|
|
|
|
class MainList;
|
|
|
|
} // namespace Dialogs
|
|
|
|
|
|
|
|
namespace Main {
|
|
|
|
class Session;
|
|
|
|
} // namespace Main
|
|
|
|
|
|
|
|
namespace Data {
|
|
|
|
|
|
|
|
class Session;
|
2022-09-27 16:52:35 +00:00
|
|
|
class Forum;
|
2022-09-20 18:12:30 +00:00
|
|
|
|
|
|
|
class ForumTopic final : public Dialogs::Entry {
|
|
|
|
public:
|
2022-09-26 13:37:32 +00:00
|
|
|
static constexpr auto kGeneralId = 1;
|
|
|
|
|
2022-09-27 16:52:35 +00:00
|
|
|
ForumTopic(not_null<History*> history, MsgId rootId);
|
2022-10-04 15:34:45 +00:00
|
|
|
~ForumTopic();
|
2022-09-20 18:12:30 +00:00
|
|
|
|
|
|
|
ForumTopic(const ForumTopic &) = delete;
|
|
|
|
ForumTopic &operator=(const ForumTopic &) = delete;
|
|
|
|
|
2022-09-27 12:05:47 +00:00
|
|
|
[[nodiscard]] not_null<ChannelData*> channel() const;
|
2022-09-27 16:52:35 +00:00
|
|
|
[[nodiscard]] not_null<History*> history() const;
|
|
|
|
[[nodiscard]] not_null<Forum*> forum() const;
|
2022-09-20 18:12:30 +00:00
|
|
|
[[nodiscard]] MsgId rootId() const;
|
2022-09-26 13:37:32 +00:00
|
|
|
[[nodiscard]] bool isGeneral() const {
|
|
|
|
return (_rootId == kGeneralId);
|
|
|
|
}
|
2022-09-20 18:12:30 +00:00
|
|
|
|
2022-10-04 15:34:45 +00:00
|
|
|
void setRealRootId(MsgId realId);
|
|
|
|
|
2022-09-20 18:12:30 +00:00
|
|
|
void applyTopic(const MTPForumTopic &topic);
|
|
|
|
|
|
|
|
TimeId adjustedChatListTimeId() const override;
|
|
|
|
|
|
|
|
int fixedOnTopIndex() const override;
|
|
|
|
bool shouldBeInChatList() const override;
|
|
|
|
int chatListUnreadCount() const override;
|
|
|
|
bool chatListUnreadMark() const override;
|
|
|
|
bool chatListMutedBadge() const override;
|
|
|
|
Dialogs::UnreadState chatListUnreadState() const override;
|
|
|
|
HistoryItem *chatListMessage() const override;
|
|
|
|
bool chatListMessageKnown() const override;
|
|
|
|
void requestChatListMessage() override;
|
|
|
|
const QString &chatListName() const override;
|
|
|
|
const QString &chatListNameSortKey() const override;
|
|
|
|
const base::flat_set<QString> &chatListNameWords() const override;
|
|
|
|
const base::flat_set<QChar> &chatListFirstLetters() const override;
|
|
|
|
|
|
|
|
[[nodiscard]] HistoryItem *lastMessage() const;
|
|
|
|
[[nodiscard]] HistoryItem *lastServerMessage() const;
|
|
|
|
[[nodiscard]] bool lastMessageKnown() const;
|
|
|
|
[[nodiscard]] bool lastServerMessageKnown() const;
|
|
|
|
|
2022-09-27 12:05:47 +00:00
|
|
|
[[nodiscard]] QString title() const;
|
2022-09-23 19:21:31 +00:00
|
|
|
void applyTitle(const QString &title);
|
2022-09-27 12:05:47 +00:00
|
|
|
[[nodiscard]] DocumentId iconId() const;
|
|
|
|
void applyIconId(DocumentId iconId);
|
2022-09-23 19:21:31 +00:00
|
|
|
void applyItemAdded(not_null<HistoryItem*> item);
|
|
|
|
void applyItemRemoved(MsgId id);
|
|
|
|
|
2022-09-20 18:12:30 +00:00
|
|
|
void loadUserpic() override;
|
|
|
|
void paintUserpic(
|
|
|
|
Painter &p,
|
|
|
|
std::shared_ptr<Data::CloudImageView> &view,
|
2022-09-29 10:33:17 +00:00
|
|
|
const Dialogs::Ui::PaintContext &context) const override;
|
2022-09-20 18:12:30 +00:00
|
|
|
|
|
|
|
[[nodiscard]] int unreadCount() const;
|
|
|
|
[[nodiscard]] bool unreadCountKnown() const;
|
|
|
|
|
|
|
|
[[nodiscard]] int unreadCountForBadge() const; // unreadCount || unreadMark ? 1 : 0.
|
|
|
|
|
|
|
|
void setUnreadCount(int newUnreadCount);
|
|
|
|
void setUnreadMark(bool unread);
|
|
|
|
[[nodiscard]] bool unreadMark() const;
|
|
|
|
|
2022-09-23 19:21:31 +00:00
|
|
|
Ui::Text::String cloudDraftTextCache;
|
|
|
|
Dialogs::Ui::MessageView lastItemDialogsView;
|
|
|
|
|
2022-09-20 18:12:30 +00:00
|
|
|
private:
|
|
|
|
void indexTitleParts();
|
|
|
|
void applyTopicTopMessage(MsgId topMessageId);
|
|
|
|
void applyTopicFields(
|
|
|
|
int unreadCount,
|
|
|
|
MsgId maxInboxRead,
|
|
|
|
MsgId maxOutboxRead);
|
|
|
|
|
|
|
|
void setLastMessage(HistoryItem *item);
|
|
|
|
void setLastServerMessage(HistoryItem *item);
|
|
|
|
void setChatListMessage(HistoryItem *item);
|
|
|
|
|
|
|
|
void setInboxReadTill(MsgId upTo);
|
|
|
|
void setOutboxReadTill(MsgId upTo);
|
|
|
|
|
|
|
|
int chatListNameVersion() const override;
|
|
|
|
|
2022-09-27 16:52:35 +00:00
|
|
|
const not_null<History*> _history;
|
2022-09-20 18:12:30 +00:00
|
|
|
const not_null<Dialogs::MainList*> _list;
|
2022-10-04 15:34:45 +00:00
|
|
|
MsgId _rootId = 0;
|
2022-09-20 18:12:30 +00:00
|
|
|
|
|
|
|
QString _title;
|
2022-09-27 12:05:47 +00:00
|
|
|
DocumentId _iconId = 0;
|
2022-09-20 18:12:30 +00:00
|
|
|
base::flat_set<QString> _titleWords;
|
|
|
|
base::flat_set<QChar> _titleFirstLetters;
|
|
|
|
int _titleVersion = 0;
|
|
|
|
|
2022-09-27 16:52:35 +00:00
|
|
|
std::unique_ptr<Ui::Text::CustomEmoji> _icon;
|
|
|
|
|
2022-09-20 18:12:30 +00:00
|
|
|
std::optional<MsgId> _inboxReadBefore;
|
|
|
|
std::optional<MsgId> _outboxReadBefore;
|
|
|
|
std::optional<int> _unreadCount;
|
|
|
|
std::optional<HistoryItem*> _lastMessage;
|
|
|
|
std::optional<HistoryItem*> _lastServerMessage;
|
|
|
|
std::optional<HistoryItem*> _chatListMessage;
|
|
|
|
bool _unreadMark = false;
|
|
|
|
|
|
|
|
rpl::lifetime _lifetime;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Data
|