mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-09-27 12:34:14 +02:00
2da101ca90
Pressing S on a folio opens the element picker at the cursor with a row
of commands above it, chosen by what is selected, like the SolidWorks
shortcut bar:
nothing selected insert last element, element picker, text, line,
rectangle, terminal strip plan, paste, folio
properties
elements selected rotate, rotate texts, edit, copy, cut, delete
only conductors reset path, edit, delete
Each row is a list of ShortcutManager ids, so any registered command can
go on it and the bar carries no command list of its own. The lists are
in QSettings (diagrameditor/shortcut_bar/<context>); a context the user
has not changed follows the defaults. A disabled command keeps its
place, greyed, so a row looks the same each time. Clicking a button
closes the bar and triggers the action.
A new configuration page, "Barre de raccourcis", edits the three lists:
add, remove and reorder any diagram editor command.
To make that possible:
- ShortcutManager::action(id, owner) returns the action a given window
registered under an id, since each editor window registers its own.
- The add-item actions (text, image, shapes, terminal strip plan) are
registered as diagrameditor.add_<kind>, with no default key. They also
appear in the Shortcuts page and can now be bound.
Discussion #1033.
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01G2d2Zi8BfrYRPX88zhaoFG
(cherry picked from commit 53c1e213282b9f7226ca1c09e81703113236bb88)
123 lines
3.7 KiB
C++
123 lines
3.7 KiB
C++
/*
|
|
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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "shortcutbarsettings.h"
|
|
|
|
#include <QCoreApplication>
|
|
#include <QSettings>
|
|
|
|
namespace {
|
|
QString settingsKey(ShortcutBarSettings::Context context)
|
|
{
|
|
switch (context)
|
|
{
|
|
case ShortcutBarSettings::Canvas:
|
|
return QStringLiteral("diagrameditor/shortcut_bar/canvas");
|
|
case ShortcutBarSettings::Selection:
|
|
return QStringLiteral("diagrameditor/shortcut_bar/selection");
|
|
case ShortcutBarSettings::Conductor:
|
|
return QStringLiteral("diagrameditor/shortcut_bar/conductor");
|
|
}
|
|
return QString();
|
|
}
|
|
}
|
|
|
|
/**
|
|
@return every context, in the order they are shown to the user
|
|
*/
|
|
QList<ShortcutBarSettings::Context> ShortcutBarSettings::contexts()
|
|
{
|
|
return {Canvas, Selection, Conductor};
|
|
}
|
|
|
|
/**
|
|
@return the name of @a context, for the configuration page
|
|
*/
|
|
QString ShortcutBarSettings::title(Context context)
|
|
{
|
|
switch (context)
|
|
{
|
|
case Canvas:
|
|
return QCoreApplication::translate("ShortcutBarSettings", "Folio, rien de sélectionné");
|
|
case Selection:
|
|
return QCoreApplication::translate("ShortcutBarSettings", "Éléments sélectionnés");
|
|
case Conductor:
|
|
return QCoreApplication::translate("ShortcutBarSettings", "Conducteurs sélectionnés");
|
|
}
|
|
return QString();
|
|
}
|
|
|
|
/**
|
|
@return the ids to show for @a context: the user's list if they saved
|
|
one, the defaults otherwise. A saved empty list stays empty.
|
|
*/
|
|
QStringList ShortcutBarSettings::ids(Context context)
|
|
{
|
|
QSettings settings;
|
|
const QString key = settingsKey(context);
|
|
if (!settings.contains(key)) {
|
|
return defaultIds(context);
|
|
}
|
|
return settings.value(key).toStringList();
|
|
}
|
|
|
|
/**
|
|
@return the commands a new user sees for @a context
|
|
*/
|
|
QStringList ShortcutBarSettings::defaultIds(Context context)
|
|
{
|
|
switch (context)
|
|
{
|
|
case Canvas:
|
|
return {QStringLiteral("diagrameditor.insert_last_element"),
|
|
QStringLiteral("diagrameditor.show_element_picker"),
|
|
QStringLiteral("diagrameditor.add_text"),
|
|
QStringLiteral("diagrameditor.add_line"),
|
|
QStringLiteral("diagrameditor.add_rectangle"),
|
|
QStringLiteral("diagrameditor.add_terminal_strip"),
|
|
QStringLiteral("diagrameditor.paste"),
|
|
QStringLiteral("diagrameditor.edit_diagram_properties")};
|
|
case Selection:
|
|
return {QStringLiteral("diagrameditor.rotate_selection"),
|
|
QStringLiteral("diagrameditor.rotate_texts"),
|
|
QStringLiteral("diagrameditor.edit_selection"),
|
|
QStringLiteral("diagrameditor.copy"),
|
|
QStringLiteral("diagrameditor.cut"),
|
|
QStringLiteral("diagrameditor.delete_selection")};
|
|
case Conductor:
|
|
return {QStringLiteral("diagrameditor.conductor_reset"),
|
|
QStringLiteral("diagrameditor.edit_selection"),
|
|
QStringLiteral("diagrameditor.delete_selection")};
|
|
}
|
|
return {};
|
|
}
|
|
|
|
/**
|
|
@brief ShortcutBarSettings::setIds
|
|
Save @a ids for @a context. Saving the defaults removes the key, so a
|
|
later change of defaults still reaches this user.
|
|
*/
|
|
void ShortcutBarSettings::setIds(Context context, const QStringList &ids)
|
|
{
|
|
QSettings settings;
|
|
if (ids == defaultIds(context)) {
|
|
settings.remove(settingsKey(context));
|
|
} else {
|
|
settings.setValue(settingsKey(context), ids);
|
|
}
|
|
}
|