fixes #484 - issues with ssl status indicator
[quassel.git] / src / client / buffermodel.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 "buffermodel.h"
22
23 #include <QAbstractItemView>
24
25 #include "client.h"
26 #include "networkmodel.h"
27 #include "quassel.h"
28
29 BufferModel::BufferModel(NetworkModel *parent)
30   : QSortFilterProxyModel(parent),
31     _selectionModelSynchronizer(this)
32 {
33   setSourceModel(parent);
34   if(Quassel::isOptionSet("debugbufferswitches")) {
35     connect(_selectionModelSynchronizer.selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)),
36             this, SLOT(debug_currentChanged(const QModelIndex &, const QModelIndex &)));
37   }
38 }
39
40 bool BufferModel::filterAcceptsRow(int sourceRow, const QModelIndex &parent) const {
41   Q_UNUSED(sourceRow);
42   // only networks and buffers are allowed
43   if(!parent.isValid())
44     return true;
45   if(parent.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType)
46     return true;
47
48   return false;
49 }
50
51 void BufferModel::synchronizeView(QAbstractItemView *view) {
52   _selectionModelSynchronizer.synchronizeSelectionModel(view->selectionModel());
53 }
54
55 void BufferModel::setCurrentIndex(const QModelIndex &newCurrent) {
56   _selectionModelSynchronizer.selectionModel()->setCurrentIndex(newCurrent, QItemSelectionModel::Current);
57   _selectionModelSynchronizer.selectionModel()->select(newCurrent, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
58 }
59
60 void BufferModel::switchToBuffer(const BufferId &bufferId) {
61   QModelIndex source_index = Client::networkModel()->bufferIndex(bufferId);
62   setCurrentIndex(mapFromSource(source_index));
63 }
64
65 void BufferModel::switchToBufferIndex(const QModelIndex &bufferIdx) {
66   // we accept indexes that directly belong to us or our parent - nothing else
67   if(bufferIdx.model() == this) {
68     setCurrentIndex(bufferIdx);
69     return;
70   }
71
72   if(bufferIdx.model() == sourceModel()) {
73     setCurrentIndex(mapFromSource(bufferIdx));
74     return;
75   }
76
77   qWarning() << "BufferModel::switchToBufferIndex(const QModelIndex &):" << bufferIdx << "does not belong to BufferModel or NetworkModel";
78 }
79
80 void BufferModel::debug_currentChanged(QModelIndex current, QModelIndex previous) {
81   Q_UNUSED(previous);
82   qDebug() << "Switched current Buffer: " << current << current.data().toString() << "Buffer:" << current.data(NetworkModel::BufferIdRole).value<BufferId>();
83 }