#include "gui/dynamicshortcutswidget.h" #include "core/defs.h" #include "gui/shortcutcatcher.h" #include "gui/shortcutbutton.h" #include #include #include #include #include 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 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 (const ActionBinding &binding, m_actionBindings) { binding.first->setShortcut(binding.second->shortcut()); } } void DynamicShortcutsWidget::populate(const QList 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 new_binding; new_binding.first = action; new_binding.second = catcher; m_actionBindings << new_binding; // Add new catcher to our control. QLabel *action_label = new QLabel(this); action_label->setText(action->text().remove('&')); action_label->setToolTip(action->toolTip()); action_label->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred); QLabel *action_icon = new QLabel(this); action_icon->setPixmap(action->icon().pixmap(ICON_SIZE_SETTINGS, ICON_SIZE_SETTINGS)); action_icon->setToolTip(action->toolTip()); m_layout->addWidget(action_icon, row_id, 0); m_layout->addWidget(action_label, row_id, 1); m_layout->addWidget(catcher, row_id, 2); row_id++; } // Make sure that "spacer" is added. m_layout->setRowStretch(row_id, 1); m_layout->setColumnStretch(1, 1); }