still continuing separation of gui and data and file reorganisation:
[quassel.git] / src / qtgui / bufferview.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel Team                             *
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) any later version.                                   *
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 "bufferview.h"
22
23 /*****************************************
24 * The TreeView showing the Buffers
25 *****************************************/
26 // Please be carefull when reimplementing methods which are used to inform the view about changes to the data
27 // to be on the safe side: call QTreeView's method aswell
28 BufferView::BufferView(QWidget *parent) : QTreeView(parent) {
29 }
30
31 void BufferView::init() {
32   setIndentation(10);
33   header()->hide();
34   header()->hideSection(1);
35   expandAll();
36   
37   setDragEnabled(true);
38   setAcceptDrops(true);
39   setDropIndicatorShown(true);
40   
41   connect(selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), model(), SLOT(changeCurrent(const QModelIndex &, const QModelIndex &)));
42   connect(this, SIGNAL(doubleClicked(const QModelIndex &)), model(), SLOT(doubleClickReceived(const QModelIndex &)));
43   connect(model(), SIGNAL(updateSelection(const QModelIndex &, QItemSelectionModel::SelectionFlags)), selectionModel(), SLOT(select(const QModelIndex &, QItemSelectionModel::SelectionFlags)));
44
45 }
46
47 void BufferView::setFilteredModel(QAbstractItemModel *model, BufferViewFilter::Modes mode, QStringList nets) {
48   BufferViewFilter *filter = new BufferViewFilter(model, mode, nets);
49   setModel(filter);
50 }
51
52 void BufferView::setModel(QAbstractItemModel *model) {
53   QTreeView::setModel(model);
54   init();
55 }
56
57 void BufferView::dragEnterEvent(QDragEnterEvent *event) {
58   // not yet needed... this will be usefull to keep track of the active view when customizing them with drag and drop
59   QTreeView::dragEnterEvent(event);
60 }
61
62 void BufferView::rowsInserted(const QModelIndex & parent, int start, int end) {
63   if(parent.parent() == QModelIndex()) setExpanded(parent, true);
64   QTreeView::rowsInserted(parent, start, end);
65 }