Merging r732:766 from trunk to branches/0.3.
[quassel.git] / src / client / buffermodel.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 "networkmodel.h"
24 #include "mappedselectionmodel.h"
25 #include "buffer.h"
26 #include <QAbstractItemView>
27
28 BufferModel::BufferModel(NetworkModel *parent)
29   : QSortFilterProxyModel(parent),
30     _selectionModelSynchronizer(this)
31 {
32   setSourceModel(parent);
33 }
34
35 bool BufferModel::filterAcceptsRow(int sourceRow, const QModelIndex &parent) const {
36   Q_UNUSED(sourceRow);
37   // only networks and buffers are allowed
38   if(!parent.isValid())
39     return true;
40   if(parent.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType)
41     return true;
42
43   return false;
44 }
45
46 void BufferModel::synchronizeSelectionModel(MappedSelectionModel *selectionModel) {
47   _selectionModelSynchronizer.addSelectionModel(selectionModel);
48 }
49
50 void BufferModel::synchronizeView(QAbstractItemView *view) {
51   MappedSelectionModel *mappedSelectionModel = new MappedSelectionModel(view->model());
52   _selectionModelSynchronizer.addSelectionModel(mappedSelectionModel);
53   Q_ASSERT(mappedSelectionModel);
54   delete view->selectionModel();
55   view->setSelectionModel(mappedSelectionModel);
56 }
57
58 QModelIndex BufferModel::currentIndex() {
59   return standardSelectionModel()->currentIndex();
60 }
61
62 void BufferModel::setCurrentIndex(const QModelIndex &newCurrent) {
63   _selectionModelSynchronizer.selectionModel()->setCurrentIndex(newCurrent, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
64   _selectionModelSynchronizer.selectionModel()->select(newCurrent, QItemSelectionModel::Current);
65 }
66
67 void BufferModel::debug_currentChanged(QModelIndex current, QModelIndex previous) {
68   qDebug() << "New current:" << current << "(previous:" << previous << ")";
69 }
70
71 void BufferModel::debug_selectionChanged(QItemSelection current , QItemSelection previous) {
72   qDebug() << "new selection:" << current << "(previoius:" << previous << ")";
73 }