X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fircuser.cpp;h=affd64b749ad47f4a32ee2e969be227e4ccc06c5;hp=bc3414377dfa67f991abd9b0b69fd6be5c4f2f83;hb=dcc90a564e00e206f05db224f1654c8907f149f4;hpb=0ff076706c3d353ec9b098b1eca270195288774e diff --git a/src/common/ircuser.cpp b/src/common/ircuser.cpp index bc341437..affd64b7 100644 --- a/src/common/ircuser.cpp +++ b/src/common/ircuser.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel Team * + * Copyright (C) 2005-07 by the Quassel IRC Team * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -25,6 +25,7 @@ #include "signalproxy.h" #include "ircchannel.h" +#include #include IrcUser::IrcUser(const QString &hostmask, NetworkInfo *networkinfo) @@ -33,12 +34,15 @@ IrcUser::IrcUser(const QString &hostmask, NetworkInfo *networkinfo) _nick(nickFromMask(hostmask)), _user(userFromMask(hostmask)), _host(hostFromMask(hostmask)), - networkInfo(networkinfo) + networkInfo(networkinfo), + _codecForEncoding(0), + _codecForDecoding(0) { - setObjectName(QString::number(networkInfo->networkId()) + "/" + IrcUser::hostmask()); + updateObjectName(); } IrcUser::~IrcUser() { + //qDebug() << nick() << "destroyed."; } // ==================== @@ -69,12 +73,48 @@ QString IrcUser::userModes() const { } QStringList IrcUser::channels() const { - return _channels.toList(); + QStringList chanList; + IrcChannel *channel; + foreach(channel, _channels) { + chanList << channel->name(); + } + return chanList; } -void IrcUser::updateObjectName() { - setObjectName(QString::number(networkInfo->networkId()) + "/" + hostmask()); - emit objectNameSet(); +QTextCodec *IrcUser::codecForEncoding() const { + return _codecForEncoding; +} + +void IrcUser::setCodecForEncoding(const QString &name) { + setCodecForEncoding(QTextCodec::codecForName(name.toAscii())); +} + +void IrcUser::setCodecForEncoding(QTextCodec *codec) { + _codecForEncoding = codec; +} + +QTextCodec *IrcUser::codecForDecoding() const { + return _codecForDecoding; +} + +void IrcUser::setCodecForDecoding(const QString &name) { + setCodecForDecoding(QTextCodec::codecForName(name.toAscii())); +} + +void IrcUser::setCodecForDecoding(QTextCodec *codec) { + _codecForDecoding = codec; +} + +QString IrcUser::decodeString(const QByteArray &text) const { + if(!codecForDecoding()) return networkInfo->decodeString(text); + return ::decodeString(text, codecForDecoding()); +} + +QByteArray IrcUser::encodeString(const QString string) const { + if(codecForEncoding()) { + return codecForEncoding()->fromUnicode(string); + } + return networkInfo->encodeString(string); } // ==================== @@ -84,9 +124,6 @@ void IrcUser::setUser(const QString &user) { if(!user.isEmpty() && _user != user) { _user = user; emit userSet(user); - - setObjectName(hostmask()); - emit objectNameSet(); } } @@ -94,16 +131,23 @@ void IrcUser::setHost(const QString &host) { if(!host.isEmpty() && _host != host) { _host = host; emit hostSet(host); - updateObjectName(); } } void IrcUser::setNick(const QString &nick) { if(!nick.isEmpty() && nick != _nick) { - QString oldnick(_nick); _nick = nick; - emit nickSet(nick); updateObjectName(); + emit nickSet(nick); + } +} + +void IrcUser::updateObjectName() { + QString newName = QString::number(networkInfo->networkId()) + "/" + _nick; + QString oldName = objectName(); + if(oldName != newName) { + setObjectName(newName); + emit renameObject(oldName, newName); } } @@ -113,42 +157,49 @@ void IrcUser::updateHostmask(const QString &mask) { QString user = userFromMask(mask); QString host = hostFromMask(mask); + setUser(user); + setHost(host); +} - // we only need to check user and hostmask. - // nick can't have changed since we're identifying IrcUsers by nick - - // we don't use setUser and setHost here. - // though this is unpretty code duplication this saves us one emit objectNameSet() - // the second one would be erroneous - - if(!user.isEmpty() && _user != user) { - _user = user; +void IrcUser::joinChannel(IrcChannel *channel) { + Q_ASSERT(channel); + if(!_channels.contains(channel)) { + _channels.insert(channel); + channel->join(this); + connect(channel, SIGNAL(destroyed()), this, SLOT(channelDestroyed())); + emit channelJoined(channel->name()); } +} - if(!host.isEmpty() && _host != host) { - _host = host; - } +void IrcUser::joinChannel(const QString &channelname) { + joinChannel(networkInfo->newIrcChannel(channelname)); +} - emit hostmaskUpdated(mask); - updateObjectName(); +void IrcUser::partChannel(IrcChannel *channel) { + if(_channels.contains(channel)) { + _channels.remove(channel); + disconnect(channel, 0, this, 0); + channel->part(this); + emit channelParted(channel->name()); + } } -void IrcUser::joinChannel(const QString &channel) { - if(!_channels.contains(channel)) { - _channels.insert(channel); - networkInfo->newIrcChannel(channel)->join(this); - emit channelJoined(channel); +void IrcUser::partChannel(const QString &channelname) { + IrcChannel *channel = networkInfo->ircChannel(channelname); + if(channel == 0) { + qWarning() << "IrcUser::partChannel(): received part for unknown Channel" << channelname; + } else { + partChannel(channel); } } -void IrcUser::partChannel(const QString &channel) { +void IrcUser::channelDestroyed() { + // private slot! + IrcChannel *channel = static_cast(sender()); + Q_ASSERT(channel); if(_channels.contains(channel)) { _channels.remove(channel); - - Q_ASSERT(networkInfo->ircChannel(channel)); - networkInfo->ircChannel(channel)->part(this); - - emit channelParted(channel); + disconnect(channel, 0, this, 0); } }