193 lines
5.4 KiB
C++
193 lines
5.4 KiB
C++
/*
|
|
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 "data/data_thread.h"
|
|
#include "data/notify/data_peer_notify_settings.h"
|
|
#include "base/flags.h"
|
|
|
|
class ChannelData;
|
|
|
|
namespace style {
|
|
struct ForumTopicIcon;
|
|
} // namespace style
|
|
|
|
namespace Dialogs {
|
|
class MainList;
|
|
} // namespace Dialogs
|
|
|
|
namespace Main {
|
|
class Session;
|
|
} // namespace Main
|
|
|
|
namespace HistoryView {
|
|
class SendActionPainter;
|
|
} // namespace HistoryView
|
|
|
|
namespace Data {
|
|
|
|
class RepliesList;
|
|
class Session;
|
|
class Forum;
|
|
|
|
[[nodiscard]] const base::flat_map<int32, QString> &ForumTopicIcons();
|
|
[[nodiscard]] const std::vector<int32> &ForumTopicColorIds();
|
|
[[nodiscard]] const QString &ForumTopicIcon(int32 colorId);
|
|
[[nodiscard]] QString ForumTopicIconPath(const QString &name);
|
|
[[nodiscard]] QImage ForumTopicIconBackground(int32 colorId, int size);
|
|
[[nodiscard]] QImage ForumTopicIconFrame(
|
|
int32 colorId,
|
|
const QString &title,
|
|
const style::ForumTopicIcon &st);
|
|
|
|
class ForumTopic final : public Thread {
|
|
public:
|
|
ForumTopic(not_null<Forum*> forum, MsgId rootId);
|
|
~ForumTopic();
|
|
|
|
not_null<History*> owningHistory() override {
|
|
return history();
|
|
}
|
|
|
|
[[nodiscard]] std::shared_ptr<RepliesList> replies() const;
|
|
[[nodiscard]] not_null<ChannelData*> channel() const;
|
|
[[nodiscard]] not_null<History*> history() const;
|
|
[[nodiscard]] not_null<Forum*> forum() const;
|
|
[[nodiscard]] rpl::producer<> destroyed() const;
|
|
[[nodiscard]] MsgId rootId() const;
|
|
[[nodiscard]] TimeId creationDate() const;
|
|
|
|
[[nodiscard]] bool my() const;
|
|
[[nodiscard]] bool canWrite() const;
|
|
[[nodiscard]] bool canEdit() const;
|
|
[[nodiscard]] bool canToggleClosed() const;
|
|
[[nodiscard]] bool canTogglePinned() const;
|
|
[[nodiscard]] bool canDelete() const;
|
|
|
|
[[nodiscard]] bool closed() const;
|
|
void setClosed(bool closed);
|
|
void setClosedAndSave(bool closed);
|
|
|
|
[[nodiscard]] bool creating() const;
|
|
void discard();
|
|
|
|
void setRealRootId(MsgId realId);
|
|
void readTillEnd();
|
|
|
|
void applyTopic(const MTPDforumTopic &data);
|
|
|
|
TimeId adjustedChatListTimeId() const override;
|
|
|
|
int fixedOnTopIndex() const override;
|
|
bool shouldBeInChatList() const override;
|
|
Dialogs::UnreadState chatListUnreadState() const override;
|
|
Dialogs::BadgesState chatListBadgesState() 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;
|
|
|
|
void hasUnreadMentionChanged(bool has) override;
|
|
void hasUnreadReactionChanged(bool has) override;
|
|
|
|
[[nodiscard]] HistoryItem *lastMessage() const;
|
|
[[nodiscard]] HistoryItem *lastServerMessage() const;
|
|
[[nodiscard]] bool lastMessageKnown() const;
|
|
[[nodiscard]] bool lastServerMessageKnown() const;
|
|
[[nodiscard]] MsgId lastKnownServerMessageId() const;
|
|
|
|
[[nodiscard]] QString title() const;
|
|
void applyTitle(const QString &title);
|
|
[[nodiscard]] DocumentId iconId() const;
|
|
void applyIconId(DocumentId iconId);
|
|
[[nodiscard]] int32 colorId() const;
|
|
void applyColorId(int32 colorId);
|
|
void applyItemAdded(not_null<HistoryItem*> item);
|
|
void applyItemRemoved(MsgId id);
|
|
void maybeSetLastMessage(not_null<HistoryItem*> item);
|
|
|
|
[[nodiscard]] PeerNotifySettings ¬ify() {
|
|
return _notify;
|
|
}
|
|
[[nodiscard]] const PeerNotifySettings ¬ify() const {
|
|
return _notify;
|
|
}
|
|
|
|
void loadUserpic() override;
|
|
void paintUserpic(
|
|
Painter &p,
|
|
std::shared_ptr<CloudImageView> &view,
|
|
const Dialogs::Ui::PaintContext &context) const override;
|
|
|
|
[[nodiscard]] bool isServerSideUnread(
|
|
not_null<const HistoryItem*> item) const override;
|
|
|
|
void setMuted(bool muted) override;
|
|
|
|
[[nodiscard]] auto sendActionPainter()
|
|
->not_null<HistoryView::SendActionPainter*> override;
|
|
|
|
private:
|
|
enum class Flag : uchar {
|
|
Closed = (1 << 0),
|
|
My = (1 << 1),
|
|
HasPinnedMessages = (1 << 2),
|
|
};
|
|
friend inline constexpr bool is_flag_type(Flag) { return true; }
|
|
using Flags = base::flags<Flag>;
|
|
|
|
void indexTitleParts();
|
|
void validateDefaultIcon() const;
|
|
void applyTopicTopMessage(MsgId topMessageId);
|
|
void growLastKnownServerMessageId(MsgId id);
|
|
|
|
void setLastMessage(HistoryItem *item);
|
|
void setLastServerMessage(HistoryItem *item);
|
|
void setChatListMessage(HistoryItem *item);
|
|
|
|
int chatListNameVersion() const override;
|
|
|
|
[[nodiscard]] Dialogs::UnreadState unreadStateFor(
|
|
int count,
|
|
bool known) const;
|
|
|
|
const not_null<Forum*> _forum;
|
|
const not_null<Dialogs::MainList*> _list;
|
|
std::shared_ptr<RepliesList> _replies;
|
|
std::shared_ptr<HistoryView::SendActionPainter> _sendActionPainter;
|
|
MsgId _rootId = 0;
|
|
MsgId _lastKnownServerMessageId = 0;
|
|
|
|
PeerNotifySettings _notify;
|
|
|
|
QString _title;
|
|
DocumentId _iconId = 0;
|
|
base::flat_set<QString> _titleWords;
|
|
base::flat_set<QChar> _titleFirstLetters;
|
|
int _titleVersion = 0;
|
|
TimeId _creationDate = 0;
|
|
int32 _colorId = 0;
|
|
Flags _flags;
|
|
|
|
std::unique_ptr<Ui::Text::CustomEmoji> _icon;
|
|
mutable QImage _defaultIcon; // on-demand
|
|
|
|
std::optional<HistoryItem*> _lastMessage;
|
|
std::optional<HistoryItem*> _lastServerMessage;
|
|
std::optional<HistoryItem*> _chatListMessage;
|
|
base::flat_set<FullMsgId> _requestedGroups;
|
|
|
|
rpl::lifetime _lifetime;
|
|
|
|
};
|
|
|
|
} // namespace Data
|