simplifying workaround for missing nickitems... especially getting rid of old workaround
[quassel.git] / src / uisupport / nickview.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 "nickview.h"
22
23 #include <QApplication>
24 #include <QHeaderView>
25 #include <QScrollBar>
26 #include <QDebug>
27 #include <QMenu>
28
29 #include "buffermodel.h"
30 #include "client.h"
31 #include "contextmenuactionprovider.h"
32 #include "graphicalui.h"
33 #include "nickview.h"
34 #include "nickviewfilter.h"
35 #include "networkmodel.h"
36 #include "types.h"
37
38 NickView::NickView(QWidget *parent)
39   : QTreeView(parent)
40 {
41   setIndentation(10);
42   header()->hide();
43   setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
44   setSortingEnabled(true);
45   sortByColumn(0, Qt::AscendingOrder);
46
47   setContextMenuPolicy(Qt::CustomContextMenu);
48   setSelectionMode(QAbstractItemView::ExtendedSelection);
49
50 //   // breaks with Qt 4.8
51 //   if(QString("4.8.0") > qVersion()) // FIXME breaks with Qt versions >= 4.10!
52      setAnimated(true);
53
54   connect(this, SIGNAL(customContextMenuRequested(const QPoint&)), SLOT(showContextMenu(const QPoint&)));
55
56 #if defined Q_WS_QWS || defined Q_WS_X11
57   connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(startQuery(QModelIndex)));
58 #else
59   // afaik this is better on Mac and Windows
60   connect(this, SIGNAL(activated(QModelIndex)), SLOT(startQuery(QModelIndex)));
61 #endif
62 }
63
64 void NickView::init() {
65   if(!model())
66     return;
67
68   for(int i = 1; i < model()->columnCount(); i++)
69     setColumnHidden(i, true);
70
71   connect(selectionModel(), SIGNAL(currentChanged(QModelIndex, QModelIndex)), SIGNAL(selectionUpdated()));
72   connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)), SIGNAL(selectionUpdated()));
73 }
74
75 void NickView::setModel(QAbstractItemModel *model_) {
76   if(model())
77     disconnect(model(), 0, this, 0);
78
79   QTreeView::setModel(model_);
80   init();
81 }
82
83 void NickView::rowsInserted(const QModelIndex &parent, int start, int end) {
84   QTreeView::rowsInserted(parent, start, end);
85   if(model()->data(parent, NetworkModel::ItemTypeRole) == NetworkModel::UserCategoryItemType && !isExpanded(parent)) {
86     unanimatedExpandAll();
87   }
88 }
89
90 void NickView::setRootIndex(const QModelIndex &index) {
91   QAbstractItemView::setRootIndex(index);
92   if(index.isValid())
93     unanimatedExpandAll();
94 }
95
96 QModelIndexList NickView::selectedIndexes() const {
97   QModelIndexList indexList = QTreeView::selectedIndexes();
98
99   // make sure the item we clicked on is first
100   if(indexList.contains(currentIndex())) {
101     indexList.removeAll(currentIndex());
102     indexList.prepend(currentIndex());
103   }
104
105   return indexList;
106 }
107
108 void NickView::unanimatedExpandAll() {
109   // since of Qt Version 4.8.0 the default expandAll will not properly work if
110   // animations are enabled. Therefore we perform an unanimated expand when a
111   // model is set or a toplevel node is inserted.
112   bool wasAnimated = isAnimated();
113   setAnimated(false);
114   expandAll();
115   setAnimated(wasAnimated);
116 }
117
118
119 void NickView::showContextMenu(const QPoint &pos ) {
120   Q_UNUSED(pos);
121
122   QMenu contextMenu(this);
123   GraphicalUi::contextMenuActionProvider()->addActions(&contextMenu, selectedIndexes());
124   contextMenu.exec(QCursor::pos());
125 }
126
127 void NickView::startQuery(const QModelIndex &index) {
128   if(index.data(NetworkModel::ItemTypeRole) != NetworkModel::IrcUserItemType)
129     return;
130
131   IrcUser *ircUser = qobject_cast<IrcUser *>(index.data(NetworkModel::IrcUserRole).value<QObject *>());
132   NetworkId networkId = index.data(NetworkModel::NetworkIdRole).value<NetworkId>();
133   if(!ircUser || !networkId.isValid())
134     return;
135
136   Client::bufferModel()->switchToOrStartQuery(networkId, ircUser->nick());
137 }