X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Faction.cpp;h=700cce5a57ab59f78a8db2201a7923b279a57008;hp=c98c321b785cb60fe6bdd505c8c0d9d6a59f364a;hb=952da9aeecc6c778a7c3cd62b1ecfdc13b24bc8b;hpb=41dd93ccb2696dced0e27e213ee7a3a75c9044a8 diff --git a/src/uisupport/action.cpp b/src/uisupport/action.cpp index c98c321b..700cce5a 100644 --- a/src/uisupport/action.cpp +++ b/src/uisupport/action.cpp @@ -16,4 +16,66 @@ * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + *************************************************************************** + * Parts of this implementation are taken from KDE's kaction.cpp * ***************************************************************************/ + +#include + +#include "action.h" + +Action::Action(QObject *parent) : QWidgetAction(parent) { + init(); +} + +Action::Action(const QString &text, QObject *parent) : QWidgetAction(parent) { + init(); + setText(text); +} + +Action::Action(const QIcon &icon, const QString &text, QObject *parent) : QWidgetAction(parent) { + init(); + setIcon(icon); + setText(text); +} + +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); + if(type == DefaultShortcut) + return property("defaultShortcut").value(); + + if(shortcuts().count()) return shortcuts().value(0); + return QKeySequence(); +} + +void Action::setShortcut(const QShortcut &shortcut, ShortcutTypes type) { + setShortcut(shortcut.key(), type); +} + +void Action::setShortcut(const QKeySequence &key, ShortcutTypes type) { + Q_ASSERT(type); + + if(type & DefaultShortcut) + setProperty("defaultShortcut", key); + + if(type & ActiveShortcut) + QAction::setShortcut(key); +}