X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=5d2bf027b680dc0129c30035bac06656c85e72db;hp=5f7b0837bf21ee5a8a16ef9668d7281d0c72b611;hb=18931d024940d902ed8b1e241fbdeb98d2f1b424;hpb=84381d6b74a31c8b1b6468fa490621f8a7a32c23 diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 5f7b0837..5d2bf027 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -28,6 +28,9 @@ #include "network.h" #include "networkmodel.h" #include "uisettings.h" +#include "action.h" +#include "actioncollection.h" +#include "graphicalui.h" #include @@ -42,7 +45,16 @@ 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 _lineEdit->installEventFilter(this); + ActionCollection *coll = GraphicalUi::actionCollection("General"); + coll->addAction("TabCompletionKey", new Action(tr("Tab completion"), coll, + this, SLOT(onTabCompletionKey()), QKeySequence(Qt::Key_Tab))); +} + +void TabCompleter::onTabCompletionKey() { + complete(); } void TabCompleter::buildCompletionList() { @@ -132,6 +144,7 @@ void TabCompleter::complete() { _lastCompletionLength += _nickSuffix.length(); } else if (s.addSpaceMidSentence()) { _lineEdit->insert(" "); + _lastCompletionLength++; } // we're at the end of the list -> start over again @@ -153,13 +166,10 @@ bool TabCompleter::eventFilter(QObject *obj, QEvent *event) { QKeyEvent *keyEvent = static_cast(event); - if(keyEvent->key() == Qt::Key_Tab) { - complete(); - return true; - } else { + if(keyEvent->key() != GraphicalUi::actionCollection("General")->action("TabCompletionKey")->shortcut()) { reset(); - return false; } + return false; } // this determines the sort order