X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Factioncollection.cpp;fp=src%2Fuisupport%2Factioncollection.cpp;h=e34336cf1cfefad72f91db873cf89671172993bc;hp=af5c9241928525b20a0063f15cba3969d8de620b;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805 diff --git a/src/uisupport/actioncollection.cpp b/src/uisupport/actioncollection.cpp index af5c9241..e34336cf 100644 --- a/src/uisupport/actioncollection.cpp +++ b/src/uisupport/actioncollection.cpp @@ -20,23 +20,22 @@ * Parts of this implementation are based on KDE's KActionCollection. * ***************************************************************************/ +#include "actioncollection.h" + #include #include #include -#include "actioncollection.h" - #include "action.h" #include "uisettings.h" -void ActionCollection::addActions(const std::vector> &actions) +void ActionCollection::addActions(const std::vector>& actions) { - for (auto &&p : actions) { + for (auto&& p : actions) { addAction(p.first, p.second); } } - #ifndef HAVE_KDE int ActionCollection::count() const @@ -44,7 +43,6 @@ int ActionCollection::count() const return actions().count(); } - bool ActionCollection::isEmpty() const { return actions().count(); @@ -57,19 +55,17 @@ void ActionCollection::clear() _actions.clear(); } - -QAction *ActionCollection::action(const QString &name) const +QAction* ActionCollection::action(const QString& name) const { return _actionByName.value(name, 0); } - -QList ActionCollection::actions() const +QList ActionCollection::actions() const { return _actions; } -QAction *ActionCollection::addAction(const QString &name, QAction *action) +QAction* ActionCollection::addAction(const QString& name, QAction* action) { if (!action) return action; @@ -82,13 +78,13 @@ QAction *ActionCollection::addAction(const QString &name, QAction *action) else action->setObjectName(indexName); if (indexName.isEmpty()) - indexName = indexName.sprintf("unnamed-%p", (void *)action); + indexName = indexName.sprintf("unnamed-%p", (void*)action); // do we already have this action? if (_actionByName.value(indexName, 0) == action) return action; // or maybe another action under this name? - if (QAction *oldAction = _actionByName.value(indexName)) + if (QAction* oldAction = _actionByName.value(indexName)) takeAction(oldAction); // do we already have this action under a different name? @@ -102,7 +98,7 @@ QAction *ActionCollection::addAction(const QString &name, QAction *action) _actionByName.insert(indexName, action); _actions.append(action); - foreach(QWidget *widget, _associatedWidgets) { + foreach (QWidget* widget, _associatedWidgets) { widget->addAction(action); } @@ -116,19 +112,17 @@ QAction *ActionCollection::addAction(const QString &name, QAction *action) return action; } - -void ActionCollection::removeAction(QAction *action) +void ActionCollection::removeAction(QAction* action) { delete takeAction(action); } - -QAction *ActionCollection::takeAction(QAction *action) +QAction* ActionCollection::takeAction(QAction* action) { if (!unlistAction(action)) return nullptr; - foreach(QWidget *widget, _associatedWidgets) { + foreach (QWidget* widget, _associatedWidgets) { widget->removeAction(action); } @@ -136,27 +130,25 @@ QAction *ActionCollection::takeAction(QAction *action) return action; } - void ActionCollection::readSettings() { ShortcutSettings s; QStringList savedShortcuts = s.savedShortcuts(); - foreach(const QString &name, _actionByName.keys()) { + foreach (const QString& name, _actionByName.keys()) { if (!savedShortcuts.contains(name)) continue; - auto *action = qobject_cast(_actionByName.value(name)); + auto* action = qobject_cast(_actionByName.value(name)); if (action) action->setShortcut(s.loadShortcut(name), Action::ActiveShortcut); } } - void ActionCollection::writeSettings() const { ShortcutSettings s; - foreach(const QString &name, _actionByName.keys()) { - auto *action = qobject_cast(_actionByName.value(name)); + foreach (const QString& name, _actionByName.keys()) { + auto* action = qobject_cast(_actionByName.value(name)); if (!action) continue; if (!action->isShortcutConfigurable()) @@ -167,32 +159,29 @@ void ActionCollection::writeSettings() const } } - void ActionCollection::slotActionTriggered() { - auto *action = qobject_cast(sender()); + auto* action = qobject_cast(sender()); if (action) emit actionTriggered(action); } - void ActionCollection::slotActionHovered() { - auto *action = qobject_cast(sender()); + auto* action = qobject_cast(sender()); if (action) emit actionHovered(action); } - -void ActionCollection::actionDestroyed(QObject *obj) +void ActionCollection::actionDestroyed(QObject* obj) { // remember that this is not an QAction anymore at this point - auto *action = static_cast(obj); + auto* action = static_cast(obj); unlistAction(action); } -void ActionCollection::connectNotify(const QMetaMethod &signal) +void ActionCollection::connectNotify(const QMetaMethod& signal) { if (_connectHovered && _connectTriggered) return; @@ -200,32 +189,30 @@ void ActionCollection::connectNotify(const QMetaMethod &signal) if (QMetaMethod::fromSignal(&ActionCollection::actionHovered) == signal) { if (!_connectHovered) { _connectHovered = true; - foreach(QAction* action, actions()) - connect(action, &QAction::hovered, this, &ActionCollection::slotActionHovered); + foreach (QAction* action, actions()) + connect(action, &QAction::hovered, this, &ActionCollection::slotActionHovered); } } else if (QMetaMethod::fromSignal(&ActionCollection::actionTriggered) == signal) { if (!_connectTriggered) { _connectTriggered = true; - foreach(QAction* action, actions()) - connect(action, &QAction::triggered, this, &ActionCollection::slotActionTriggered); + foreach (QAction* action, actions()) + connect(action, &QAction::triggered, this, &ActionCollection::slotActionTriggered); } } QObject::connectNotify(signal); } - -void ActionCollection::associateWidget(QWidget *widget) const +void ActionCollection::associateWidget(QWidget* widget) const { - foreach(QAction *action, actions()) { + foreach (QAction* action, actions()) { if (!widget->actions().contains(action)) widget->addAction(action); } } - -void ActionCollection::addAssociatedWidget(QWidget *widget) +void ActionCollection::addAssociatedWidget(QWidget* widget) { if (!_associatedWidgets.contains(widget)) { widget->addActions(actions()); @@ -234,44 +221,40 @@ void ActionCollection::addAssociatedWidget(QWidget *widget) } } - -void ActionCollection::removeAssociatedWidget(QWidget *widget) +void ActionCollection::removeAssociatedWidget(QWidget* widget) { - foreach(QAction *action, actions()) - widget->removeAction(action); + foreach (QAction* action, actions()) + widget->removeAction(action); _associatedWidgets.removeAll(widget); disconnect(widget, &QObject::destroyed, this, &ActionCollection::associatedWidgetDestroyed); } - -QList ActionCollection::associatedWidgets() const +QList ActionCollection::associatedWidgets() const { return _associatedWidgets; } - void ActionCollection::clearAssociatedWidgets() { - foreach(QWidget *widget, _associatedWidgets) - foreach(QAction *action, actions()) - widget->removeAction(action); + foreach (QWidget* widget, _associatedWidgets) + foreach (QAction* action, actions()) + widget->removeAction(action); _associatedWidgets.clear(); } - -void ActionCollection::associatedWidgetDestroyed(QObject *obj) +void ActionCollection::associatedWidgetDestroyed(QObject* obj) { - _associatedWidgets.removeAll(static_cast(obj)); + _associatedWidgets.removeAll(static_cast(obj)); } - -bool ActionCollection::unlistAction(QAction *action) +bool ActionCollection::unlistAction(QAction* action) { // This might be called with a partly destroyed QAction! int index = _actions.indexOf(action); - if (index == -1) return false; + if (index == -1) + return false; QString name = action->objectName(); _actionByName.remove(name);