mirror of https://github.com/procxx/kepka.git
Added auto download of new dictionary when input locale is changed.
This commit is contained in:
parent
bc6e1e7a0d
commit
8734ebe4c4
|
@ -21,6 +21,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "spellcheck/spellcheck_value.h"
|
#include "spellcheck/spellcheck_value.h"
|
||||||
|
|
||||||
#include <QtGui/QGuiApplication>
|
#include <QtGui/QGuiApplication>
|
||||||
|
#include <QtGui/QInputMethod>
|
||||||
|
|
||||||
namespace Spellchecker {
|
namespace Spellchecker {
|
||||||
|
|
||||||
|
@ -47,6 +48,14 @@ inline auto LWC(QLocale::Country country) {
|
||||||
return (l.language() * 1000) + country;
|
return (l.language() * 1000) + country;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline auto LanguageFromLocale(QLocale loc) {
|
||||||
|
const auto locLang = int(loc.language());
|
||||||
|
return (ranges::contains(kLangsForLWC, locLang)
|
||||||
|
&& (loc.country() != QLocale::AnyCountry))
|
||||||
|
? LWC(loc.country())
|
||||||
|
: locLang;
|
||||||
|
}
|
||||||
|
|
||||||
const auto kDictionaries = {
|
const auto kDictionaries = {
|
||||||
Dict{{ QLocale::English, 649, 174'516, "English" }}, // en_US
|
Dict{{ QLocale::English, 649, 174'516, "English" }}, // en_US
|
||||||
Dict{{ QLocale::Bulgarian, 594, 229'658, "\xd0\x91\xd1\x8a\xd0\xbb\xd0\xb3\xd0\xb0\xd1\x80\xd1\x81\xd0\xba\xd0\xb8" }}, // bg_BG
|
Dict{{ QLocale::Bulgarian, 594, 229'658, "\xd0\x91\xd1\x8a\xd0\xbb\xd0\xb3\xd0\xb0\xd1\x80\xd1\x81\xd0\xba\xd0\xb8" }}, // bg_BG
|
||||||
|
@ -92,6 +101,10 @@ const auto kDictionaries = {
|
||||||
// The Tajik code is 'tg_TG' in Chromium, but QT has only 'tg_TJ'.
|
// The Tajik code is 'tg_TG' in Chromium, but QT has only 'tg_TJ'.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inline auto IsSupportedLang(int lang) {
|
||||||
|
return ranges::contains(kDictionaries, lang, &Dict::id);
|
||||||
|
}
|
||||||
|
|
||||||
void EnsurePath() {
|
void EnsurePath() {
|
||||||
if (!QDir::current().mkpath(Spellchecker::DictionariesPath())) {
|
if (!QDir::current().mkpath(Spellchecker::DictionariesPath())) {
|
||||||
LOG(("App Error: Could not create dictionaries path."));
|
LOG(("App Error: Could not create dictionaries path."));
|
||||||
|
@ -322,17 +335,20 @@ rpl::producer<QString> ButtonManageDictsState(
|
||||||
std::vector<int> DefaultLanguages() {
|
std::vector<int> DefaultLanguages() {
|
||||||
std::vector<int> langs;
|
std::vector<int> langs;
|
||||||
|
|
||||||
|
const auto append = [&](const auto loc) {
|
||||||
|
const auto l = LanguageFromLocale(loc);
|
||||||
|
if (!ranges::contains(langs, l) && IsSupportedLang(l)) {
|
||||||
|
langs.push_back(l);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const auto method = QGuiApplication::inputMethod();
|
const auto method = QGuiApplication::inputMethod();
|
||||||
langs.reserve(method ? 3 : 2);
|
langs.reserve(method ? 3 : 2);
|
||||||
if (method) {
|
if (method) {
|
||||||
const auto loc = method->locale();
|
append(method->locale());
|
||||||
const auto locLang = int(loc.language());
|
|
||||||
langs.push_back(ranges::contains(kLangsForLWC, locLang)
|
|
||||||
? LWC(loc.country())
|
|
||||||
: locLang);
|
|
||||||
}
|
}
|
||||||
langs.push_back(QLocale(Platform::SystemLanguage()).language());
|
append(QLocale(Platform::SystemLanguage()));
|
||||||
langs.push_back(QLocale(Lang::Current().id()).language());
|
append(QLocale(Lang::LanguageIdOrDefault(Lang::Current().id())));
|
||||||
|
|
||||||
return langs;
|
return langs;
|
||||||
}
|
}
|
||||||
|
@ -345,38 +361,84 @@ void Start(not_null<Main::Session*> session) {
|
||||||
} });
|
} });
|
||||||
const auto settings = &session->settings();
|
const auto settings = &session->settings();
|
||||||
|
|
||||||
if (!Platform::Spellchecker::IsSystemSpellchecker()) {
|
const auto guard = gsl::finally([=]{
|
||||||
Spellchecker::SetWorkingDirPath(DictionariesPath());
|
if (settings->spellcheckerEnabled()) {
|
||||||
|
|
||||||
settings->dictionariesEnabledChanges(
|
|
||||||
) | rpl::start_with_next([](auto dictionaries) {
|
|
||||||
Platform::Spellchecker::UpdateLanguages(dictionaries);
|
|
||||||
}, session->lifetime());
|
|
||||||
|
|
||||||
settings->spellcheckerEnabledChanges(
|
|
||||||
) | rpl::start_with_next([=](auto enabled) {
|
|
||||||
Platform::Spellchecker::UpdateLanguages(
|
Platform::Spellchecker::UpdateLanguages(
|
||||||
enabled
|
settings->dictionariesEnabled());
|
||||||
? settings->dictionariesEnabled()
|
}
|
||||||
: std::vector<int>());
|
});
|
||||||
|
|
||||||
|
if (Platform::Spellchecker::IsSystemSpellchecker()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Spellchecker::SetWorkingDirPath(DictionariesPath());
|
||||||
|
|
||||||
|
settings->dictionariesEnabledChanges(
|
||||||
|
) | rpl::start_with_next([](auto dictionaries) {
|
||||||
|
Platform::Spellchecker::UpdateLanguages(dictionaries);
|
||||||
|
}, session->lifetime());
|
||||||
|
|
||||||
|
settings->spellcheckerEnabledChanges(
|
||||||
|
) | rpl::start_with_next([=](auto enabled) {
|
||||||
|
Platform::Spellchecker::UpdateLanguages(
|
||||||
|
enabled
|
||||||
|
? settings->dictionariesEnabled()
|
||||||
|
: std::vector<int>());
|
||||||
|
}, session->lifetime());
|
||||||
|
|
||||||
|
const auto method = QGuiApplication::inputMethod();
|
||||||
|
|
||||||
|
const auto connectInput = [=] {
|
||||||
|
if (!method || !settings->spellcheckerEnabled()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
auto callback = [=] {
|
||||||
|
if (BackgroundLoader) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const auto l = LanguageFromLocale(method->locale());
|
||||||
|
if (!IsSupportedLang(l) || DictionaryExists(l)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
crl::on_main(session, [=] {
|
||||||
|
DownloadDictionaryInBackground(session, 0, { l });
|
||||||
|
});
|
||||||
|
};
|
||||||
|
QObject::connect(
|
||||||
|
method,
|
||||||
|
&QInputMethod::localeChanged,
|
||||||
|
std::move(callback));
|
||||||
|
};
|
||||||
|
|
||||||
|
if (settings->autoDownloadDictionaries()) {
|
||||||
|
session->data().contactsLoaded().changes(
|
||||||
|
) | rpl::start_with_next([=](bool loaded) {
|
||||||
|
if (!loaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DownloadDictionaryInBackground(session, 0, DefaultLanguages());
|
||||||
}, session->lifetime());
|
}, session->lifetime());
|
||||||
|
|
||||||
if (settings->autoDownloadDictionaries()) {
|
connectInput();
|
||||||
session->data().contactsLoaded().changes(
|
}
|
||||||
) | rpl::start_with_next([=](bool loaded) {
|
|
||||||
if (!loaded) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
DownloadDictionaryInBackground(session, 0, DefaultLanguages());
|
rpl::combine(
|
||||||
}, session->lifetime());
|
settings->spellcheckerEnabledValue(),
|
||||||
|
settings->autoDownloadDictionariesValue()
|
||||||
|
) | rpl::start_with_next([=](bool spell, bool download) {
|
||||||
|
if (spell && download) {
|
||||||
|
connectInput();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
QObject::disconnect(
|
||||||
|
method,
|
||||||
|
&QInputMethod::localeChanged,
|
||||||
|
nullptr,
|
||||||
|
nullptr);
|
||||||
|
}, session->lifetime());
|
||||||
|
|
||||||
}
|
|
||||||
if (settings->spellcheckerEnabled()) {
|
|
||||||
Platform::Spellchecker::UpdateLanguages(
|
|
||||||
settings->dictionariesEnabled());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Spellchecker
|
} // namespace Spellchecker
|
||||||
|
|
Loading…
Reference in New Issue