6a73e7f4b221c792f39bea225c9c52bedf5dfe77
[quassel.git] / src / uisupport / bufferviewfilter.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 "bufferviewfilter.h"
22
23 #include <QCoreApplication>
24
25 #include "buffermodel.h"
26 #include "client.h"
27 #include "networkmodel.h"
28
29 #include "uisettings.h"
30
31 class CheckRemovalEvent : public QEvent {
32 public:
33   CheckRemovalEvent(const QModelIndex &source_index) : QEvent(QEvent::User), index(source_index) {};
34   QPersistentModelIndex index;
35 };
36
37 /*****************************************
38 * The Filter for the Tree View
39 *****************************************/
40 BufferViewFilter::BufferViewFilter(QAbstractItemModel *model, BufferViewConfig *config)
41   : QSortFilterProxyModel(model),
42     _config(0),
43     _sortOrder(Qt::AscendingOrder)
44 {
45   setConfig(config);
46   setSourceModel(model);
47                         
48   setDynamicSortFilter(true);
49
50   loadColors();
51
52   connect(this, SIGNAL(_dataChanged(const QModelIndex &, const QModelIndex &)),
53           this, SLOT(_q_sourceDataChanged(QModelIndex,QModelIndex)));
54 }
55
56 void BufferViewFilter::loadColors() {
57   UiSettings s("QtUi/Colors");
58   _FgColorInactiveActivity = s.value("inactiveActivityFG", QVariant(QColor(Qt::gray))).value<QColor>();
59   _FgColorNoActivity = s.value("noActivityFG", QVariant(QColor(Qt::black))).value<QColor>();
60   _FgColorHighlightActivity = s.value("highlightActivityFG", QVariant(QColor(Qt::magenta))).value<QColor>();
61   _FgColorNewMessageActivity = s.value("newMessageActivityFG", QVariant(QColor(Qt::green))).value<QColor>();
62   _FgColorOtherActivity = s.value("otherActivityFG", QVariant(QColor(Qt::darkGreen))).value<QColor>();
63 }
64
65 void BufferViewFilter::setConfig(BufferViewConfig *config) {
66   if(_config == config)
67     return;
68   
69   if(_config) {
70     disconnect(_config, 0, this, 0);
71   }
72
73   _config = config;
74
75   if(!config) {
76     invalidate();
77     return;
78   }
79
80   if(config->isInitialized()) {
81     configInitialized();
82   } else {
83     connect(config, SIGNAL(initDone()), this, SLOT(configInitialized()));
84     invalidate();
85   }
86 }
87
88 void BufferViewFilter::configInitialized() {
89   if(!config())
90     return;
91     
92   connect(config(), SIGNAL(bufferViewNameSet(const QString &)), this, SLOT(invalidate()));
93   connect(config(), SIGNAL(networkIdSet(const NetworkId &)), this, SLOT(invalidate()));
94   connect(config(), SIGNAL(addNewBuffersAutomaticallySet(bool)), this, SLOT(invalidate()));
95   connect(config(), SIGNAL(sortAlphabeticallySet(bool)), this, SLOT(invalidate()));
96   connect(config(), SIGNAL(hideInactiveBuffersSet(bool)), this, SLOT(invalidate()));
97   connect(config(), SIGNAL(allowedBufferTypesSet(int)), this, SLOT(invalidate()));
98   connect(config(), SIGNAL(minimumActivitySet(int)), this, SLOT(invalidate()));
99   connect(config(), SIGNAL(bufferListSet()), this, SLOT(invalidate()));
100   connect(config(), SIGNAL(bufferAdded(const BufferId &, int)), this, SLOT(invalidate()));
101   connect(config(), SIGNAL(bufferMoved(const BufferId &, int)), this, SLOT(invalidate()));
102   connect(config(), SIGNAL(bufferRemoved(const BufferId &)), this, SLOT(invalidate()));
103   connect(config(), SIGNAL(bufferPermanentlyRemoved(const BufferId &)), this, SLOT(invalidate()));
104
105   disconnect(config(), SIGNAL(initDone()), this, SLOT(configInitialized()));
106
107   invalidate();
108   emit configChanged();
109 }
110
111 Qt::ItemFlags BufferViewFilter::flags(const QModelIndex &index) const {
112   Qt::ItemFlags flags = mapToSource(index).flags();
113   if(_config && (index == QModelIndex() || index.parent() == QModelIndex()))
114     flags |= Qt::ItemIsDropEnabled;
115   return flags;
116 }
117
118 bool BufferViewFilter::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) {
119   if(!config() || !NetworkModel::mimeContainsBufferList(data))
120     return QSortFilterProxyModel::dropMimeData(data, action, row, column, parent);
121
122   NetworkId droppedNetworkId;
123   if(parent.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType)
124     droppedNetworkId = parent.data(NetworkModel::NetworkIdRole).value<NetworkId>();
125
126   QList< QPair<NetworkId, BufferId> > bufferList = NetworkModel::mimeDataToBufferList(data);
127   BufferId bufferId;
128   NetworkId networkId;
129   int pos;
130   for(int i = 0; i < bufferList.count(); i++) {
131     networkId = bufferList[i].first;
132     bufferId = bufferList[i].second;
133     if(droppedNetworkId == networkId) {
134       if(row < 0)
135         row = 0;
136
137       if(row < rowCount(parent)) {
138         BufferId beforeBufferId = parent.child(row, 0).data(NetworkModel::BufferIdRole).value<BufferId>();
139         pos = config()->bufferList().indexOf(beforeBufferId);
140         if(_sortOrder == Qt::DescendingOrder)
141           pos++;
142       } else {
143         if(_sortOrder == Qt::AscendingOrder)
144           pos = config()->bufferList().count();
145         else
146           pos = 0;
147       }
148
149       if(config()->bufferList().contains(bufferId)) {
150         if(config()->bufferList().indexOf(bufferId) < pos)
151           pos--;
152         config()->requestMoveBuffer(bufferId, pos);
153       } else {
154         config()->requestAddBuffer(bufferId, pos);
155       }
156
157     } else {
158       addBuffer(bufferId);
159     }
160   }
161   return true;
162 }
163
164 void BufferViewFilter::sort(int column, Qt::SortOrder order) {
165   _sortOrder = order;
166   QSortFilterProxyModel::sort(column, order);
167 }
168
169 void BufferViewFilter::addBuffer(const BufferId &bufferId) const {
170   if(!config() || config()->bufferList().contains(bufferId))
171     return;
172   
173   int pos = config()->bufferList().count();
174   bool lt;
175   for(int i = 0; i < config()->bufferList().count(); i++) {
176     if(config() && config()->sortAlphabetically())
177       lt = bufferIdLessThan(bufferId, config()->bufferList()[i]);
178     else
179       lt = bufferId < config()->bufferList()[i];
180     
181     if(lt) {
182       pos = i;
183       break;
184     }
185   }
186   config()->requestAddBuffer(bufferId, pos);
187 }
188
189 bool BufferViewFilter::filterAcceptBuffer(const QModelIndex &source_bufferIndex) const {
190   // no config -> "all buffers" -> accept everything
191   if(!config())
192     return true;
193
194   BufferId bufferId = sourceModel()->data(source_bufferIndex, NetworkModel::BufferIdRole).value<BufferId>();
195   Q_ASSERT(bufferId.isValid());
196
197   int activityLevel = source_bufferIndex.data(NetworkModel::BufferActivityRole).toInt();
198
199   if(!config()->bufferList().contains(bufferId)) {
200     // add the buffer if...
201     if(config()->isInitialized() && !config()->removedBuffers().contains(bufferId) // it hasn't been manually removed and either
202        && ((config()->addNewBuffersAutomatically() && !config()->temporarilyRemovedBuffers().contains(bufferId)) // is totally unknown to us (a new buffer)...
203            || (config()->temporarilyRemovedBuffers().contains(bufferId) && activityLevel > Buffer::OtherActivity))) { // or was just temporarily hidden and has a new message waiting for us.
204       addBuffer(bufferId);
205     }
206     // note: adding the buffer to the valid list does not temper with the following filters ("show only channels" and stuff)
207     return false;
208   }
209   
210   if(config()->networkId().isValid() && config()->networkId() != sourceModel()->data(source_bufferIndex, NetworkModel::NetworkIdRole).value<NetworkId>())
211     return false;
212
213   if(!(config()->allowedBufferTypes() & (BufferInfo::Type)source_bufferIndex.data(NetworkModel::BufferTypeRole).toInt()))
214     return false;
215
216   if(config()->hideInactiveBuffers() && !source_bufferIndex.data(NetworkModel::ItemActiveRole).toBool())
217     return false;
218
219   if(config()->minimumActivity() > activityLevel) {
220     if(bufferId != Client::bufferModel()->standardSelectionModel()->currentIndex().data(NetworkModel::BufferIdRole).value<BufferId>())
221       return false;
222   }
223
224   return true;
225 }
226
227 bool BufferViewFilter::filterAcceptNetwork(const QModelIndex &source_index) const {
228   if(!config())
229     return true;
230
231   if(!config()->networkId().isValid()) {
232     return true;
233   } else {
234     return config()->networkId() == sourceModel()->data(source_index, NetworkModel::NetworkIdRole).value<NetworkId>();
235   }
236 }
237
238 bool BufferViewFilter::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const {
239   QModelIndex child = sourceModel()->index(source_row, 0, source_parent);
240   
241   if(!child.isValid()) {
242     qWarning() << "filterAcceptsRow has been called with an invalid Child";
243     return false;
244   }
245
246   if(!source_parent.isValid())
247     return filterAcceptNetwork(child);
248   else
249     return filterAcceptBuffer(child);
250 }
251
252 bool BufferViewFilter::lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const {
253   int itemType = sourceModel()->data(source_left, NetworkModel::ItemTypeRole).toInt();
254   switch(itemType) {
255   case NetworkModel::NetworkItemType:
256     return networkLessThan(source_left, source_right);
257   case NetworkModel::BufferItemType:
258     return bufferLessThan(source_left, source_right);
259   default:
260     return QSortFilterProxyModel::lessThan(source_left, source_right);    
261   }
262 }
263
264 bool BufferViewFilter::bufferLessThan(const QModelIndex &source_left, const QModelIndex &source_right) const {
265   BufferId leftBufferId = sourceModel()->data(source_left, NetworkModel::BufferIdRole).value<BufferId>();
266   BufferId rightBufferId = sourceModel()->data(source_right, NetworkModel::BufferIdRole).value<BufferId>();
267   if(config()) {
268     return config()->bufferList().indexOf(leftBufferId) < config()->bufferList().indexOf(rightBufferId);
269   } else
270     return bufferIdLessThan(leftBufferId, rightBufferId);
271 }
272
273 bool BufferViewFilter::networkLessThan(const QModelIndex &source_left, const QModelIndex &source_right) const {
274   NetworkId leftNetworkId = sourceModel()->data(source_left, NetworkModel::NetworkIdRole).value<NetworkId>();
275   NetworkId rightNetworkId = sourceModel()->data(source_right, NetworkModel::NetworkIdRole).value<NetworkId>();
276
277   if(config() && config()->sortAlphabetically())
278     return QSortFilterProxyModel::lessThan(source_left, source_right);
279   else
280     return leftNetworkId < rightNetworkId;
281 }
282
283 QVariant BufferViewFilter::data(const QModelIndex &index, int role) const {
284   if(role == Qt::ForegroundRole)
285     return foreground(index);
286   else
287     return QSortFilterProxyModel::data(index, role);
288 }
289
290 QVariant BufferViewFilter::foreground(const QModelIndex &index) const {
291   if(!index.data(NetworkModel::ItemActiveRole).toBool())
292     return _FgColorInactiveActivity;
293
294   Buffer::ActivityLevel activity = (Buffer::ActivityLevel)index.data(NetworkModel::BufferActivityRole).toInt();
295
296   if(activity & Buffer::Highlight)
297     return _FgColorHighlightActivity;
298   if(activity & Buffer::NewMessage)
299     return _FgColorNewMessageActivity;
300   if(activity & Buffer::OtherActivity)
301     return _FgColorOtherActivity;
302
303   return _FgColorNoActivity;
304 }
305
306 void BufferViewFilter::checkPreviousCurrentForRemoval(const QModelIndex &current, const QModelIndex &previous) {
307   Q_UNUSED(current);
308   if(previous.isValid())
309     QCoreApplication::postEvent(this, new CheckRemovalEvent(previous));
310 }
311
312 void BufferViewFilter::customEvent(QEvent *event) {
313   if(event->type() != QEvent::User)
314     return;
315   
316   CheckRemovalEvent *removalEvent = static_cast<CheckRemovalEvent *>(event);
317   checkItemForRemoval(removalEvent->index);
318   
319   event->accept();
320 }
321
322 void BufferViewFilter::checkItemsForRemoval(const QModelIndex &topLeft, const QModelIndex &bottomRight) {
323   QModelIndex source_topLeft = mapToSource(topLeft);
324   QModelIndex source_bottomRight = mapToSource(bottomRight);
325   emit _dataChanged(source_topLeft, source_bottomRight);
326 }
327
328 // ******************************
329 //  Helper
330 // ******************************
331 bool bufferIdLessThan(const BufferId &left, const BufferId &right) {
332   Q_CHECK_PTR(Client::networkModel());
333   if(!Client::networkModel())
334     return true;
335   
336   QModelIndex leftIndex = Client::networkModel()->bufferIndex(left);
337   QModelIndex rightIndex = Client::networkModel()->bufferIndex(right);
338
339   int leftType = Client::networkModel()->data(leftIndex, NetworkModel::BufferTypeRole).toInt();
340   int rightType = Client::networkModel()->data(rightIndex, NetworkModel::BufferTypeRole).toInt();
341
342   if(leftType != rightType)
343     return leftType < rightType;
344   else
345     return QString::compare(Client::networkModel()->data(leftIndex, Qt::DisplayRole).toString(), Client::networkModel()->data(rightIndex, Qt::DisplayRole).toString(), Qt::CaseInsensitive) < 0;
346 }
347