Moving InputLine (ex-ChannelWidgetInput) to uisupport, since we'll need
[quassel.git] / src / uisupport / 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 "client.h"
22 #include "buffer.h"
23 #include "bufferview.h"
24 #include "buffertreemodel.h"
25
26 /*****************************************
27 * The TreeView showing the Buffers
28 *****************************************/
29 // Please be carefull when reimplementing methods which are used to inform the view about changes to the data
30 // to be on the safe side: call QTreeView's method aswell
31 BufferView::BufferView(QWidget *parent) : QTreeView(parent) {
32 }
33
34 void BufferView::init() {
35   setIndentation(10);
36   header()->hide();
37   header()->hideSection(1);
38   expandAll();
39
40   setAnimated(true);
41
42 #ifndef QT_NO_DRAGANDDROP
43   setDragEnabled(true);
44   setAcceptDrops(true);
45   setDropIndicatorShown(true);
46 #endif
47
48   setSortingEnabled(true);
49   sortByColumn(0, Qt::AscendingOrder);
50   connect(this, SIGNAL(activated(QModelIndex)), this, SLOT(joinChannel(QModelIndex)));
51 }
52
53 void BufferView::setFilteredModel(QAbstractItemModel *model, BufferViewFilter::Modes mode, QList<uint> nets) {
54   BufferViewFilter *filter = new BufferViewFilter(model, mode, nets);
55   setModel(filter);
56   connect(this, SIGNAL(removeBuffer(const QModelIndex &)), filter, SLOT(removeBuffer(const QModelIndex &)));
57 }
58
59 void BufferView::setModel(QAbstractItemModel *model) {
60   delete selectionModel();
61   QTreeView::setModel(model);
62   init();
63   
64 }
65
66 void BufferView::joinChannel(const QModelIndex &index) {
67   Buffer::Type bufferType = (Buffer::Type)index.data(BufferTreeModel::BufferTypeRole).toInt();
68
69   if(bufferType != Buffer::ChannelType)
70     return;
71   
72   Client::fakeInput(index.data(BufferTreeModel::BufferUidRole).toUInt(), QString("/JOIN %1").arg(index.sibling(index.row(), 0).data().toString()));
73 }
74
75 void BufferView::keyPressEvent(QKeyEvent *event) {
76   if(event->key() == Qt::Key_Backspace || event->key() == Qt::Key_Delete) {
77     event->accept();
78     QModelIndex index = selectionModel()->selectedIndexes().first();
79     if(index.isValid()) {
80       emit removeBuffer(index);
81     }
82   }
83   QTreeView::keyPressEvent(event);
84 }
85
86 // ensure that newly inserted network nodes are expanded per default
87 void BufferView::rowsInserted(const QModelIndex & parent, int start, int end) {
88   QTreeView::rowsInserted(parent, start, end);
89   if(model()->rowCount(parent) == 1 && parent != QModelIndex()) {
90     // without updating the parent the expand will have no effect... Qt Bug?
91     update(parent); 
92     expand(parent);
93   }
94 }