Checking in WiP on the MessageModel. More cleanly separated code and compiling of...
[quassel.git] / src / qtui / nicklistwidget.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 "nicklistwidget.h"
22
23 #include "buffer.h"
24 #include "nickview.h"
25 #include "client.h"
26 #include "networkmodel.h"
27 #include "buffermodel.h"
28 #include "nickviewfilter.h"
29 #include "qtuisettings.h"
30
31 #include <QAction>
32 #include <QDebug>
33 #include <QEvent>
34 #include <QAbstractButton>
35
36 NickListWidget::NickListWidget(QWidget *parent)
37   : AbstractItemView(parent)
38 {
39   ui.setupUi(this);
40 }
41
42 QDockWidget *NickListWidget::dock() const {
43   QDockWidget *dock = qobject_cast<QDockWidget *>(parent());
44   if(dock)
45     return dock;
46   else
47     return 0;
48 }
49
50 void NickListWidget::showWidget(bool visible) {
51   if(!selectionModel())
52     return;
53
54   QModelIndex currentIndex = selectionModel()->currentIndex();
55   if(currentIndex.data(NetworkModel::BufferTypeRole) == BufferInfo::ChannelBuffer) {
56     QDockWidget *dock_ = dock();
57     if(!dock_)
58       return;
59
60     if(visible)
61       dock_->show();
62     else
63       dock_->close();
64   }
65 }
66
67 void NickListWidget::currentChanged(const QModelIndex &current, const QModelIndex &previous) {
68   BufferInfo::Type bufferType = (BufferInfo::Type)current.data(NetworkModel::BufferTypeRole).toInt();
69   BufferId newBufferId = current.data(NetworkModel::BufferIdRole).value<BufferId>();
70   BufferId oldBufferId = previous.data(NetworkModel::BufferIdRole).value<BufferId>();
71
72
73   if(bufferType != BufferInfo::ChannelBuffer) {
74     ui.stackedWidget->setCurrentWidget(ui.emptyPage);
75     QDockWidget *dock_ = dock();
76     if(dock_) {
77       dock_->close();
78     }
79     return;
80   } else {
81     QDockWidget *dock_ = dock();
82     if(dock_ && dock_->toggleViewAction()->isChecked()) {
83       dock_->show();
84     }
85   }
86
87   if(newBufferId == oldBufferId)
88     return;
89
90   if(nickViews.contains(newBufferId)) {
91     ui.stackedWidget->setCurrentWidget(nickViews.value(newBufferId));
92   } else {
93     NickView *view = new NickView(this);
94     NickViewFilter *filter = new NickViewFilter(newBufferId, Client::networkModel());
95     view->setModel(filter);
96     QModelIndex source_current = Client::bufferModel()->mapToSource(current);
97     view->setRootIndex(filter->mapFromSource(source_current));
98     view->expandAll();
99     nickViews[newBufferId] = view;
100     ui.stackedWidget->addWidget(view);
101     ui.stackedWidget->setCurrentWidget(view);
102   }
103 }
104
105 void NickListWidget::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) {
106   Q_ASSERT(model());
107   if(!parent.isValid()) {
108     // ok this means that whole networks are about to be removed
109     // we can't determine which buffers are affect, so we hope that all nets are removed
110     // this is the most common case (for example disconnecting from the core or terminating the clint)
111     NickView *nickView;
112     QHash<BufferId, NickView *>::iterator iter = nickViews.begin();
113     while(iter != nickViews.end()) {
114       nickView = *iter;
115       iter = nickViews.erase(iter);
116       ui.stackedWidget->removeWidget(nickView);
117       QAbstractItemModel *model = nickView->model();
118       nickView->setModel(0);
119       if(QSortFilterProxyModel *filter = qobject_cast<QSortFilterProxyModel *>(model))
120         filter->setSourceModel(0);
121       model->deleteLater();
122       nickView->deleteLater();
123     }
124   } else {
125     // check if there are explicitly buffers removed
126     for(int i = start; i <= end; i++) {
127       QVariant variant = parent.child(i,0).data(NetworkModel::BufferIdRole);
128       if(!variant.isValid())
129         continue;
130
131       BufferId bufferId = qVariantValue<BufferId>(variant);
132       removeBuffer(bufferId);
133     }
134   }
135 }
136
137 void NickListWidget::removeBuffer(BufferId bufferId) {
138   if(!nickViews.contains(bufferId))
139     return;
140
141   NickView *view = nickViews.take(bufferId);
142   ui.stackedWidget->removeWidget(view);
143   QAbstractItemModel *model = view->model();
144   view->setModel(0);
145   if(QSortFilterProxyModel *filter = qobject_cast<QSortFilterProxyModel *>(model))
146     filter->setSourceModel(0);
147   model->deleteLater();
148   view->deleteLater();
149 }
150
151 QSize NickListWidget::sizeHint() const {
152   QWidget *currentWidget = ui.stackedWidget->currentWidget();
153   if(!currentWidget || currentWidget == ui.emptyPage)
154     return QSize(100, height());
155   else
156     return currentWidget->sizeHint();
157 }
158
159
160 // ==============================
161 //  NickList Dock
162 // ==============================
163 NickListDock::NickListDock(const QString &title, QWidget *parent)
164   : QDockWidget(title, parent)
165 {
166   QAction *toggleView = toggleViewAction();
167   disconnect(toggleView, SIGNAL(triggered(bool)), this, 0);
168   toggleView->setChecked(QtUiSettings().value("ShowNickList", QVariant(true)).toBool());
169
170   // reconnecting the closebuttons clicked signal to the action
171   foreach(QAbstractButton *button, findChildren<QAbstractButton *>()) {
172     if(disconnect(button, SIGNAL(clicked()), this, SLOT(close())))
173       connect(button, SIGNAL(clicked()), toggleView, SLOT(trigger()));
174   }
175 }
176
177 NickListDock::~NickListDock() {
178   QtUiSettings().setValue("ShowNickList", toggleViewAction()->isChecked());
179 }
180
181 bool NickListDock::event(QEvent *event) {
182   switch (event->type()) {
183   case QEvent::Hide:
184   case QEvent::Show:
185     emit visibilityChanged(event->type() == QEvent::Show);
186     return QWidget::event(event);
187   default:
188     return QDockWidget::event(event);
189   }
190 }