2010-06-17 22:31:34 +02:00
|
|
|
/* This file is part of Clementine.
|
2014-11-02 19:36:21 +01:00
|
|
|
Copyright 2010, David Sansome <davidsansome@gmail.com>
|
|
|
|
Copyright 2010, 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
2010-06-17 22:31:34 +02:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#ifndef CORE_MACGLOBALSHORTCUTBACKEND_H_
|
|
|
|
#define CORE_MACGLOBALSHORTCUTBACKEND_H_
|
2010-06-17 22:31:34 +02:00
|
|
|
|
2020-09-18 16:15:19 +02:00
|
|
|
#include <QKeySequence>
|
|
|
|
#include <QMap>
|
2014-02-06 14:48:00 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2010-06-17 22:31:34 +02:00
|
|
|
#include "globalshortcutbackend.h"
|
|
|
|
|
|
|
|
class MacGlobalShortcutBackendPrivate;
|
|
|
|
class QAction;
|
|
|
|
|
|
|
|
class MacGlobalShortcutBackend : public GlobalShortcutBackend {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2014-11-01 19:26:05 +01:00
|
|
|
explicit MacGlobalShortcutBackend(GlobalShortcuts* parent);
|
2010-06-17 22:31:34 +02:00
|
|
|
virtual ~MacGlobalShortcutBackend();
|
|
|
|
|
2010-06-18 01:11:51 +02:00
|
|
|
bool IsAccessibilityEnabled() const;
|
|
|
|
void ShowAccessibilityDialog();
|
2010-06-18 00:15:07 +02:00
|
|
|
|
2010-06-17 22:31:34 +02:00
|
|
|
void MacMediaKeyPressed(int key);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
protected:
|
2010-06-17 22:31:34 +02:00
|
|
|
bool DoRegister();
|
|
|
|
void DoUnregister();
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-09-13 12:14:46 +02:00
|
|
|
bool KeyPressed(const QKeySequence& sequence);
|
2010-06-17 22:31:34 +02:00
|
|
|
|
|
|
|
QMap<QKeySequence, QAction*> shortcuts_;
|
|
|
|
|
2010-06-17 23:33:16 +02:00
|
|
|
friend class MacGlobalShortcutBackendPrivate;
|
2014-02-06 14:48:00 +01:00
|
|
|
std::unique_ptr<MacGlobalShortcutBackendPrivate> p_;
|
2010-06-17 22:31:34 +02:00
|
|
|
};
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#endif // CORE_MACGLOBALSHORTCUTBACKEND_H_
|