calls_emoji_fingerprint.h 597 B

123456789101112131415161718192021222324252627
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #pragma once
  8. #include "base/object_ptr.h"
  9. namespace Ui {
  10. class RpWidget;
  11. } // namespace Ui
  12. namespace Calls {
  13. class Call;
  14. [[nodiscard]] std::vector<EmojiPtr> ComputeEmojiFingerprint(
  15. not_null<Call*> call);
  16. [[nodiscard]] object_ptr<Ui::RpWidget> CreateFingerprintAndSignalBars(
  17. not_null<QWidget*> parent,
  18. not_null<Call*> call);
  19. } // namespace Calls