Rename NickCompletionSettings to TabCompletionSettings
[quassel.git] / src / client / clientuserinputhandler.cpp
1 /***************************************************************************
2 *   Copyright (C) 2005-09 by the Quassel Project                          *
3 *   devel@quassel-irc.org                                                 *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) version 3.                                           *
9 *                                                                         *
10 *   This program is distributed in the hope that it will be useful,       *
11 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 *   GNU General Public License for more details.                          *
14 *                                                                         *
15 *   You should have received a copy of the GNU General Public License     *
16 *   along with this program; if not, write to the                         *
17 *   Free Software Foundation, Inc.,                                       *
18 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19 ***************************************************************************/
20
21 #include <QDateTime>
22
23 #include "client.h"
24 #include "clientuserinputhandler.h"
25 #include "clientsettings.h"
26 #include "ircuser.h"
27 #include "network.h"
28
29 ClientUserInputHandler::ClientUserInputHandler(QObject *parent) : QObject(parent) {
30   TabCompletionSettings s;
31   s.notify("CompletionSuffix", this, SLOT(completionSuffixChanged(QVariant)));
32   completionSuffixChanged(s.completionSuffix());
33 }
34
35 void ClientUserInputHandler::completionSuffixChanged(const QVariant &v) {
36   QString suffix = v.toString();
37   QString letter = "A-Za-z";
38   QString special = "\x5b-\x60\x7b-\x7d";
39   _nickRx = QRegExp(QString("^([%1%2][%1%2\\d-]*)%3").arg(letter, special, suffix).trimmed());
40 }
41
42 // this would be the place for a client-side hook
43 void ClientUserInputHandler::handleUserInput(const BufferInfo &bufferInfo, const QString &msg) {
44   // check if we addressed a user and update its timestamp in that case
45   if(bufferInfo.type() == BufferInfo::ChannelBuffer) {
46     if(!msg.startsWith('/')) {
47       if(_nickRx.indexIn(msg) == 0) {
48         const Network *net = Client::network(bufferInfo.networkId());
49         IrcUser *user = net ? net->ircUser(_nickRx.cap(1)) : 0;
50         if(user)
51           user->setLastSpokenTo(bufferInfo.bufferId(), QDateTime::currentDateTime().toUTC());
52       }
53     }
54   }
55   emit sendInput(bufferInfo, msg);
56 }