Added new setting for automatic dictionaries download.

This commit is contained in:
23rd 2020-02-20 22:27:21 +03:00
parent bb8aead078
commit bc6e1e7a0d
5 changed files with 54 additions and 16 deletions

View File

@ -423,6 +423,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
"lng_settings_spellchecker" = "Spell checker"; "lng_settings_spellchecker" = "Spell checker";
"lng_settings_system_spellchecker" = "Use system spell checker"; "lng_settings_system_spellchecker" = "Use system spell checker";
"lng_settings_custom_spellchecker" = "Use spell checker"; "lng_settings_custom_spellchecker" = "Use spell checker";
"lng_settings_auto_download_dictionaries" = "Automatic dictionaries download";
"lng_settings_manage_dictionaries" = "Manage dictionaries"; "lng_settings_manage_dictionaries" = "Manage dictionaries";
"lng_settings_manage_enabled_dictionary" = "Dictionary is enabled"; "lng_settings_manage_enabled_dictionary" = "Dictionary is enabled";
"lng_settings_manage_remove_dictionary" = "Remove Dictionary"; "lng_settings_manage_remove_dictionary" = "Remove Dictionary";

View File

@ -343,37 +343,39 @@ void Start(not_null<Main::Session*> session) {
{ &ph::lng_spellchecker_remove, tr::lng_spellchecker_remove() }, { &ph::lng_spellchecker_remove, tr::lng_spellchecker_remove() },
{ &ph::lng_spellchecker_ignore, tr::lng_spellchecker_ignore() }, { &ph::lng_spellchecker_ignore, tr::lng_spellchecker_ignore() },
} }); } });
const auto settings = &session->settings();
if (!Platform::Spellchecker::IsSystemSpellchecker()) { if (!Platform::Spellchecker::IsSystemSpellchecker()) {
Spellchecker::SetWorkingDirPath(DictionariesPath()); Spellchecker::SetWorkingDirPath(DictionariesPath());
session->settings().dictionariesEnabledChanges( settings->dictionariesEnabledChanges(
) | rpl::start_with_next([](auto dictionaries) { ) | rpl::start_with_next([](auto dictionaries) {
Platform::Spellchecker::UpdateLanguages(dictionaries); Platform::Spellchecker::UpdateLanguages(dictionaries);
}, session->lifetime()); }, session->lifetime());
session->settings().spellcheckerEnabledChanges( settings->spellcheckerEnabledChanges(
) | rpl::start_with_next([=](auto enabled) { ) | rpl::start_with_next([=](auto enabled) {
Platform::Spellchecker::UpdateLanguages( Platform::Spellchecker::UpdateLanguages(
enabled enabled
? session->settings().dictionariesEnabled() ? settings->dictionariesEnabled()
: std::vector<int>()); : std::vector<int>());
}, session->lifetime()); }, session->lifetime());
session->data().contactsLoaded().changes( if (settings->autoDownloadDictionaries()) {
) | rpl::start_with_next([=](bool loaded) { session->data().contactsLoaded().changes(
if (!loaded) { ) | rpl::start_with_next([=](bool loaded) {
return; if (!loaded) {
} return;
}
DownloadDictionaryInBackground(session, 0, DefaultLanguages());
}, session->lifetime());
DownloadDictionaryInBackground(session, 0, DefaultLanguages());
}, session->lifetime());
}
} }
if (session->settings().spellcheckerEnabled()) { if (settings->spellcheckerEnabled()) {
Platform::Spellchecker::UpdateLanguages( Platform::Spellchecker::UpdateLanguages(
session->settings().dictionariesEnabled()); settings->dictionariesEnabled());
} }
} }

View File

