/* * Copyright (c) 2022 Meltytech, LLC * * This program 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. * * This program 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 this program. If not, see . */ #ifndef ACTIONS_H #define ACTIONS_H #include #include class QAction; class QMenu; class ShotcutActions : public QObject { Q_OBJECT public: static const char *hardKeyProperty; static const char *displayProperty; static const char *defaultKey1Property; static const char *defaultKey2Property; static const char *defaultToolTipProperty; static ShotcutActions &singleton(); explicit ShotcutActions() : QObject() {} void add(const QString &name, QAction *action, QString group = ""); void loadFromMenu(QMenu *menu, const QString group = ""); QAction *operator[](const QString &key); QList keys(); void overrideShortcuts(const QString &key, QList shortcuts); void initializeShortcuts(); private: void addShortcutToToolTip(QAction *action); QHash m_actions; }; #define Actions ShotcutActions::singleton() #endif // ACTIONS_H