2017-04-25 16:45:41 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-04-25 16:45:41 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-04-25 16:45:41 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2020-08-14 12:51:47 +00:00
|
|
|
#include "base/object_ptr.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class RpWidget;
|
|
|
|
} // namespace Ui
|
|
|
|
|
2017-04-25 16:45:41 +00:00
|
|
|
namespace Calls {
|
|
|
|
|
|
|
|
class Call;
|
|
|
|
|
2020-08-14 12:51:47 +00:00
|
|
|
[[nodiscard]] std::vector<EmojiPtr> ComputeEmojiFingerprint(
|
|
|
|
not_null<Call*> call);
|
|
|
|
|
|
|
|
[[nodiscard]] object_ptr<Ui::RpWidget> CreateFingerprintAndSignalBars(
|
|
|
|
not_null<QWidget*> parent,
|
|
|
|
not_null<Call*> call);
|
2017-04-25 16:45:41 +00:00
|
|
|
|
|
|
|
} // namespace Calls
|