2021-09-07 15:44:01 +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 "base/unique_qptr.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
namespace Menu {
|
|
|
|
class ItemBase;
|
|
|
|
} // namespace Menu
|
|
|
|
|
|
|
|
class PopupMenu;
|
|
|
|
|
|
|
|
struct WhoReadParticipant {
|
|
|
|
QString name;
|
2021-09-08 21:10:49 +00:00
|
|
|
QImage userpicSmall;
|
|
|
|
QImage userpicLarge;
|
2021-09-07 15:44:01 +00:00
|
|
|
std::pair<uint64, uint64> userpicKey = {};
|
|
|
|
uint64 id = 0;
|
2021-09-08 21:10:49 +00:00
|
|
|
|
|
|
|
static constexpr auto kMaxSmallUserpics = 3;
|
2021-09-07 15:44:01 +00:00
|
|
|
};
|
|
|
|
|
2021-09-07 18:31:13 +00:00
|
|
|
bool operator==(const WhoReadParticipant &a, const WhoReadParticipant &b);
|
|
|
|
bool operator!=(const WhoReadParticipant &a, const WhoReadParticipant &b);
|
|
|
|
|
|
|
|
enum class WhoReadType {
|
|
|
|
Seen,
|
|
|
|
Listened,
|
|
|
|
Watched,
|
|
|
|
};
|
|
|
|
|
2021-09-07 15:44:01 +00:00
|
|
|
struct WhoReadContent {
|
|
|
|
std::vector<WhoReadParticipant> participants;
|
2021-09-07 18:31:13 +00:00
|
|
|
WhoReadType type = WhoReadType::Seen;
|
2021-09-07 15:44:01 +00:00
|
|
|
bool unknown = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
[[nodiscard]] base::unique_qptr<Menu::ItemBase> WhoReadContextAction(
|
|
|
|
not_null<PopupMenu*> menu,
|
|
|
|
rpl::producer<WhoReadContent> content,
|
|
|
|
Fn<void(uint64)> participantChosen);
|
|
|
|
|
|
|
|
} // namespace Ui
|