X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Faction.cpp;h=4fc2ea812304d584120970dad1824829ba44a703;hb=a8ab790b2218d6131f12b622b1373ba62958f3ef;hp=216cac846f0b80fd1dfce35cdf3dd1d9118bde0c;hpb=c878493af33f5d01e07360bebdbe06131ded5015;p=quassel.git diff --git a/src/uisupport/action.cpp b/src/uisupport/action.cpp index 216cac84..4fc2ea81 100644 --- a/src/uisupport/action.cpp +++ b/src/uisupport/action.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -24,77 +24,41 @@ #include -Action::Action(QObject *parent) -#ifdef HAVE_KDE4 - : KAction(parent) -#else +Action::Action(QObject* parent) : QWidgetAction(parent) -#endif { - init(); + setProperty("isShortcutConfigurable", true); + connect(this, &QAction::triggered, this, &Action::slotTriggered); } - -Action::Action(const QString &text, QObject *parent, const QObject *receiver, const char *slot, const QKeySequence &shortcut) -#ifdef HAVE_KDE4 - : KAction(parent) -#else - : QWidgetAction(parent) -#endif +Action::Action(const QString& text, QObject* parent, const QKeySequence& shortcut) + : Action(parent) { - init(); setText(text); setShortcut(shortcut); - if (receiver && slot) - connect(this, SIGNAL(triggered()), receiver, slot); } - -Action::Action(const QIcon &icon, const QString &text, QObject *parent, const QObject *receiver, const char *slot, const QKeySequence &shortcut) -#ifdef HAVE_KDE4 - : KAction(parent) -#else - : QWidgetAction(parent) -#endif +Action::Action(const QIcon& icon, const QString& text, QObject* parent, const QKeySequence& shortcut) + : Action(text, parent, shortcut) { - init(); setIcon(icon); - setText(text); - setShortcut(shortcut); - if (receiver && slot) - connect(this, SIGNAL(triggered()), receiver, slot); } - -#ifdef HAVE_KDE4 -void Action::init() {} -#else -void Action::init() -{ - connect(this, SIGNAL(triggered(bool)), this, SLOT(slotTriggered())); - - setProperty("isShortcutConfigurable", true); -} - - void Action::slotTriggered() { emit triggered(QApplication::mouseButtons(), QApplication::keyboardModifiers()); } - bool Action::isShortcutConfigurable() const { return property("isShortcutConfigurable").toBool(); } - void Action::setShortcutConfigurable(bool b) { setProperty("isShortcutConfigurable", b); } - QKeySequence Action::shortcut(ShortcutTypes type) const { Q_ASSERT(type); @@ -106,23 +70,18 @@ QKeySequence Action::shortcut(ShortcutTypes type) const return shortcuts().isEmpty() ? QKeySequence() : shortcuts().first(); } - -void Action::setShortcut(const QShortcut &shortcut, ShortcutTypes type) +void Action::setShortcut(const QShortcut& shortcut, ShortcutTypes type) { setShortcut(shortcut.key(), type); } - -void Action::setShortcut(const QKeySequence &key, ShortcutTypes type) +void Action::setShortcut(const QKeySequence& key, ShortcutTypes type) { Q_ASSERT(type); - if (type & DefaultShortcut) + if (type & DefaultShortcut) { setProperty("defaultShortcuts", QVariant::fromValue(QList() << key)); - + } if (type & ActiveShortcut) QAction::setShortcut(key); } - - -#endif /* HAVE_KDE4 */