@ -122,6 +122,7 @@ QByteArray Settings::serialize() const {
for (const auto i : _variables.dictionariesEnabled.current()) { for (const auto i : _variables.dictionariesEnabled.current()) {
stream << quint64(i); stream << quint64(i);
} }
stream << qint32(_variables.autoDownloadDictionaries.current() ? 1 : 0);
} }
return result; return result;
} }
@ -175,6 +176,7 @@ void Settings::constructFromSerialized(const QByteArray &serialized) {
qint32 videoPlaybackSpeed = SerializePlaybackSpeed(_variables.videoPlaybackSpeed.current()); qint32 videoPlaybackSpeed = SerializePlaybackSpeed(_variables.videoPlaybackSpeed.current());
QByteArray videoPipGeometry = _variables.videoPipGeometry; QByteArray videoPipGeometry = _variables.videoPipGeometry;
std::vector<int> dictionariesEnabled; std::vector<int> dictionariesEnabled;
qint32 autoDownloadDictionaries = _variables.autoDownloadDictionaries.current() ? 1 : 0;
stream >> versionTag; stream >> versionTag;
if (versionTag == kVersionTag) { if (versionTag == kVersionTag) {
@ -312,6 +314,9 @@ void Settings::constructFromSerialized(const QByteArray &serialized) {
} }
} }
} }
if (!stream.atEnd()) {
stream >> autoDownloadDictionaries;
}
if (stream.status() != QDataStream::Ok) { if (stream.status() != QDataStream::Ok) {
LOG(("App Error: " LOG(("App Error: "
"Bad data for Main::Settings::constructFromSerialized()")); "Bad data for Main::Settings::constructFromSerialized()"));
@ -402,6 +407,7 @@ void Settings::constructFromSerialized(const QByteArray &serialized) {
_variables.videoPlaybackSpeed = DeserializePlaybackSpeed(videoPlaybackSpeed); _variables.videoPlaybackSpeed = DeserializePlaybackSpeed(videoPlaybackSpeed);
_variables.videoPipGeometry = videoPipGeometry; _variables.videoPipGeometry = videoPipGeometry;
_variables.dictionariesEnabled = std::move(dictionariesEnabled); _variables.dictionariesEnabled = std::move(dictionariesEnabled);
_variables.autoDownloadDictionaries = (autoDownloadDictionaries == 1);
} }
void Settings::setSupportChatsTimeSlice(int slice) { void Settings::setSupportChatsTimeSlice(int slice) {

View File

@ -253,6 +253,19 @@ public:
return _variables.dictionariesEnabled.changes(); return _variables.dictionariesEnabled.changes();
} }
void setAutoDownloadDictionaries(bool value) {
_variables.autoDownloadDictionaries = value;
}
bool autoDownloadDictionaries() const {
return _variables.autoDownloadDictionaries.current();
}
rpl::producer<bool> autoDownloadDictionariesValue() const {
return _variables.autoDownloadDictionaries.value();
}
rpl::producer<bool> autoDownloadDictionariesChanges() const {
return _variables.autoDownloadDictionaries.changes();
}
[[nodiscard]] float64 videoPlaybackSpeed() const { [[nodiscard]] float64 videoPlaybackSpeed() const {
return _variables.videoPlaybackSpeed.current(); return _variables.videoPlaybackSpeed.current();
} }
@ -311,6 +324,7 @@ private:
rpl::variable<float64> videoPlaybackSpeed = 1.; rpl::variable<float64> videoPlaybackSpeed = 1.;
QByteArray videoPipGeometry; QByteArray videoPipGeometry;
rpl::variable<std::vector<int>> dictionariesEnabled; rpl::variable<std::vector<int>> dictionariesEnabled;
rpl::variable<bool> autoDownloadDictionaries = true;
static constexpr auto kDefaultSupportChatsLimitSlice static constexpr auto kDefaultSupportChatsLimitSlice
= 7 * 24 * 60 * 60; = 7 * 24 * 60 * 60;

View File

@ -261,6 +261,7 @@ void SetupSpellchecker(
not_null<Ui::VerticalLayout*> container) { not_null<Ui::VerticalLayout*> container) {
#ifndef TDESKTOP_DISABLE_SPELLCHECK #ifndef TDESKTOP_DISABLE_SPELLCHECK
const auto session = &controller->session(); const auto session = &controller->session();
const auto settings = &session->settings();
const auto isSystem = Platform::Spellchecker::IsSystemSpellchecker(); const auto isSystem = Platform::Spellchecker::IsSystemSpellchecker();
const auto button = AddButton( const auto button = AddButton(
container, container,
@ -269,14 +270,14 @@ void SetupSpellchecker(
: tr::lng_settings_custom_spellchecker(), : tr::lng_settings_custom_spellchecker(),
st::settingsButton st::settingsButton
)->toggleOn( )->toggleOn(
rpl::single(session->settings().spellcheckerEnabled()) rpl::single(settings->spellcheckerEnabled())
); );
button->toggledValue( button->toggledValue(
) | rpl::filter([=](bool enabled) { ) | rpl::filter([=](bool enabled) {
return (enabled != session->settings().spellcheckerEnabled()); return (enabled != settings->spellcheckerEnabled());
}) | rpl::start_with_next([=](bool enabled) { }) | rpl::start_with_next([=](bool enabled) {
session->settings().setSpellcheckerEnabled(enabled); settings->setSpellcheckerEnabled(enabled);
session->saveSettingsDelayed(); session->saveSettingsDelayed();
}, container->lifetime()); }, container->lifetime());
@ -289,6 +290,20 @@ void SetupSpellchecker(
container, container,
object_ptr<Ui::VerticalLayout>(container))); object_ptr<Ui::VerticalLayout>(container)));
AddButton(
sliding->entity(),
tr::lng_settings_auto_download_dictionaries(),
st::settingsButton
)->toggleOn(
rpl::single(settings->autoDownloadDictionaries())
)->toggledValue(
) | rpl::filter([=](bool enabled) {
return (enabled != settings->autoDownloadDictionaries());
}) | rpl::start_with_next([=](bool enabled) {
settings->setAutoDownloadDictionaries(enabled);
session->saveSettingsDelayed();
}, sliding->entity()->lifetime());
AddButtonWithLabel( AddButtonWithLabel(
sliding->entity(), sliding->entity(),
tr::lng_settings_manage_dictionaries(), tr::lng_settings_manage_dictionaries(),