44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
// For license of this file, see <project-root-folder>/LICENSE.md.
|
|
|
|
#ifndef DYNAMICSHORTCUTSWIDGET_H
|
|
#define DYNAMICSHORTCUTSWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QGridLayout;
|
|
class ShortcutCatcher;
|
|
|
|
typedef QPair<QAction*, ShortcutCatcher*> ActionBinding;
|
|
|
|
class DynamicShortcutsWidget : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DynamicShortcutsWidget(QWidget* parent = nullptr);
|
|
virtual ~DynamicShortcutsWidget();
|
|
|
|
// Updates shortcuts of all actions according to changes.
|
|
// NOTE: No access to settings is done here.
|
|
// Shortcuts are fetched from settings when applications starts
|
|
// and stored back to settings when application quits.
|
|
void updateShortcuts();
|
|
|
|
// Returns true if all shortcuts are unique,
|
|
// otherwise false.
|
|
bool areShortcutsUnique() const;
|
|
|
|
// Populates this widget with shortcut widgets for given actions.
|
|
// NOTE: This gets initial shortcut for each action from its properties, NOT from
|
|
// the application settings, so shortcuts from settings need to be
|
|
// assigned to actions before calling this method.
|
|
void populate(QList<QAction*> actions);
|
|
|
|
signals:
|
|
void setupChanged();
|
|
|
|
private:
|
|
QGridLayout* m_layout;
|
|
QList<ActionBinding> m_actionBindings;
|
|
};
|
|
|
|
#endif // DYNAMICSHORTCUTSOVERVIEW_H
|