X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffer.cpp;h=df7863967efcb3f8c06ca234928c14afc1af0eb4;hp=c8f375d0118302fbb9fdefe14d150f5fcdb983df;hb=e1b6d538b7c4cc279f9218614e23adb5d8a81fe5;hpb=73edffb5f0f6ecae4118c36a7ca2c0d479b7f8c6 diff --git a/src/client/buffer.cpp b/src/client/buffer.cpp index c8f375d0..df786396 100644 --- a/src/client/buffer.cpp +++ b/src/client/buffer.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel Team * + * Copyright (C) 2005-08 by the Quassel Project * * 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 * @@ -17,164 +17,74 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include -#include "client.h" #include "buffer.h" -#include "util.h" - -/* -Buffer::Buffer(QString netname, QString bufname) { - Buffer(BufferId(0, netname, bufname)); - - -} -*/ - -Buffer::Buffer(BufferId bufid) { - id = bufid; - _networkName = bufid.network(); - _bufferName = bufid.buffer(); - - if(_bufferName.isEmpty()) type = ServerBuffer; - else if(isChannelName(_bufferName)) type = ChannelBuffer; - else type = QueryBuffer; - - active = false; -/* - QSettings s; - s.beginGroup(QString("GUI/BufferStates/%1/%2").arg(netname).arg(bufname)); - state->splitterState = s.value("Splitter").toByteArray(); - s.endGroup(); - */ - emit bufferUpdated(this); -} - -Buffer::~Buffer() { - //delete widget; - /* - QSettings s; - s.beginGroup(QString("GUI/BufferStates/%1/%2").arg(networkName).arg(bufferName)); - s.setValue("Splitter", state->splitterState); - s.endGroup(); -*/ - //delete state; - emit bufferDestroyed(this); -} - -Buffer::Type Buffer::bufferType() const { - return type; -} - -bool Buffer::isActive() const { - return active; -} - -QString Buffer::networkName() const { - return _networkName; -} - -QString Buffer::bufferName() const { - return _bufferName; -} - -QString Buffer::displayName() const { - if(bufferType() == ServerBuffer) - return tr("Status Buffer"); - else - return bufferName(); -} -BufferId Buffer::bufferId() const { - return id; -} +#include "buffersyncer.h" +#include "client.h" +#include "networkmodel.h" +#include "quasselui.h" +#include "util.h" -QList Buffer::contents() const { - return layoutedMsgs; -} -VarMap Buffer::nickList() const { - return nicks; -} +Buffer::Buffer(BufferInfo bufferid, QObject *parent) + : QObject(parent), + _bufferInfo(bufferid), + _isVisible(false), + _activityLevel(NoActivity) +{ -QString Buffer::topic() const { - return _topic; } -QString Buffer::ownNick() const { - return _ownNick; +BufferInfo Buffer::bufferInfo() const { + // still needed by the gui *sigh* to request the backlogs *sigh* + return _bufferInfo; } -bool Buffer::isStatusBuffer() const { - return bufferType() == ServerBuffer; +void Buffer::setVisible(bool visible) { + _isVisible = visible; + setActivityLevel(NoActivity); + if(_lastRcvdMsg.msgId() > 0) setLastSeenMsg(_lastRcvdMsg.msgId()); } -void Buffer::setActive(bool a) { - if(a != active) { - active = a; - emit bufferUpdated(this); +void Buffer::setLastSeenMsg(const MsgId &msgId) { + const MsgId oldLastSeen = lastSeenMsg(); + if(!oldLastSeen.isValid() || (msgId.isValid() && msgId > oldLastSeen)) { + _lastSeenMsg = msgId; + Client::setBufferLastSeenMsg(bufferInfo().bufferId(), msgId); + setActivityLevel(NoActivity); } } -void Buffer::appendMsg(const Message &msg) { - AbstractUiMsg *m = Client::layoutMsg(msg); - layoutedMsgs.append(m); - emit msgAppended(m); -} - -void Buffer::prependMsg(const Message &msg) { - layoutQueue.append(msg); -} - -bool Buffer::layoutMsg() { - if(layoutQueue.count()) { - AbstractUiMsg *m = Client::layoutMsg(layoutQueue.takeFirst()); - layoutedMsgs.prepend(m); - emit msgPrepended(m); +void Buffer::setActivityLevel(ActivityLevel level) { + _activityLevel = level; + if(bufferInfo().bufferId() > 0) { + Client::networkModel()->setBufferActivity(bufferInfo(), level); } - return layoutQueue.count(); } -void Buffer::processUserInput(QString msg) { - // TODO User Input processing (plugins) -> well, this goes through MainWin into Core for processing... so... - emit userInput(id, msg); -} +void Buffer::updateActivityLevel(const Message &msg) { + // FIXME dirty hack to allow the lastSeen stuff to continue to work + // will be made much nicer once Buffer dies, I hope... + if(msg.msgId() > _lastRcvdMsg.msgId()) _lastRcvdMsg = msg; -void Buffer::setTopic(QString t) { - _topic = t; - emit topicSet(t); - emit bufferUpdated(this); -} + if(isVisible()) + return; -void Buffer::addNick(QString nick, VarMap props) { - if(nick == ownNick()) setActive(true); - nicks[nick] = props; - emit nickListChanged(nicks); -} + if(msg.flags() & Message::Self) // don't update activity for our own messages + return; -void Buffer::updateNick(QString nick, VarMap props) { - nicks[nick] = props; - emit nickListChanged(nicks); -} + if(lastSeenMsg().isValid() && lastSeenMsg() >= msg.msgId()) + return; -void Buffer::renameNick(QString oldnick, QString newnick) { - QVariant v = nicks.take(oldnick); - nicks[newnick] = v; - emit nickListChanged(nicks); -} + ActivityLevel level = activityLevel() | OtherActivity; + if(msg.type() & (Message::Plain | Message::Notice | Message::Action)) + level |= NewMessage; -void Buffer::removeNick(QString nick) { - if(nick == ownNick()) setActive(false); - nicks.remove(nick); - emit nickListChanged(nicks); -} + if(msg.flags() & Message::Highlight) + level |= Highlight; -void Buffer::setOwnNick(QString nick) { - _ownNick = nick; - emit ownNickSet(nick); + if(level != activityLevel()) + setActivityLevel(level); } - -/****************************************************************************************/ - - -/****************************************************************************************/ -