Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
64 lines
1.3 KiB
C++
64 lines
1.3 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
|
|
|
|
class History;
|
|
|
|
namespace Data {
|
|
class SavedMessages;
|
|
class Session;
|
|
class Forum;
|
|
} // namespace Data
|
|
|
|
namespace Dialogs {
|
|
|
|
class Key;
|
|
|
|
class PinnedList final {
|
|
public:
|
|
PinnedList(FilterId filterId, int limit);
|
|
|
|
void setLimit(int limit);
|
|
|
|
// Places on the last place in the list otherwise.
|
|
// Does nothing if already pinned.
|
|
void addPinned(Key key);
|
|
|
|
// if (pinned) places on the first place in the list.
|
|
void setPinned(Key key, bool pinned);
|
|
|
|
void clear();
|
|
|
|
void applyList(
|
|
not_null<Data::Session*> owner,
|
|
const QVector<MTPDialogPeer> &list);
|
|
void applyList(
|
|
not_null<Data::SavedMessages*> sublistsOwner,
|
|
const QVector<MTPDialogPeer> &list);
|
|
void applyList(
|
|
not_null<Data::Forum*> forum,
|
|
const QVector<MTPint> &list);
|
|
void applyList(const std::vector<not_null<History*>> &list);
|
|
void reorder(Key key1, Key key2);
|
|
|
|
const std::vector<Key> &order() const {
|
|
return _data;
|
|
}
|
|
|
|
private:
|
|
int addPinnedGetPosition(Key key);
|
|
void applyLimit(int limit);
|
|
|
|
FilterId _filterId = 0;
|
|
int _limit = 0;
|
|
std::vector<Key> _data;
|
|
|
|
};
|
|
|
|
} // namespace Dialogs
|