mirror of https://github.com/procxx/kepka.git
Added ability to remove dictionary from context menu.
This commit is contained in:
parent
e9e9ea2d69
commit
a0f995b134
|
@ -425,6 +425,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_settings_custom_spellchecker" = "Use spell checker";
|
"lng_settings_custom_spellchecker" = "Use spell checker";
|
||||||
"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_backgrounds_header" = "Choose your new chat background";
|
"lng_backgrounds_header" = "Choose your new chat background";
|
||||||
"lng_theme_sure_keep" = "Keep this theme?";
|
"lng_theme_sure_keep" = "Keep this theme?";
|
||||||
|
|
|
@ -9,6 +9,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_SPELLCHECK
|
#ifndef TDESKTOP_DISABLE_SPELLCHECK
|
||||||
|
|
||||||
|
#include "base/event_filter.h"
|
||||||
#include "chat_helpers/spellchecker_common.h"
|
#include "chat_helpers/spellchecker_common.h"
|
||||||
#include "core/application.h"
|
#include "core/application.h"
|
||||||
#include "main/main_account.h"
|
#include "main/main_account.h"
|
||||||
|
@ -21,6 +22,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "ui/wrap/vertical_layout.h"
|
#include "ui/wrap/vertical_layout.h"
|
||||||
#include "ui/widgets/buttons.h"
|
#include "ui/widgets/buttons.h"
|
||||||
#include "ui/widgets/labels.h"
|
#include "ui/widgets/labels.h"
|
||||||
|
#include "ui/widgets/popup_menu.h"
|
||||||
#include "ui/wrap/slide_wrap.h"
|
#include "ui/wrap/slide_wrap.h"
|
||||||
#include "ui/effects/animations.h"
|
#include "ui/effects/animations.h"
|
||||||
|
|
||||||
|
@ -68,6 +70,12 @@ inline auto DictExists(int langId) {
|
||||||
return Spellchecker::DictionaryExists(langId);
|
return Spellchecker::DictionaryExists(langId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline auto FilterEnabledDict(Dictionaries dicts) {
|
||||||
|
return dicts | ranges::views::filter(
|
||||||
|
DictExists
|
||||||
|
) | ranges::to_vector;
|
||||||
|
}
|
||||||
|
|
||||||
DictState ComputeState(int id, bool enabled) {
|
DictState ComputeState(int id, bool enabled) {
|
||||||
const auto result = enabled ? DictState(Active()) : DictState(Ready());
|
const auto result = enabled ? DictState(Active()) : DictState(Ready());
|
||||||
if (DictExists(id)) {
|
if (DictExists(id)) {
|
||||||
|
@ -151,6 +159,8 @@ auto AddButtonWithLoader(
|
||||||
|
|
||||||
const auto buttonState = button->lifetime()
|
const auto buttonState = button->lifetime()
|
||||||
.make_state<rpl::variable<DictState>>();
|
.make_state<rpl::variable<DictState>>();
|
||||||
|
const auto dictionaryRemoved = button->lifetime()
|
||||||
|
.make_state<rpl::event_stream<>>();
|
||||||
|
|
||||||
const auto label = Ui::CreateChild<Ui::FlatLabel>(
|
const auto label = Ui::CreateChild<Ui::FlatLabel>(
|
||||||
button,
|
button,
|
||||||
|
@ -188,10 +198,15 @@ auto AddButtonWithLoader(
|
||||||
rpl::single(
|
rpl::single(
|
||||||
buttonEnabled
|
buttonEnabled
|
||||||
) | rpl::then(
|
) | rpl::then(
|
||||||
buttonState->value(
|
rpl::merge(
|
||||||
) | rpl::filter([](const DictState &state) {
|
dictionaryRemoved->events(),
|
||||||
return state.is<Failed>();
|
buttonState->value(
|
||||||
}) | rpl::map([](const auto &state) {
|
) | rpl::filter([](const DictState &state) {
|
||||||
|
return state.is<Failed>();
|
||||||
|
}) | rpl::map([] {
|
||||||
|
return rpl::empty_value();
|
||||||
|
})
|
||||||
|
) | rpl::map([]() {
|
||||||
return false;
|
return false;
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
@ -205,7 +220,13 @@ auto AddButtonWithLoader(
|
||||||
: rpl::single(
|
: rpl::single(
|
||||||
buttonEnabled
|
buttonEnabled
|
||||||
) | rpl::then(
|
) | rpl::then(
|
||||||
button->toggledValue()
|
rpl::merge(
|
||||||
|
dictionaryRemoved->events(
|
||||||
|
) | rpl::map([] {
|
||||||
|
return false;
|
||||||
|
}),
|
||||||
|
button->toggledValue()
|
||||||
|
)
|
||||||
) | rpl::map([=](auto enabled) {
|
) | rpl::map([=](auto enabled) {
|
||||||
return ComputeState(id, enabled);
|
return ComputeState(id, enabled);
|
||||||
});
|
});
|
||||||
|
@ -233,6 +254,29 @@ auto AddButtonWithLoader(
|
||||||
}
|
}
|
||||||
}, button->lifetime());
|
}, button->lifetime());
|
||||||
|
|
||||||
|
const auto contextMenu = button->lifetime()
|
||||||
|
.make_state<base::unique_qptr<Ui::PopupMenu>>();
|
||||||
|
const auto showMenu = [=] {
|
||||||
|
if (!DictExists(id)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
*contextMenu = base::make_unique_q<Ui::PopupMenu>(button);
|
||||||
|
contextMenu->get()->addAction(
|
||||||
|
tr::lng_settings_manage_remove_dictionary(tr::now), [=] {
|
||||||
|
Spellchecker::RemoveDictionary(id);
|
||||||
|
dictionaryRemoved->fire({});
|
||||||
|
});
|
||||||
|
contextMenu->get()->popup(QCursor::pos());
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
base::install_event_filter(button, [=](not_null<QEvent*> e) {
|
||||||
|
if (e->type() == QEvent::ContextMenu && showMenu()) {
|
||||||
|
return base::EventFilterResult::Cancel;
|
||||||
|
}
|
||||||
|
return base::EventFilterResult::Continue;
|
||||||
|
});
|
||||||
|
|
||||||
return button;
|
return button;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -281,11 +325,8 @@ void ManageDictionariesBox::prepare() {
|
||||||
setTitle(tr::lng_settings_manage_dictionaries());
|
setTitle(tr::lng_settings_manage_dictionaries());
|
||||||
|
|
||||||
addButton(tr::lng_settings_save(), [=] {
|
addButton(tr::lng_settings_save(), [=] {
|
||||||
auto enabledRows = inner->enabledRows();
|
|
||||||
_session->settings().setDictionariesEnabled(
|
_session->settings().setDictionariesEnabled(
|
||||||
enabledRows | ranges::views::filter(
|
FilterEnabledDict(inner->enabledRows()));
|
||||||
DictExists
|
|
||||||
) | ranges::to_vector);
|
|
||||||
_session->saveSettingsDelayed();
|
_session->saveSettingsDelayed();
|
||||||
// Ignore boxClosing() when the Save button was pressed.
|
// Ignore boxClosing() when the Save button was pressed.
|
||||||
lifetime().destroy();
|
lifetime().destroy();
|
||||||
|
@ -294,7 +335,8 @@ void ManageDictionariesBox::prepare() {
|
||||||
addButton(tr::lng_close(), [=] { closeBox(); });
|
addButton(tr::lng_close(), [=] { closeBox(); });
|
||||||
|
|
||||||
boxClosing() | rpl::start_with_next([=] {
|
boxClosing() | rpl::start_with_next([=] {
|
||||||
_session->settings().setDictionariesEnabled(initialEnabledRows);
|
_session->settings().setDictionariesEnabled(
|
||||||
|
FilterEnabledDict(initialEnabledRows));
|
||||||
_session->saveSettingsDelayed();
|
_session->saveSettingsDelayed();
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
|
|
||||||
|
|
|
@ -134,6 +134,17 @@ bool DictionaryExists(int langId) {
|
||||||
return (bad == end(kDictExtensions));
|
return (bad == end(kDictExtensions));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool RemoveDictionary(int langId) {
|
||||||
|
if (!langId) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
const auto fileName = Spellchecker::LocaleFromLangId(langId).name();
|
||||||
|
const auto folder = qsl("%1/%2/")
|
||||||
|
.arg(DictionariesPath())
|
||||||
|
.arg(fileName);
|
||||||
|
return QDir(folder).removeRecursively();
|
||||||
|
}
|
||||||
|
|
||||||
bool WriteDefaultDictionary() {
|
bool WriteDefaultDictionary() {
|
||||||
// This is an unused function.
|
// This is an unused function.
|
||||||
const auto en = QLocale::English;
|
const auto en = QLocale::English;
|
||||||
|
|
|
@ -27,6 +27,8 @@ MTP::DedicatedLoader::Location GetDownloadLocation(int id);
|
||||||
[[nodiscard]] QString DictPathByLangId(int langId);
|
[[nodiscard]] QString DictPathByLangId(int langId);
|
||||||
bool UnpackDictionary(const QString &path, int langId);
|
bool UnpackDictionary(const QString &path, int langId);
|
||||||
[[nodiscard]] bool DictionaryExists(int langId);
|
[[nodiscard]] bool DictionaryExists(int langId);
|
||||||
|
bool RemoveDictionary(int langId);
|
||||||
|
[[nodiscard]] bool IsEn(int langId);
|
||||||
|
|
||||||
bool WriteDefaultDictionary();
|
bool WriteDefaultDictionary();
|
||||||
std::vector<Dict> Dictionaries();
|
std::vector<Dict> Dictionaries();
|
||||||
|
|
Loading…
Reference in New Issue