tdesktop/Telegram/SourceFiles/data/data_feed.h

114 lines
3.1 KiB
C
Raw Normal View History

2018-01-04 09:40:58 +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"
2018-01-09 17:08:31 +00:00
#include "data/data_messages.h"
2018-01-04 09:40:58 +00:00
class ChannelData;
namespace Data {
class Session;
class Feed;
enum class FeedUpdateFlag {
Channels,
ChannelPhoto,
};
struct FeedUpdate {
not_null<Data::Feed*> feed;
FeedUpdateFlag flag;
};
2018-01-09 17:08:31 +00:00
MessagePosition FeedPositionFromMTP(const MTPFeedPosition &position);
class Feed : public Dialogs::Entry {
2018-01-04 09:40:58 +00:00
public:
static constexpr auto kId = 1;
static constexpr auto kChannelsLimit = 1000;
Feed(FeedId id, not_null<Data::Session*> parent);
2018-01-04 09:40:58 +00:00
FeedId id() const;
2018-01-04 09:40:58 +00:00
void registerOne(not_null<ChannelData*> channel);
void unregisterOne(not_null<ChannelData*> channel);
void updateLastMessage(not_null<HistoryItem*> item);
void messageRemoved(not_null<HistoryItem*> item);
void historyCleared(not_null<History*> history);
void applyDialog(const MTPDdialogFeed &data);
void setUnreadCounts(int unreadNonMutedCount, int unreadMutedCount);
void setUnreadPosition(const MessagePosition &position);
void unreadCountChanged(
int unreadCountDelta,
int mutedCountDelta);
2018-02-04 19:57:03 +00:00
rpl::producer<int> unreadCountValue() const;
MessagePosition unreadPosition() const;
rpl::producer<MessagePosition> unreadPositionChanges() const;
HistoryItem *lastMessage() const;
bool lastMessageKnown() const;
int unreadCount() const;
bool unreadCountKnown() const;
bool toImportant() const override;
bool shouldBeInChatList() const override;
int chatListUnreadCount() const override;
bool chatListMutedBadge() const override;
HistoryItem *chatsListItem() const override;
const QString &chatsListName() const override;
const base::flat_set<QString> &chatsListNameWords() const override;
const base::flat_set<QChar> &chatsListFirstLetters() const override;
void changedInChatListHook(Dialogs::Mode list, bool added) override;
void loadUserpic() override;
void paintUserpic(
Painter &p,
int x,
int y,
int size) const override;
const std::vector<not_null<History*>> &channels() const;
2018-01-29 17:13:24 +00:00
int32 channelsHash() const;
bool channelsLoaded() const;
void setChannelsLoaded(bool loaded);
void setChannels(std::vector<not_null<ChannelData*>> channels);
2018-01-04 09:40:58 +00:00
private:
void indexNameParts();
void recountLastMessage();
void setLastMessageFromChannels();
bool justUpdateLastMessage(not_null<HistoryItem*> item);
void updateChatsListDate();
void changeChannelsList(
const std::vector<not_null<ChannelData*>> &add,
const std::vector<not_null<ChannelData*>> &remove);
2018-01-04 09:40:58 +00:00
FeedId _id = 0;
not_null<Data::Session*> _parent;
std::vector<not_null<History*>> _channels;
bool _settingChannels = false;
bool _channelsLoaded = false;
QString _name;
base::flat_set<QString> _nameWords;
base::flat_set<QChar> _nameFirstLetters;
base::optional<HistoryItem*> _lastMessage;
2018-01-09 17:08:31 +00:00
rpl::variable<MessagePosition> _unreadPosition;
base::optional<int> _unreadCount;
2018-02-04 19:57:03 +00:00
rpl::event_stream<int> _unreadCountChanges;
2018-01-04 09:40:58 +00:00
int _unreadMutedCount = 0;
};
} // namespace Data