mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/*
|
|
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
|
|
|
|
#ifndef TDESKTOP_DISABLE_SPELLCHECK
|
|
|
|
#include "storage/storage_cloud_blob.h"
|
|
|
|
namespace Main {
|
|
class Session;
|
|
} // namespace Main
|
|
|
|
namespace Spellchecker {
|
|
|
|
struct Dict : public Storage::CloudBlob::Blob {
|
|
};
|
|
|
|
int GetDownloadSize(int id);
|
|
MTP::DedicatedLoader::Location GetDownloadLocation(int id);
|
|
|
|
[[nodiscard]] QString DictionariesPath();
|
|
[[nodiscard]] QString DictPathByLangId(int langId);
|
|
bool UnpackDictionary(const QString &path, int langId);
|
|
[[nodiscard]] bool DictionaryExists(int langId);
|
|
bool RemoveDictionary(int langId);
|
|
[[nodiscard]] bool IsEn(int langId);
|
|
|
|
bool WriteDefaultDictionary();
|
|
std::vector<Dict> Dictionaries();
|
|
|
|
void Start(not_null<Main::Session*> session);
|
|
[[nodiscard]] rpl::producer<QString> ButtonManageDictsState(
|
|
not_null<Main::Session*> session);
|
|
|
|
} // namespace Spellchecker
|
|
|
|
#endif // !TDESKTOP_DISABLE_SPELLCHECK
|