2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
2019-01-01 20:07:29 +01:00
|
|
|
* Copyright 2018, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QString>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QAction>
|
|
|
|
#include <QShortcut>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QKeySequence>
|
2018-07-03 19:48:08 +02:00
|
|
|
#ifdef HAVE_DBUS
|
2018-05-01 00:41:33 +02:00
|
|
|
# include <QDBusConnectionInterface>
|
2018-02-27 18:06:05 +01:00
|
|
|
#endif
|
2020-11-29 07:41:30 +01:00
|
|
|
#ifdef HAVE_X11EXTRAS
|
|
|
|
# include <QX11Info>
|
2019-02-23 01:10:45 +01:00
|
|
|
#endif
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "globalshortcuts.h"
|
|
|
|
#include "globalshortcutbackend.h"
|
2019-01-01 20:07:29 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_DBUS
|
2019-01-24 20:17:50 +01:00
|
|
|
# include "globalshortcutbackend-gsd.h"
|
2020-10-31 02:08:19 +01:00
|
|
|
# include "globalshortcutbackend-kde.h"
|
2019-01-01 20:07:29 +01:00
|
|
|
#endif
|
2020-11-29 07:41:30 +01:00
|
|
|
#if defined(HAVE_X11EXTRAS) || defined(Q_OS_WIN)
|
2019-01-01 20:07:29 +01:00
|
|
|
# include "globalshortcutbackend-system.h"
|
2018-07-01 22:26:46 +02:00
|
|
|
#endif
|
2019-01-01 20:07:29 +01:00
|
|
|
#ifdef Q_OS_MACOS
|
|
|
|
# include "globalshortcutbackend-macos.h"
|
|
|
|
#endif
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "settings/shortcutssettingspage.h"
|
|
|
|
|
|
|
|
GlobalShortcuts::GlobalShortcuts(QWidget *parent)
|
2018-02-27 18:06:05 +01:00
|
|
|
: QWidget(parent),
|
2020-10-31 02:08:19 +01:00
|
|
|
gsd_backend_(nullptr),
|
|
|
|
kde_backend_(nullptr),
|
2018-02-27 18:06:05 +01:00
|
|
|
system_backend_(nullptr),
|
2019-01-25 21:36:28 +01:00
|
|
|
use_gsd_(true),
|
2020-10-31 02:08:19 +01:00
|
|
|
use_kde_(true),
|
2019-01-01 20:07:29 +01:00
|
|
|
use_x11_(false)
|
|
|
|
{
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
settings_.beginGroup(GlobalShortcutsSettingsPage::kSettingsGroup);
|
|
|
|
|
|
|
|
// Create actions
|
2019-01-01 20:07:29 +01:00
|
|
|
AddShortcut("play", "Play", SIGNAL(Play()));
|
|
|
|
AddShortcut("pause", "Pause", SIGNAL(Pause()));
|
|
|
|
AddShortcut("play_pause", "Play/Pause", SIGNAL(PlayPause()), QKeySequence(Qt::Key_MediaPlay));
|
|
|
|
AddShortcut("stop", "Stop", SIGNAL(Stop()), QKeySequence(Qt::Key_MediaStop));
|
|
|
|
AddShortcut("stop_after", "Stop playing after current track", SIGNAL(StopAfter()));
|
|
|
|
AddShortcut("next_track", "Next track", SIGNAL(Next()), QKeySequence(Qt::Key_MediaNext));
|
|
|
|
AddShortcut("prev_track", "Previous track", SIGNAL(Previous()), QKeySequence(Qt::Key_MediaPrevious));
|
|
|
|
AddShortcut("inc_volume", "Increase volume", SIGNAL(IncVolume()));
|
|
|
|
AddShortcut("dec_volume", "Decrease volume", SIGNAL(DecVolume()));
|
2018-02-27 18:06:05 +01:00
|
|
|
AddShortcut("mute", tr("Mute"), SIGNAL(Mute()));
|
2019-01-01 20:07:29 +01:00
|
|
|
AddShortcut("seek_forward", "Seek forward", SIGNAL(SeekForward()));
|
|
|
|
AddShortcut("seek_backward", "Seek backward", SIGNAL(SeekBackward()));
|
|
|
|
AddShortcut("show_hide", "Show/Hide", SIGNAL(ShowHide()));
|
|
|
|
AddShortcut("show_osd", "Show OSD", SIGNAL(ShowOSD()));
|
|
|
|
AddShortcut("toggle_pretty_osd", "Toggle Pretty OSD", SIGNAL(TogglePrettyOSD())); // Toggling possible only for pretty OSD
|
|
|
|
AddShortcut("shuffle_mode", "Change shuffle mode", SIGNAL(CycleShuffleMode()));
|
|
|
|
AddShortcut("repeat_mode", "Change repeat mode", SIGNAL(CycleRepeatMode()));
|
|
|
|
AddShortcut("toggle_scrobbling", "Enable/disable scrobbling", SIGNAL(ToggleScrobbling()));
|
2019-06-12 00:38:52 +02:00
|
|
|
AddShortcut("love", "Love", SIGNAL(Love()));
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
// Create backends - these do the actual shortcut registration
|
2019-01-01 20:07:29 +01:00
|
|
|
#ifdef HAVE_DBUS
|
2020-10-31 02:08:19 +01:00
|
|
|
gsd_backend_ = new GlobalShortcutBackendGSD(this);
|
|
|
|
kde_backend_ = new GlobalShortcutBackendKDE(this);
|
2019-01-01 20:07:29 +01:00
|
|
|
#endif
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-01-01 20:07:29 +01:00
|
|
|
#ifdef Q_OS_MACOS
|
2019-02-23 01:10:45 +01:00
|
|
|
if (!system_backend_)
|
|
|
|
system_backend_ = new GlobalShortcutBackendMacOS(this);
|
|
|
|
#endif
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
if (!system_backend_)
|
|
|
|
system_backend_ = new GlobalShortcutBackendSystem(this);
|
|
|
|
#endif
|
2020-11-29 07:41:30 +01:00
|
|
|
#if defined(HAVE_X11EXTRAS)
|
2019-02-23 01:10:45 +01:00
|
|
|
if (!system_backend_ && IsX11Available())
|
|
|
|
system_backend_ = new GlobalShortcutBackendSystem(this);
|
2018-02-27 18:06:05 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
ReloadSettings();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-01 20:07:29 +01:00
|
|
|
void GlobalShortcuts::ReloadSettings() {
|
|
|
|
|
|
|
|
// The actual shortcuts have been set in our actions for us by the config dialog already - we just need to reread the gnome settings.
|
2019-01-25 21:36:28 +01:00
|
|
|
use_gsd_ = settings_.value("use_gsd", true).toBool();
|
2020-10-31 02:08:19 +01:00
|
|
|
use_kde_ = settings_.value("use_kde", true).toBool();
|
2019-02-23 01:10:45 +01:00
|
|
|
use_x11_ = settings_.value("use_x11", false).toBool();
|
2019-01-01 20:07:29 +01:00
|
|
|
|
|
|
|
Unregister();
|
|
|
|
Register();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
void GlobalShortcuts::AddShortcut(const QString &id, const QString &name, const char *signal, const QKeySequence &default_key) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
Shortcut shortcut = AddShortcut(id, name, default_key);
|
|
|
|
connect(shortcut.action, SIGNAL(triggered()), this, signal);
|
2019-01-01 20:07:29 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
GlobalShortcuts::Shortcut GlobalShortcuts::AddShortcut(const QString &id, const QString &name, const QKeySequence &default_key) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
Shortcut shortcut;
|
|
|
|
shortcut.action = new QAction(name, this);
|
|
|
|
QKeySequence key_sequence = QKeySequence::fromString(settings_.value(id, default_key.toString()).toString());
|
|
|
|
shortcut.action->setShortcut(key_sequence);
|
|
|
|
shortcut.id = id;
|
|
|
|
shortcut.default_key = default_key;
|
|
|
|
|
2019-01-01 20:07:29 +01:00
|
|
|
// Create application wide QShortcut to hide keyevents mapped to global shortcuts from widgets.
|
2018-02-27 18:06:05 +01:00
|
|
|
shortcut.shortcut = new QShortcut(key_sequence, this);
|
|
|
|
shortcut.shortcut->setContext(Qt::ApplicationShortcut);
|
|
|
|
|
|
|
|
shortcuts_[id] = shortcut;
|
|
|
|
|
|
|
|
return shortcut;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GlobalShortcuts::IsGsdAvailable() const {
|
|
|
|
|
2018-07-03 19:48:08 +02:00
|
|
|
#ifdef HAVE_DBUS
|
2019-01-24 20:17:50 +01:00
|
|
|
return QDBusConnection::sessionBus().interface()->isServiceRegistered(GlobalShortcutBackendGSD::kGsdService) || QDBusConnection::sessionBus().interface()->isServiceRegistered(GlobalShortcutBackendGSD::kGsdService2);
|
2018-07-03 19:48:08 +02:00
|
|
|
#else
|
2018-02-27 18:06:05 +01:00
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-10-31 02:08:19 +01:00
|
|
|
bool GlobalShortcuts::IsKdeAvailable() const {
|
|
|
|
|
|
|
|
#ifdef HAVE_DBUS
|
|
|
|
return QDBusConnection::sessionBus().interface()->isServiceRegistered(GlobalShortcutBackendKDE::kKdeService);
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-01 20:07:29 +01:00
|
|
|
bool GlobalShortcuts::IsX11Available() const {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-11-29 07:41:30 +01:00
|
|
|
#ifdef HAVE_X11EXTRAS
|
2019-02-23 01:10:45 +01:00
|
|
|
return QX11Info::isPlatformX11();
|
2019-01-01 20:07:29 +01:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-01 20:07:29 +01:00
|
|
|
void GlobalShortcuts::Register() {
|
2020-10-31 02:08:19 +01:00
|
|
|
|
|
|
|
if (use_gsd_ && gsd_backend_ && gsd_backend_->Register()) return;
|
|
|
|
if (use_kde_ && kde_backend_ && kde_backend_->Register()) return;
|
2020-11-29 07:41:30 +01:00
|
|
|
#ifdef HAVE_X11EXTRAS // If this system has X11, only use the system backend if X11 is enabled in the global shortcut settings
|
2019-02-23 01:10:45 +01:00
|
|
|
if (use_x11_) {
|
|
|
|
#endif
|
|
|
|
if (system_backend_)
|
|
|
|
system_backend_->Register();
|
2020-11-29 07:41:30 +01:00
|
|
|
#ifdef HAVE_X11EXTRAS
|
2019-02-23 01:10:45 +01:00
|
|
|
}
|
2019-01-01 20:07:29 +01:00
|
|
|
#endif
|
2020-10-31 02:08:19 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-01-01 20:07:29 +01:00
|
|
|
void GlobalShortcuts::Unregister() {
|
2020-10-31 02:08:19 +01:00
|
|
|
|
|
|
|
if (gsd_backend_ && gsd_backend_->is_active()) gsd_backend_->Unregister();
|
|
|
|
if (kde_backend_ && kde_backend_->is_active()) kde_backend_->Unregister();
|
2019-01-01 20:07:29 +01:00
|
|
|
if (system_backend_ && system_backend_->is_active()) system_backend_->Unregister();
|
2020-10-31 02:08:19 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool GlobalShortcuts::IsMacAccessibilityEnabled() const {
|
2018-06-28 01:15:32 +02:00
|
|
|
#ifdef Q_OS_MACOS
|
2020-07-17 01:32:07 +02:00
|
|
|
if (system_backend_) return qobject_cast<GlobalShortcutBackendMacOS*>(system_backend_)->IsAccessibilityEnabled();
|
2019-01-01 20:07:29 +01:00
|
|
|
else return false;
|
2018-02-27 18:06:05 +01:00
|
|
|
#else
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalShortcuts::ShowMacAccessibilityDialog() {
|
2018-06-28 01:15:32 +02:00
|
|
|
#ifdef Q_OS_MACOS
|
2020-07-17 01:32:07 +02:00
|
|
|
if (system_backend_) qobject_cast<GlobalShortcutBackendMacOS*>(system_backend_)->ShowAccessibilityDialog();
|
2018-02-27 18:06:05 +01:00
|
|
|
#endif
|
|
|
|
}
|