/*
Copyright 2006-2026 The QElectroTech Team
This file is part of QElectroTech.
QElectroTech 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 2 of the License, or
(at your option) any later version.
QElectroTech 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 QElectroTech. If not, see .
*/
#ifndef SHORTCUTMANAGER_H
#define SHORTCUTMANAGER_H
#include
#include
#include
#include
#include
#include
class QObject;
/**
@brief The ShortcutManager class
App-wide registry of every rebindable shortcut, carried by either a
QAction or a QAbstractButton -- both declare an identical "shortcut"
Q_PROPERTY of type QKeySequence, which this class targets generically via
QObject so it doesn't need a separate code path for the handful of
QAbstractButton-based shortcuts (e.g. a QPushButton acting as a shortcut-
only trigger).
Every place in the code that used to call setShortcut() directly now
calls registerAction() instead, giving each shortcut a stable string id, a
category (for grouping in the UI) and a hardcoded default sequence.
registerAction() applies the user's saved override for that id (if any),
falling back to the default, and remembers the target so the Shortcuts
configuration page can list, edit and persist it.
Several targets can share the same id at once, since QET allows several
windows of the same kind (diagram editor, element editor...) to be open
simultaneously, each with its own QAction. setSequence() updates every
live target for a given id in one call.
*/
class ShortcutManager
{
public:
static ShortcutManager &instance();
struct ShortcutInfo {
QString id;
QString category;
QString description;
QKeySequence default_sequence;
QKeySequence current_sequence;
};
void registerAction(QObject *target, const QString &id,
const QString &category,
const QKeySequence &default_sequence);
QList allShortcuts() const;
QKeySequence currentSequence(const QString &id) const;
void setSequence(const QString &id, const QKeySequence &sequence);
void resetToDefault(const QString &id);
void resetAllToDefaults();
private:
ShortcutManager() = default;
ShortcutManager(const ShortcutManager &) = delete;
void operator=(const ShortcutManager &) = delete;
struct Entry {
QString category;
QString description;
QKeySequence default_sequence;
QList> targets;
};
QKeySequence savedSequence(const QString &id, const QKeySequence &default_sequence) const;
QHash m_entries;
QStringList m_order;
};
#endif // SHORTCUTMANAGER_H