82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
#include <QGridLayout>
|
|
#include <QAction>
|
|
#include <QLabel>
|
|
#include <QSpacerItem>
|
|
#include <QPalette>
|
|
|
|
#include "gui/dynamicshortcutswidget.h"
|
|
#include "gui/shortcutcatcher.h"
|
|
#include "gui/shortcutbutton.h"
|
|
|
|
|
|
DynamicShortcutsWidget::DynamicShortcutsWidget(QWidget *parent) : QWidget(parent) {
|
|
// Create layout for this control and set is as active.
|
|
m_layout = new QGridLayout(this);
|
|
m_layout->setMargin(0);
|
|
|
|
setLayout(m_layout);
|
|
}
|
|
|
|
DynamicShortcutsWidget::~DynamicShortcutsWidget() {
|
|
delete m_layout;
|
|
}
|
|
|
|
bool DynamicShortcutsWidget::areShortcutsUnique() {
|
|
QList<QKeySequence> all_shortcuts;
|
|
|
|
// Obtain all shortcuts.
|
|
foreach (const ActionBinding &binding, m_actionBindings) {
|
|
QKeySequence new_shortcut = binding.second->shortcut();
|
|
|
|
if (all_shortcuts.contains(new_shortcut) && !new_shortcut.isEmpty()) {
|
|
// Problem, two identical non-empty shortcuts found.
|
|
return false;
|
|
}
|
|
else {
|
|
all_shortcuts.append(binding.second->shortcut());
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void DynamicShortcutsWidget::updateShortcuts() {
|
|
foreach (ActionBinding binding, m_actionBindings) {
|
|
binding.first->setShortcut(binding.second->shortcut());
|
|
}
|
|
}
|
|
|
|
void DynamicShortcutsWidget::populate(const QList<QAction *> actions) {
|
|
m_actionBindings.clear();
|
|
|
|
int row_id = 0;
|
|
|
|
foreach (QAction *action, actions) {
|
|
// Create shortcut catcher for this action and set default shortcut.
|
|
ShortcutCatcher *catcher = new ShortcutCatcher(this);
|
|
catcher->setShortcut(action->shortcut());
|
|
|
|
// Store information for re-initialization of shortcuts
|
|
// of actions when widget gets "confirmed".
|
|
QPair<QAction*,ShortcutCatcher*> new_binding;
|
|
new_binding.first = action;
|
|
new_binding.second = catcher;
|
|
|
|
m_actionBindings << new_binding;
|
|
|
|
// Add new catcher to our control.
|
|
QLabel *label = new QLabel(this);
|
|
label->setText(action->text().remove('&'));
|
|
label->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred);
|
|
|
|
m_layout->addWidget(label, row_id, 0);
|
|
m_layout->addWidget(catcher, row_id, 1);
|
|
|
|
row_id++;
|
|
}
|
|
|
|
// Make sure that "spacer" is added.
|
|
m_layout->setRowStretch(row_id, 1);
|
|
m_layout->setColumnStretch(0, 1);
|
|
}
|