X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffermodel.cpp;h=266c26b8fe86169903534862771e7c03285a49ca;hp=78d3960502fb6c5a33584b01e4390b356b4471a2;hb=HEAD;hpb=23eed68958b7585552be04fab4e5871a781b7f38 diff --git a/src/client/buffermodel.cpp b/src/client/buffermodel.cpp index 78d39605..4c89a659 100644 --- a/src/client/buffermodel.cpp +++ b/src/client/buffermodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,56 +15,145 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "buffermodel.h" -#include "networkmodel.h" -#include "mappedselectionmodel.h" -#include "buffer.h" #include -BufferModel::BufferModel(NetworkModel *parent) - : QSortFilterProxyModel(parent), - _selectionModelSynchronizer(this), - _propertyMapper(this) +#include "client.h" +#include "networkmodel.h" +#include "quassel.h" + +BufferModel::BufferModel(NetworkModel* parent) + : QSortFilterProxyModel(parent) + , _selectionModelSynchronizer(this) +{ + setSourceModel(parent); + if (Quassel::isOptionSet("debugbufferswitches")) { + connect(_selectionModelSynchronizer.selectionModel(), &QItemSelectionModel::currentChanged, this, &BufferModel::debug_currentChanged); + } + connect(Client::instance(), &Client::networkCreated, this, &BufferModel::newNetwork); + connect(this, &QAbstractItemModel::rowsInserted, this, &BufferModel::newBuffers); +} + +bool BufferModel::filterAcceptsRow(int sourceRow, const QModelIndex& parent) const +{ + Q_UNUSED(sourceRow); + // only networks and buffers are allowed + if (!parent.isValid()) + return true; + if (parent.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType) + return true; + + return false; +} + +void BufferModel::newNetwork(NetworkId id) { - setSourceModel(parent); + const Network* net = Client::network(id); + Q_ASSERT(net); + connect(net, &Network::connectionStateSet, this, &BufferModel::networkConnectionChanged); +} - // initialize the Property Mapper - _propertyMapper.setModel(this); - _selectionModelSynchronizer.addRegularSelectionModel(_propertyMapper.selectionModel()); +void BufferModel::networkConnectionChanged(Network::ConnectionState state) +{ + switch (state) { + case Network::Connecting: + case Network::Initializing: + if (currentIndex().isValid()) + return; + { + auto* net = qobject_cast(sender()); + Q_ASSERT(net); + setCurrentIndex(mapFromSource(Client::networkModel()->networkIndex(net->networkId()))); + } + break; + default: + return; + } } -BufferModel::~BufferModel() { +void BufferModel::synchronizeView(QAbstractItemView* view) +{ + _selectionModelSynchronizer.synchronizeSelectionModel(view->selectionModel()); } -bool BufferModel::filterAcceptsRow(int sourceRow, const QModelIndex &parent) const { - Q_UNUSED(sourceRow); - // hide childs of buffers and everything below - if(parent.data(NetworkModel::ItemTypeRole) == NetworkModel::BufferItemType) - return false; - else - return true; +void BufferModel::setCurrentIndex(const QModelIndex& newCurrent) +{ + _selectionModelSynchronizer.selectionModel()->setCurrentIndex(newCurrent, QItemSelectionModel::Current); + _selectionModelSynchronizer.selectionModel()->select(newCurrent, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); } -void BufferModel::synchronizeSelectionModel(MappedSelectionModel *selectionModel) { - _selectionModelSynchronizer.addSelectionModel(selectionModel); +void BufferModel::switchToBuffer(const BufferId& bufferId) +{ + QModelIndex source_index = Client::networkModel()->bufferIndex(bufferId); + setCurrentIndex(mapFromSource(source_index)); +} + +void BufferModel::switchToBufferIndex(const QModelIndex& bufferIdx) +{ + // we accept indexes that directly belong to us or our parent - nothing else + if (bufferIdx.model() == this) { + setCurrentIndex(bufferIdx); + return; + } + + if (bufferIdx.model() == sourceModel()) { + setCurrentIndex(mapFromSource(bufferIdx)); + return; + } + + qWarning() << "BufferModel::switchToBufferIndex(const QModelIndex &):" << bufferIdx << "does not belong to BufferModel or NetworkModel"; +} + +void BufferModel::switchToOrJoinBuffer(NetworkId networkId, const QString& name, bool isQuery) +{ + BufferId bufId = Client::networkModel()->bufferId(networkId, name); + if (bufId.isValid()) { + QModelIndex targetIdx = Client::networkModel()->bufferIndex(bufId); + switchToBuffer(bufId); + if (!targetIdx.data(NetworkModel::ItemActiveRole).toBool()) { + qDebug() << "switchToOrJoinBuffer failed to switch even though bufId:" << bufId << "is valid."; + Client::userInput(BufferInfo::fakeStatusBuffer(networkId), QString(isQuery ? "/QUERY %1" : "/JOIN %1").arg(name)); + } + } + else { + _bufferToSwitchTo = qMakePair(networkId, name); + Client::userInput(BufferInfo::fakeStatusBuffer(networkId), QString(isQuery ? "/QUERY %1" : "/JOIN %1").arg(name)); + } +} + +void BufferModel::debug_currentChanged(QModelIndex current, QModelIndex previous) +{ + Q_UNUSED(previous); + qDebug() << "Switched current Buffer: " << current << current.data().toString() + << "Buffer:" << current.data(NetworkModel::BufferIdRole).value(); } -void BufferModel::synchronizeView(QAbstractItemView *view) { - MappedSelectionModel *mappedSelectionModel = new MappedSelectionModel(view->model()); - _selectionModelSynchronizer.addSelectionModel(mappedSelectionModel); - Q_ASSERT(mappedSelectionModel); - delete view->selectionModel(); - view->setSelectionModel(mappedSelectionModel); +void BufferModel::newBuffers(const QModelIndex& parent, int start, int end) +{ + if (parent.data(NetworkModel::ItemTypeRole) != NetworkModel::NetworkItemType) + return; + + for (int row = start; row <= end; row++) { + QModelIndex child = parent.model()->index(row, 0, parent); + newBuffer(child.data(NetworkModel::BufferIdRole).value()); + } } -void BufferModel::mapProperty(int column, int role, QObject *target, const QByteArray &property) { - _propertyMapper.addMapping(column, role, target, property); +void BufferModel::newBuffer(BufferId bufferId) +{ + BufferInfo bufferInfo = Client::networkModel()->bufferInfo(bufferId); + if (_bufferToSwitchTo.first == bufferInfo.networkId() && _bufferToSwitchTo.second == bufferInfo.bufferName()) { + _bufferToSwitchTo.first = 0; + _bufferToSwitchTo.second.clear(); + switchToBuffer(bufferId); + } } -QModelIndex BufferModel::currentIndex() { - return propertyMapper()->selectionModel()->currentIndex(); +void BufferModel::switchToBufferAfterCreation(NetworkId network, const QString& name) +{ + _bufferToSwitchTo = qMakePair(network, name); }