tdesktop/Telegram/SourceFiles/data/data_feed.h

94 lines
2.2 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 {
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:
Feed(FeedId id);
FeedId id() const {
return _id;
}
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);
2018-01-04 09:40:58 +00:00
void setUnreadCounts(int unreadCount, int unreadMutedCount);
2018-01-09 17:08:31 +00:00
void setUnreadPosition(const MessagePosition &position) {
_unreadPosition = position;
}
MessagePosition unreadPosition() const {
return _unreadPosition.current();
}
rpl::producer<MessagePosition> unreadPositionChanges() const {
return _unreadPosition.changes();
}
2018-01-04 09:40:58 +00:00
bool toImportant() const override {
return false; // TODO feeds workmode
}
int chatListUnreadCount() const override {
return _unreadCount;
}
bool chatListMutedBadge() const override {
return _unreadCount <= _unreadMutedCount;
}
HistoryItem *chatsListItem() const override {
return _lastMessage;
}
const QString &chatsListName() const override {
return _name;
}
const base::flat_set<QString> &chatsListNameWords() const override {
return _nameWords;
}
const base::flat_set<QChar> &chatsListFirstLetters() const override {
return _nameFirstLetters;
}
void loadUserpic() override;
void paintUserpic(
Painter &p,
int x,
int y,
int size) const override;
2018-01-04 09:40:58 +00:00
private:
void indexNameParts();
void recountLastMessage();
bool justSetLastMessage(not_null<HistoryItem*> item);
2018-01-04 09:40:58 +00:00
FeedId _id = 0;
std::vector<not_null<History*>> _channels;
QString _name;
base::flat_set<QString> _nameWords;
base::flat_set<QChar> _nameFirstLetters;
HistoryItem *_lastMessage = nullptr;
2018-01-09 17:08:31 +00:00
rpl::variable<MessagePosition> _unreadPosition;
2018-01-04 09:40:58 +00:00
int _unreadCount = 0;
int _unreadMutedCount = 0;
bool _complete = false;
};
} // namespace Data