X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=5cc80c9d8692a8d5a75588a44498ec6f52b68aae;hp=da6b074177378b2fc2804a8bec7b7fd16a716923;hb=ba5a098f200be1968d198b1325c45b943c797a3b;hpb=04315f46a16fc3627218377071e008b6b9744992 diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index da6b0741..5cc80c9d 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2014 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -45,18 +45,19 @@ TabCompleter::TabCompleter(MultiLineEdit *_lineEdit) _enabled(false), _nickSuffix(": ") { - // use both an Action and generic eventFilter, to make the shortcut configurable - // yet still be able to reset() when required + // This Action just serves as a container for the custom shortcut and isn't actually handled; + // apparently, using tab as an Action shortcut in an input widget is unreliable on some platforms (e.g. OS/2) _lineEdit->installEventFilter(this); ActionCollection *coll = GraphicalUi::actionCollection("General"); - coll->addAction("TabCompletionKey", new Action(tr("Tab completion"), coll, + QAction *a = coll->addAction("TabCompletionKey", new Action(tr("Tab completion"), coll, this, SLOT(onTabCompletionKey()), QKeySequence(Qt::Key_Tab))); + a->setEnabled(false); // avoid catching the shortcut } void TabCompleter::onTabCompletionKey() { - complete(); + // do nothing; we use the event filter instead } @@ -179,9 +180,11 @@ bool TabCompleter::eventFilter(QObject *obj, QEvent *event) QKeyEvent *keyEvent = static_cast(event); - if (keyEvent->key() != GraphicalUi::actionCollection("General")->action("TabCompletionKey")->shortcut()) { + if (keyEvent->key() == GraphicalUi::actionCollection("General")->action("TabCompletionKey")->shortcut()[0]) + complete(); + else reset(); - } + return false; }