X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbufferviewoverlay.cpp;h=f4b298570094152a7200d120ad4e3e14e7d7d558;hp=b1938d1120f5ac131a65d1a68587f41fdf78f29a;hb=1b8b7589f2fb30e1b3583a8914dabced8a190655;hpb=4e7d6be776dfe5106358cff51df9ebbead0d5034 diff --git a/src/client/bufferviewoverlay.cpp b/src/client/bufferviewoverlay.cpp index b1938d11..f4b29857 100644 --- a/src/client/bufferviewoverlay.cpp +++ b/src/client/bufferviewoverlay.cpp @@ -33,8 +33,6 @@ BufferViewOverlay::BufferViewOverlay(QObject *parent) : QObject(parent), _aboutToUpdate(false), _uninitializedViewCount(0), - _addBuffersAutomatically(false), - _hideInactiveBuffers(false), _allowedBufferTypes(0), _minimumActivity(0) { @@ -98,11 +96,9 @@ void BufferViewOverlay::viewInitialized(BufferViewConfig *config) { } disconnect(config, SIGNAL(initDone()), this, SLOT(viewInitialized())); - connect(config, SIGNAL(configChanged()), this, SLOT(update())); + connect(config, SIGNAL(configChanged()), this, SLOT(update())); // connect(config, SIGNAL(networkIdSet(const NetworkId &)), this, SLOT(update())); -// connect(config, SIGNAL(addNewBuffersAutomaticallySet(bool)), this, SLOT(update())); // connect(config, SIGNAL(sortAlphabeticallySet(bool)), this, SLOT(update())); -// connect(config, SIGNAL(hideInactiveBuffersSet(bool)), this, SLOT(update())); // connect(config, SIGNAL(allowedBufferTypesSet(int)), this, SLOT(update())); // connect(config, SIGNAL(minimumActivitySet(int)), this, SLOT(update())); // connect(config, SIGNAL(bufferListSet()), this, SLOT(update())); @@ -140,8 +136,6 @@ void BufferViewOverlay::updateHelper() { bool changed = false; - bool addBuffersAutomatically = false; - bool hideInactiveBuffers = true; int allowedBufferTypes = 0; int minimumActivity = -1; QSet networkIds; @@ -157,48 +151,32 @@ void BufferViewOverlay::updateHelper() { if(!config) continue; - networkIds << config->networkId(); - if(config->networkId().isValid()) { - NetworkId networkId = config->networkId(); - // we have to filter out all the buffers that don't belong to this net... :/ - QSet bufferIds; - foreach(BufferId bufferId, config->bufferList()) { - if(Client::networkModel()->networkId(bufferId) == networkId) - bufferIds << bufferId; - } - buffers += bufferIds; - - bufferIds.clear(); - foreach(BufferId bufferId, config->temporarilyRemovedBuffers()) { - if(Client::networkModel()->networkId(bufferId) == networkId) - bufferIds << bufferId; - } - tempRemovedBuffers += bufferIds; - } else { - buffers += config->bufferList().toSet(); - tempRemovedBuffers += config->temporarilyRemovedBuffers(); - } - - // in the overlay a buffer is removed it is removed from all views - if(removedBuffers.isEmpty()) - removedBuffers = config->removedBuffers(); - else - removedBuffers.intersect(config->removedBuffers()); - - - addBuffersAutomatically |= config->addNewBuffersAutomatically(); - hideInactiveBuffers &= config->hideInactiveBuffers(); allowedBufferTypes |= config->allowedBufferTypes(); if(minimumActivity == -1 || config->minimumActivity() < minimumActivity) minimumActivity = config->minimumActivity(); + + networkIds << config->networkId(); + + + // we have to apply several filters before we can add a buffer to a category (visible, removed, ...) + buffers += filterBuffersByConfig(config->bufferList(), config); + tempRemovedBuffers += filterBuffersByConfig(config->temporarilyRemovedBuffers().toList(), config); + removedBuffers += config->removedBuffers(); } + + // prune the sets from overlap QSet availableBuffers = Client::networkModel()->allBufferIds().toSet(); + buffers.intersect(availableBuffers); + tempRemovedBuffers.intersect(availableBuffers); + tempRemovedBuffers.subtract(buffers); + + removedBuffers.intersect(availableBuffers); + removedBuffers.subtract(tempRemovedBuffers); + removedBuffers.subtract(buffers); } - changed |= (addBuffersAutomatically != _addBuffersAutomatically); - changed |= (hideInactiveBuffers != _hideInactiveBuffers); changed |= (allowedBufferTypes != _allowedBufferTypes); changed |= (minimumActivity != _minimumActivity); changed |= (networkIds != _networkIds); @@ -206,8 +184,6 @@ void BufferViewOverlay::updateHelper() { changed |= (removedBuffers != _removedBuffers); changed |= (tempRemovedBuffers != _tempRemovedBuffers); - _addBuffersAutomatically = addBuffersAutomatically; - _hideInactiveBuffers = hideInactiveBuffers; _allowedBufferTypes = allowedBufferTypes; _minimumActivity = minimumActivity; _networkIds = networkIds; @@ -221,6 +197,24 @@ void BufferViewOverlay::updateHelper() { emit hasChanged(); } +QSet BufferViewOverlay::filterBuffersByConfig(const QList &buffers, const BufferViewConfig *config) { + Q_ASSERT(config); + + QSet bufferIds; + BufferInfo bufferInfo; + foreach(BufferId bufferId, buffers) { + bufferInfo = Client::networkModel()->bufferInfo(bufferId); + if(!(bufferInfo.type() & config->allowedBufferTypes())) + continue; + if(config->networkId().isValid() && bufferInfo.networkId() != config->networkId()) + continue; + bufferIds << bufferId; + } + + return bufferIds; +} + + void BufferViewOverlay::customEvent(QEvent *event) { if(event->type() == _updateEventId) { updateHelper(); @@ -252,16 +246,6 @@ const QSet &BufferViewOverlay::tempRemovedBufferIds() { return _tempRemovedBuffers; } -bool BufferViewOverlay::addBuffersAutomatically() { - updateHelper(); - return _addBuffersAutomatically; -} - -bool BufferViewOverlay::hideInactiveBuffers() { - updateHelper(); - return _hideInactiveBuffers; -} - int BufferViewOverlay::allowedBufferTypes() { updateHelper(); return _allowedBufferTypes;