| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- 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 "mtproto/sender.h"
- class ApiWrap;
- namespace Main {
- class Session;
- } // namespace Main
- namespace Api {
- class Transcribes final {
- public:
- explicit Transcribes(not_null<ApiWrap*> api);
- struct Entry {
- QString result;
- bool shown = false;
- bool failed = false;
- bool toolong = false;
- bool pending = false;
- bool roundview = false;
- mtpRequestId requestId = 0;
- };
- void toggle(not_null<HistoryItem*> item);
- [[nodiscard]] const Entry &entry(not_null<HistoryItem*> item) const;
- void apply(const MTPDupdateTranscribedAudio &update);
- [[nodiscard]] bool freeFor(not_null<HistoryItem*> item) const;
- [[nodiscard]] bool trialsSupport();
- [[nodiscard]] TimeId trialsRefreshAt();
- [[nodiscard]] int trialsCount();
- [[nodiscard]] crl::time trialsMaxLengthMs() const;
- private:
- void load(not_null<HistoryItem*> item);
- const not_null<Main::Session*> _session;
- MTP::Sender _api;
- int _trialsCount = -1;
- std::optional<bool> _trialsSupport;
- TimeId _trialsRefreshAt = -1;
- base::flat_map<FullMsgId, Entry> _map;
- base::flat_map<uint64, FullMsgId> _ids;
- };
- } // namespace Api
|