/* * Strawberry Music Player * This file was part of Clementine. * Copyright 2010, David Sansome * Copyright 2018-2021, Jonas Kvinge * * Strawberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Strawberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Strawberry. If not, see . * */ #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "core/iconloader.h" #include "core/logging.h" #include "core/settings.h" #include "constants/globalshortcutssettings.h" #include "globalshortcuts/globalshortcutgrabber.h" #include "globalshortcuts/globalshortcutsmanager.h" #include "settingspage.h" #include "settingsdialog.h" #include "globalshortcutssettingspage.h" #include "ui_globalshortcutssettingspage.h" using namespace Qt::Literals::StringLiterals; using namespace GlobalShortcutsSettings; GlobalShortcutsSettingsPage::GlobalShortcutsSettingsPage(SettingsDialog *dialog, GlobalShortcutsManager *global_shortcuts_manager, QWidget *parent) : SettingsPage(dialog, parent), ui_(new Ui_GlobalShortcutsSettingsPage), global_shortcuts_manager_(global_shortcuts_manager), initialized_(false), grabber_(new GlobalShortcutGrabber()) { ui_->setupUi(this); ui_->shortcut_options->setEnabled(false); ui_->list->header()->setSectionResizeMode(QHeaderView::ResizeToContents); setWindowIcon(IconLoader::Load(u"keyboard"_s, true, 0, 32)); QObject::connect(ui_->list, &QTreeWidget::currentItemChanged, this, &GlobalShortcutsSettingsPage::ItemClicked); QObject::connect(ui_->radio_none, &QRadioButton::clicked, this, &GlobalShortcutsSettingsPage::NoneClicked); QObject::connect(ui_->radio_default, &QRadioButton::clicked, this, &GlobalShortcutsSettingsPage::DefaultClicked); QObject::connect(ui_->radio_custom, &QRadioButton::clicked, this, &GlobalShortcutsSettingsPage::ChangeClicked); QObject::connect(ui_->button_change, &QPushButton::clicked, this, &GlobalShortcutsSettingsPage::ChangeClicked); #ifdef HAVE_KGLOBALACCEL_GLOBALSHORTCUTS QObject::connect(ui_->checkbox_kglobalaccel, &QCheckBox::toggled, this, &GlobalShortcutsSettingsPage::ShortcutOptionsChanged); #else ui_->widget_kglobalaccel->hide(); #endif #ifdef HAVE_X11_GLOBALSHORTCUTS QObject::connect(ui_->checkbox_x11, &QCheckBox::toggled, this, &GlobalShortcutsSettingsPage::ShortcutOptionsChanged); #else ui_->widget_x11->hide(); #endif #ifndef Q_OS_MACOS ui_->widget_macos_access->hide(); #endif } GlobalShortcutsSettingsPage::~GlobalShortcutsSettingsPage() { delete ui_; } void GlobalShortcutsSettingsPage::Load() { Settings s; s.beginGroup(kSettingsGroup); if (!initialized_) { initialized_ = true; ui_->widget_warning->hide(); #ifdef Q_OS_MACOS QObject::connect(ui_->button_macos_preferences, &QPushButton::clicked, global_shortcuts_manager_, &GlobalShortcutsManager::ShowMacAccessibilityDialog); #endif #ifdef HAVE_KGLOBALACCEL_GLOBALSHORTCUTS if (GlobalShortcutsManager::IsKGlobalAccelAvailable()) { qLog(Debug) << "KGlobalAccel backend is available."; ui_->widget_kglobalaccel->show(); } else { qLog(Debug) << "KGlobalAccel backend is unavailable."; ui_->widget_kglobalaccel->hide(); } #endif #ifdef HAVE_X11_GLOBALSHORTCUTS if (GlobalShortcutsManager::IsX11Available()) { qLog(Debug) << "X11 backend is available."; ui_->widget_x11->show(); } else { qLog(Debug) << "X11 backend is unavailable."; ui_->widget_x11->hide(); } #endif const QList shortcuts = global_shortcuts_manager_->shortcuts().values(); for (const GlobalShortcutsManager::Shortcut &i : shortcuts) { Shortcut shortcut; shortcut.s = i; shortcut.key = i.action->shortcut(); shortcut.item = new QTreeWidgetItem(ui_->list, QStringList() << i.action->text() << i.action->shortcut().toString(QKeySequence::NativeText)); shortcut.item->setData(0, Qt::UserRole, i.id); shortcuts_[i.id] = shortcut; } ui_->list->sortItems(0, Qt::AscendingOrder); ItemClicked(ui_->list->topLevelItem(0)); } const QList shortcuts = shortcuts_.values(); for (const Shortcut &shortcut : shortcuts) { SetShortcut(shortcut.s.id, shortcut.s.action->shortcut()); } #ifdef HAVE_KGLOBALACCEL_GLOBALSHORTCUTS if (ui_->widget_kglobalaccel->isVisibleTo(this)) { ui_->checkbox_kglobalaccel->setChecked(s.value(kUseKGlobalAccel, true).toBool()); } #endif #ifdef HAVE_X11_GLOBALSHORTCUTS if (ui_->widget_x11->isVisibleTo(this)) { ui_->checkbox_x11->setChecked(s.value(kUseX11, false).toBool()); } #endif #if defined(HAVE_KGLOBALACCEL_GLOBALSHORTCUTS) || defined(HAVE_X11_GLOBALSHORTCUTS) ShortcutOptionsChanged(); #endif #ifdef Q_OS_MACOS ui_->widget_macos_access->setVisible(!GlobalShortcutsManager::IsMacAccessibilityEnabled()); #endif // Q_OS_MACOS s.endGroup(); Init(ui_->layout_globalshortcutssettingspage->parentWidget()); if (!Settings().childGroups().contains(QLatin1String(kSettingsGroup))) set_changed(); } void GlobalShortcutsSettingsPage::Save() { Settings s; s.beginGroup(kSettingsGroup); const QList shortcuts = shortcuts_.values(); for (const Shortcut &shortcut : shortcuts) { shortcut.s.action->setShortcut(shortcut.key); shortcut.s.shortcut->setKey(shortcut.key); s.setValue(shortcut.s.id, shortcut.key.toString()); } #ifdef HAVE_KGLOBALACCEL_GLOBALSHORTCUTS s.setValue(kUseKGlobalAccel, ui_->checkbox_kglobalaccel->isChecked()); #endif #ifdef HAVE_X11_GLOBALSHORTCUTS s.setValue(kUseX11, ui_->checkbox_x11->isChecked()); #endif s.endGroup(); global_shortcuts_manager_->ReloadSettings(); } void GlobalShortcutsSettingsPage::ShortcutOptionsChanged() { bool configure_shortcuts = (ui_->widget_kglobalaccel->isVisibleTo(this) && ui_->checkbox_kglobalaccel->isChecked()) || (ui_->widget_x11->isVisibleTo(this) && ui_->checkbox_x11->isChecked()); ui_->list->setEnabled(configure_shortcuts); ui_->shortcut_options->setEnabled(configure_shortcuts); if (ui_->widget_x11->isVisibleTo(this) && ui_->checkbox_x11->isChecked()) { ui_->widget_warning->show(); X11Warning(); } else { ui_->widget_warning->hide(); } } void GlobalShortcutsSettingsPage::SetShortcut(const QString &id, const QKeySequence &key) { Shortcut shortcut = shortcuts_.value(id); shortcut.key = key; shortcut.item->setText(1, key.toString(QKeySequence::NativeText)); shortcuts_[id] = shortcut; } void GlobalShortcutsSettingsPage::ItemClicked(QTreeWidgetItem *item) { current_id_ = item->data(0, Qt::UserRole).toString(); const Shortcut shortcut = shortcuts_.value(current_id_); // Enable options ui_->shortcut_options->setEnabled(true); ui_->shortcut_options->setTitle(tr("Shortcut for %1").arg(shortcut.s.action->text())); if (shortcut.key == shortcut.s.default_key) { ui_->radio_default->setChecked(true); } else if (shortcut.key.isEmpty()) { ui_->radio_none->setChecked(true); } else { ui_->radio_custom->setChecked(true); } } void GlobalShortcutsSettingsPage::NoneClicked() { SetShortcut(current_id_, QKeySequence()); set_changed(); } void GlobalShortcutsSettingsPage::DefaultClicked() { SetShortcut(current_id_, shortcuts_[current_id_].s.default_key); set_changed(); } void GlobalShortcutsSettingsPage::ChangeClicked() { global_shortcuts_manager_->Unregister(); QKeySequence key = grabber_->GetKey(shortcuts_.value(current_id_).s.action->text()); global_shortcuts_manager_->Register(); if (key.isEmpty()) return; // Check if this key sequence is used by any other actions const QStringList ids = shortcuts_.keys(); for (const QString &id : ids) { if (shortcuts_[id].key == key) SetShortcut(id, QKeySequence()); } ui_->radio_custom->setChecked(true); SetShortcut(current_id_, key); set_changed(); } void GlobalShortcutsSettingsPage::X11Warning() { ui_->label_warn_text->setText(tr("Using X11 shortcuts is not recommended and can cause keyboard to become unresponsive! Shortcuts on should usually be used through MPRIS2 / KGlobalAccel.")); ui_->widget_warning->show(); }