X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.cpp;h=cd82ee2b8d4f38e0fd87ce3ffdc69e871b0de6b1;hp=41ea4fffc469aa8ef23542a7a1dd9d15f4e84e92;hb=599218b03a48c53299b6c539208508a25f855164;hpb=d28b9ec38b6ea0bc473200fc2f1e65abd1b56bd6 diff --git a/src/uisupport/tabcompleter.cpp b/src/uisupport/tabcompleter.cpp index 41ea4fff..cd82ee2b 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,9 +37,14 @@ TabCompleter::TabCompleter(InputLine *inputLine_) enabled(false), nickSuffix(": ") { + inputLine->installEventFilter(this); } void TabCompleter::buildCompletionList() { + // ensure a safe state in case we return early. + completionMap.clear(); + nextCompletion = completionMap.begin(); + // 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()) @@ -45,7 +53,7 @@ void TabCompleter::buildCompletionList() { NetworkId networkId = currentIndex.data(NetworkModel::NetworkIdRole).value(); QString channelName = currentIndex.sibling(currentIndex.row(), 0).data().toString(); - Network *network = Client::network(networkId); + const Network *network = Client::network(networkId); if(!network) return; @@ -53,24 +61,26 @@ void TabCompleter::buildCompletionList() { if(!channel) return; + // FIXME commented for debugging + /* disconnect(this, SLOT(ircUserJoinedOrParted(IrcUser *))); connect(channel, SIGNAL(ircUserJoined(IrcUser *)), this, SLOT(ircUserJoinedOrParted(IrcUser *))); connect(channel, SIGNAL(ircUserParted(IrcUser *)), 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(); - } void TabCompleter::ircUserJoinedOrParted(IrcUser *ircUser) { @@ -79,12 +89,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(); @@ -105,7 +118,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(); + } } } @@ -114,3 +130,18 @@ void TabCompleter::reset() { enabled = false; } +bool TabCompleter::eventFilter(QObject *obj, QEvent *event) { + if(obj != inputLine || event->type() != QEvent::KeyPress) + return QObject::eventFilter(obj, event); + + QKeyEvent *keyEvent = static_cast(event); + + if(keyEvent->key() == Qt::Key_Tab) { + complete(); + return true; + } else { + reset(); + return false; + } +} +