X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=f13636c6683542dfafaf1cdfa666e87c0d07e6aa;hb=d6c4d8ee992a7e7f883b5d1fd9d77f7b340777d7;hp=8c29e8ab6f8950c4ec6323afaaff0ee554adf884;hpb=c030e0d5e910fe8af376e5462c9e58d45fd59e40;p=quassel.git diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 8c29e8ab..f13636c6 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_), @@ -38,12 +41,13 @@ TabCompleter::TabCompleter(InputLine *inputLine_) } 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(); @@ -65,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(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(); } @@ -84,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(); @@ -110,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(); + } } }