X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=33c0dfbda8861688e01918fe368b6c0a75462bc8;hb=0e04bcf8b70e86b66020be74dcae4c210a97ea25;hp=68f1532ac208714c6a1db5ffe9299e01715c53f0;hpb=486bdd0ee6a197d0dfb0a1ca51785b8139a712a9;p=quassel.git diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 68f1532a..33c0dfbd 100644 --- a/src/uisupport/tabcompleter.cpp +++ b/src/uisupport/tabcompleter.cpp @@ -27,6 +27,9 @@ #include "network.h" #include "ircchannel.h" #include "ircuser.h" +#include "uisettings.h" + +#include TabCompleter::TabCompleter(InputLine *inputLine_) : QObject(inputLine_), @@ -34,15 +37,17 @@ TabCompleter::TabCompleter(InputLine *inputLine_) enabled(false), nickSuffix(": ") { + inputLine->installEventFilter(this); } void TabCompleter::buildCompletionList() { - completionList.clear(); - nextCompletion = completionList.begin(); + completionMap.clear(); // this is the first time tab is pressed -> build up the completion list and it's iterator QModelIndex currentIndex = Client::bufferModel()->currentIndex(); - if(!currentIndex.data(NetworkModel::BufferIdRole).isValid()) + if(!currentIndex.data(NetworkModel::BufferIdRole).isValid()) { + nextCompletion = completionMap.begin(); return; + } NetworkId networkId = currentIndex.data(NetworkModel::NetworkIdRole).value(); QString channelName = currentIndex.sibling(currentIndex.row(), 0).data().toString(); @@ -64,16 +69,16 @@ void TabCompleter::buildCompletionList() { this, SLOT(ircUserJoinedOrParted(IrcUser *))); */ - completionList.clear(); QString tabAbbrev = inputLine->text().left(inputLine->cursorPosition()).section(' ',-1,-1); - completionList.clear(); + QRegExp regex(QString("^[^a-zA-Z]*").append(QRegExp::escape(tabAbbrev)), Qt::CaseInsensitive); + foreach(IrcUser *ircUser, channel->ircUsers()) { - if(ircUser->nick().toLower().startsWith(tabAbbrev.toLower())) { - completionList << ircUser->nick(); + if(regex.indexIn(ircUser->nick()) > -1) { + completionMap[ircUser->nick().toLower()] = ircUser->nick(); } } - completionList.sort(); - nextCompletion = completionList.begin(); + + nextCompletion = completionMap.begin(); lastCompletionLength = tabAbbrev.length(); } @@ -83,12 +88,15 @@ void TabCompleter::ircUserJoinedOrParted(IrcUser *ircUser) { } void TabCompleter::complete() { + UiSettings uiSettings; + nickSuffix = uiSettings.value("CompletionSuffix", QString(": ")).toString(); + if(!enabled) { buildCompletionList(); enabled = true; } - if (nextCompletion != completionList.end()) { + if (nextCompletion != completionMap.end()) { // clear previous completion for (int i = 0; i < lastCompletionLength; i++) { inputLine->backspace(); @@ -109,7 +117,10 @@ void TabCompleter::complete() { // we're at the end of the list -> start over again } else { - nextCompletion = completionList.begin(); + if(!completionMap.isEmpty()) { + nextCompletion = completionMap.begin(); + complete(); + } } }