init
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
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
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
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
63
Telegram/SourceFiles/dialogs/dialogs_pinned_list.h
Normal file
63
Telegram/SourceFiles/dialogs/dialogs_pinned_list.h
Normal file
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
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
|
||||
Reference in New Issue
Block a user