QssParser: Interpret "oblique" as italic
[quassel.git] / src / uisupport / bufferview.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "bufferview.h"
22
23 #include <QApplication>
24 #include <QAction>
25 #include <QFlags>
26 #include <QHeaderView>
27 #include <QLineEdit>
28 #include <QMenu>
29 #include <QMessageBox>
30 #include <QSet>
31 #include <QVBoxLayout>
32
33 #include "action.h"
34 #include "buffermodel.h"
35 #include "bufferviewfilter.h"
36 #include "buffersettings.h"
37 #include "buffersyncer.h"
38 #include "client.h"
39 #include "contextmenuactionprovider.h"
40 #include "graphicalui.h"
41 #include "network.h"
42 #include "networkmodel.h"
43 #include "contextmenuactionprovider.h"
44
45 /*****************************************
46 * The TreeView showing the Buffers
47 *****************************************/
48 // Please be carefull when reimplementing methods which are used to inform the view about changes to the data
49 // to be on the safe side: call QTreeView's method aswell (or TreeViewTouch's)
50 BufferView::BufferView(QWidget *parent)
51     : TreeViewTouch(parent)
52 {
53     connect(this, SIGNAL(collapsed(const QModelIndex &)), SLOT(storeExpandedState(const QModelIndex &)));
54     connect(this, SIGNAL(expanded(const QModelIndex &)), SLOT(storeExpandedState(const QModelIndex &)));
55
56     setSelectionMode(QAbstractItemView::ExtendedSelection);
57
58     QAbstractItemDelegate *oldDelegate = itemDelegate();
59     BufferViewDelegate *tristateDelegate = new BufferViewDelegate(this);
60     setItemDelegate(tristateDelegate);
61     delete oldDelegate;
62 }
63
64
65 void BufferView::init()
66 {
67     header()->setContextMenuPolicy(Qt::ActionsContextMenu);
68     hideColumn(1);
69     hideColumn(2);
70     setIndentation(10);
71
72     // New entries will be expanded automatically when added; no need to call expandAll()
73
74     header()->hide(); // nobody seems to use this anyway
75
76     setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
77
78     // breaks with Qt 4.8
79     if (QString("4.8.0") > qVersion()) // FIXME breaks with Qt versions >= 4.10!
80         setAnimated(true);
81
82     // FIXME This is to workaround bug #663
83     setUniformRowHeights(true);
84
85 #ifndef QT_NO_DRAGANDDROP
86     setDragEnabled(true);
87     setAcceptDrops(true);
88     setDropIndicatorShown(true);
89 #endif
90
91     setSortingEnabled(true);
92     sortByColumn(0, Qt::AscendingOrder);
93
94 #if defined Q_OS_MACOS || defined Q_OS_WIN
95     // afaik this is better on Mac and Windows
96     disconnect(this, SIGNAL(activated(QModelIndex)), this, SLOT(joinChannel(QModelIndex)));
97     connect(this, SIGNAL(activated(QModelIndex)), SLOT(joinChannel(QModelIndex)));
98 #else
99     disconnect(this, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(joinChannel(QModelIndex)));
100     connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(joinChannel(QModelIndex)));
101 #endif
102 }
103
104
105 void BufferView::setModel(QAbstractItemModel *model)
106 {
107     delete selectionModel();
108
109     TreeViewTouch::setModel(model);
110     init();
111     // remove old Actions
112     QList<QAction *> oldactions = header()->actions();
113     foreach(QAction *action, oldactions) {
114         header()->removeAction(action);
115         action->deleteLater();
116     }
117
118     if (!model)
119         return;
120
121     QString sectionName;
122     QAction *showSection;
123     for (int i = 1; i < model->columnCount(); i++) {
124         sectionName = (model->headerData(i, Qt::Horizontal, Qt::DisplayRole)).toString();
125         showSection = new QAction(sectionName, header());
126         showSection->setCheckable(true);
127         showSection->setChecked(!isColumnHidden(i));
128         showSection->setProperty("column", i);
129         connect(showSection, SIGNAL(toggled(bool)), this, SLOT(toggleHeader(bool)));
130         header()->addAction(showSection);
131     }
132
133     connect(model, SIGNAL(layoutChanged()), this, SLOT(on_layoutChanged()));
134
135     // Make sure collapsation is correct after setting a model
136     // This might not be needed here, only in BufferView::setFilteredModel().  If issues arise, just
137     // move down to setFilteredModel (which calls this function).
138     setExpandedState();
139 }
140
141
142 void BufferView::setFilteredModel(QAbstractItemModel *model_, BufferViewConfig *config)
143 {
144     BufferViewFilter *filter = qobject_cast<BufferViewFilter *>(model());
145     if (filter) {
146         filter->setConfig(config);
147         setConfig(config);
148         return;
149     }
150
151     if (model()) {
152         disconnect(this, 0, model(), 0);
153         disconnect(model(), 0, this, 0);
154     }
155
156     if (!model_) {
157         setModel(model_);
158     }
159     else {
160         BufferViewFilter *filter = new BufferViewFilter(model_, config);
161         setModel(filter);
162         connect(filter, SIGNAL(configChanged()), this, SLOT(on_configChanged()));
163     }
164     setConfig(config);
165 }
166
167
168 void BufferView::setConfig(BufferViewConfig *config)
169 {
170     if (_config == config)
171         return;
172
173     if (_config) {
174         disconnect(_config, 0, this, 0);
175     }
176
177     _config = config;
178     if (config) {
179         connect(config, SIGNAL(networkIdSet(const NetworkId &)), this, SLOT(setRootIndexForNetworkId(const NetworkId &)));
180         setRootIndexForNetworkId(config->networkId());
181     }
182     else {
183         setIndentation(10);
184         setRootIndex(QModelIndex());
185     }
186 }
187
188
189 void BufferView::setRootIndexForNetworkId(const NetworkId &networkId)
190 {
191     if (!networkId.isValid() || !model()) {
192         setIndentation(10);
193         setRootIndex(QModelIndex());
194     }
195     else {
196         setIndentation(5);
197         int networkCount = model()->rowCount();
198         QModelIndex child;
199         for (int i = 0; i < networkCount; i++) {
200             child = model()->index(i, 0);
201             if (networkId == model()->data(child, NetworkModel::NetworkIdRole).value<NetworkId>())
202                 setRootIndex(child);
203         }
204     }
205 }
206
207
208 void BufferView::joinChannel(const QModelIndex &index)
209 {
210     BufferInfo::Type bufferType = (BufferInfo::Type)index.data(NetworkModel::BufferTypeRole).value<int>();
211
212     if (bufferType != BufferInfo::ChannelBuffer)
213         return;
214
215     BufferInfo bufferInfo = index.data(NetworkModel::BufferInfoRole).value<BufferInfo>();
216
217     Client::userInput(bufferInfo, QString("/JOIN %1").arg(bufferInfo.bufferName()));
218 }
219
220
221 void BufferView::dropEvent(QDropEvent *event)
222 {
223     QModelIndex index = indexAt(event->pos());
224
225     QRect indexRect = visualRect(index);
226     QPoint cursorPos = event->pos();
227
228     // check if we're really _on_ the item and not indicating a move to just above or below the item
229     // Magic margin number for this is from QAbstractItemViewPrivate::position()
230     const int margin = 2;
231     if (cursorPos.y() - indexRect.top() < margin
232         || indexRect.bottom() - cursorPos.y() < margin)
233         return TreeViewTouch::dropEvent(event);
234
235     // If more than one buffer was being dragged, treat this as a rearrangement instead of a merge request
236     QList<QPair<NetworkId, BufferId> > bufferList = Client::networkModel()->mimeDataToBufferList(event->mimeData());
237     if (bufferList.count() != 1)
238         return TreeViewTouch::dropEvent(event);
239
240     // Get the Buffer ID of the buffer that was being dragged
241     BufferId bufferId2 = bufferList[0].second;
242
243     // Get the Buffer ID of the target buffer
244     BufferId bufferId1 = index.data(NetworkModel::BufferIdRole).value<BufferId>();
245
246     // If the source and target are the same buffer, this was an aborted rearrangement
247     if (bufferId1 == bufferId2)
248         return TreeViewTouch::dropEvent(event);
249
250     // Get index of buffer that was being dragged
251     QModelIndex index2 = Client::networkModel()->bufferIndex(bufferId2);
252
253     // If the buffer being dragged is a channel and we're still joined to it, treat this as a rearrangement
254     // This prevents us from being joined to a channel with no associated UI elements
255     if (index2.data(NetworkModel::BufferTypeRole) == BufferInfo::ChannelBuffer && index2.data(NetworkModel::ItemActiveRole) == true)
256         return TreeViewTouch::dropEvent(event);
257
258     //If the source buffer is not mergeable(AKA not a Channel and not a Query), try rearranging instead
259     if (index2.data(NetworkModel::BufferTypeRole) != BufferInfo::ChannelBuffer && index2.data(NetworkModel::BufferTypeRole) != BufferInfo::QueryBuffer)
260         return TreeViewTouch::dropEvent(event);
261
262     // If the target buffer is not mergeable(AKA not a Channel and not a Query), try rearranging instead
263     if (index.data(NetworkModel::BufferTypeRole) != BufferInfo::ChannelBuffer && index.data(NetworkModel::BufferTypeRole) != BufferInfo::QueryBuffer)
264         return TreeViewTouch::dropEvent(event);
265
266     // Confirm that the user really wants to merge the buffers before doing so
267     int res = QMessageBox::question(0, tr("Merge buffers permanently?"),
268         tr("Do you want to merge the buffer \"%1\" permanently into buffer \"%2\"?\n This cannot be reversed!").arg(Client::networkModel()->bufferName(bufferId2)).arg(Client::networkModel()->bufferName(bufferId1)),
269         QMessageBox::Yes|QMessageBox::No, QMessageBox::No);
270     if (res == QMessageBox::Yes) {
271         Client::mergeBuffersPermanently(bufferId1, bufferId2);
272     }
273 }
274
275
276 void BufferView::removeSelectedBuffers(bool permanently)
277 {
278     if (!config())
279         return;
280
281     BufferId bufferId;
282     QSet<BufferId> removedRows;
283     foreach(QModelIndex index, selectionModel()->selectedIndexes()) {
284         if (index.data(NetworkModel::ItemTypeRole) != NetworkModel::BufferItemType)
285             continue;
286
287         bufferId = index.data(NetworkModel::BufferIdRole).value<BufferId>();
288         if (removedRows.contains(bufferId))
289             continue;
290
291         removedRows << bufferId;
292     }
293
294     foreach(BufferId bufferId, removedRows) {
295         if (permanently)
296             config()->requestRemoveBufferPermanently(bufferId);
297         else
298             config()->requestRemoveBuffer(bufferId);
299     }
300 }
301
302
303 void BufferView::rowsInserted(const QModelIndex &parent, int start, int end)
304 {
305     TreeViewTouch::rowsInserted(parent, start, end);
306
307     // ensure that newly inserted network nodes are expanded per default
308     if (parent.data(NetworkModel::ItemTypeRole) != NetworkModel::NetworkItemType)
309         return;
310
311     setExpandedState(parent);
312 }
313
314
315 void BufferView::on_layoutChanged()
316 {
317     int numNets = model()->rowCount(QModelIndex());
318     for (int row = 0; row < numNets; row++) {
319         QModelIndex networkIdx = model()->index(row, 0, QModelIndex());
320         setExpandedState(networkIdx);
321     }
322 }
323
324
325 void BufferView::on_configChanged()
326 {
327     Q_ASSERT(model());
328
329     // Expand/collapse as needed
330     setExpandedState();
331
332     if (config()) {
333         // update selection to current one
334         Client::bufferModel()->synchronizeView(this);
335     }
336 }
337
338
339 void BufferView::setExpandedState()
340 {
341     // Expand all active networks, collapse inactive ones... unless manually changed
342     QModelIndex networkIdx;
343     NetworkId networkId;
344     for (int row = 0; row < model()->rowCount(); row++) {
345         networkIdx = model()->index(row, 0);
346         if (model()->rowCount(networkIdx) ==  0)
347             continue;
348
349         networkId = model()->data(networkIdx, NetworkModel::NetworkIdRole).value<NetworkId>();
350         if (!networkId.isValid())
351             continue;
352
353         setExpandedState(networkIdx);
354     }
355 }
356
357
358 void BufferView::storeExpandedState(const QModelIndex &networkIdx)
359 {
360     NetworkId networkId = model()->data(networkIdx, NetworkModel::NetworkIdRole).value<NetworkId>();
361
362     int oldState = 0;
363     if (isExpanded(networkIdx))
364         oldState |= WasExpanded;
365     if (model()->data(networkIdx, NetworkModel::ItemActiveRole).toBool())
366         oldState |= WasActive;
367
368     _expandedState[networkId] = oldState;
369 }
370
371
372 void BufferView::setExpandedState(const QModelIndex &networkIdx)
373 {
374     if (model()->data(networkIdx, NetworkModel::ItemTypeRole) != NetworkModel::NetworkItemType)
375         return;
376
377     if (model()->rowCount(networkIdx) == 0)
378         return;
379
380     NetworkId networkId = model()->data(networkIdx, NetworkModel::NetworkIdRole).value<NetworkId>();
381
382     bool networkActive = model()->data(networkIdx, NetworkModel::ItemActiveRole).toBool();
383     bool expandNetwork = networkActive;
384     if (_expandedState.contains(networkId)) {
385         int oldState = _expandedState[networkId];
386         if ((bool)(oldState & WasActive) == networkActive)
387             expandNetwork = (bool)(oldState & WasExpanded);
388     }
389
390     if (expandNetwork != isExpanded(networkIdx)) {
391         update(networkIdx);
392         setExpanded(networkIdx, expandNetwork);
393     }
394     storeExpandedState(networkIdx); // this call is needed to keep track of the isActive state
395 }
396
397 #if QT_VERSION < 0x050000
398 void BufferView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
399 {
400     TreeViewTouch::dataChanged(topLeft, bottomRight);
401 #else
402 void BufferView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles)
403 {
404     TreeViewTouch::dataChanged(topLeft, bottomRight, roles);
405 #endif
406
407     // determine how many items have been changed and if any of them is a networkitem
408     // which just swichted from active to inactive or vice versa
409     if (topLeft.data(NetworkModel::ItemTypeRole) != NetworkModel::NetworkItemType)
410         return;
411
412     for (int i = topLeft.row(); i <= bottomRight.row(); i++) {
413         QModelIndex networkIdx = topLeft.sibling(i, 0);
414         setExpandedState(networkIdx);
415     }
416 }
417
418
419 void BufferView::toggleHeader(bool checked)
420 {
421     QAction *action = qobject_cast<QAction *>(sender());
422     header()->setSectionHidden((action->property("column")).toInt(), !checked);
423 }
424
425
426 void BufferView::contextMenuEvent(QContextMenuEvent *event)
427 {
428     QModelIndex index = indexAt(event->pos());
429     if (!index.isValid())
430         index = rootIndex();
431
432     QMenu contextMenu(this);
433
434     if (index.isValid()) {
435         addActionsToMenu(&contextMenu, index);
436     }
437
438     addFilterActions(&contextMenu, index);
439
440     if (!contextMenu.actions().isEmpty())
441         contextMenu.exec(QCursor::pos());
442 }
443
444
445 void BufferView::addActionsToMenu(QMenu *contextMenu, const QModelIndex &index)
446 {
447     QModelIndexList indexList = selectedIndexes();
448     // make sure the item we clicked on is first
449     indexList.removeAll(index);
450     indexList.prepend(index);
451
452     GraphicalUi::contextMenuActionProvider()->addActions(contextMenu, indexList, this, "menuActionTriggered", (bool)config());
453 }
454
455
456 void BufferView::addFilterActions(QMenu *contextMenu, const QModelIndex &index)
457 {
458     BufferViewFilter *filter = qobject_cast<BufferViewFilter *>(model());
459     if (filter) {
460         QList<QAction *> filterActions = filter->actions(index);
461         if (!filterActions.isEmpty()) {
462             contextMenu->addSeparator();
463             foreach(QAction *action, filterActions) {
464                 contextMenu->addAction(action);
465             }
466         }
467     }
468 }
469
470
471 void BufferView::menuActionTriggered(QAction *result)
472 {
473     ContextMenuActionProvider::ActionType type = (ContextMenuActionProvider::ActionType)result->data().toInt();
474     switch (type) {
475     case ContextMenuActionProvider::HideBufferTemporarily:
476         removeSelectedBuffers();
477         break;
478     case ContextMenuActionProvider::HideBufferPermanently:
479         removeSelectedBuffers(true);
480         break;
481     default:
482         return;
483     }
484 }
485
486
487 void BufferView::nextBuffer()
488 {
489     changeBuffer(Forward);
490 }
491
492
493 void BufferView::previousBuffer()
494 {
495     changeBuffer(Backward);
496 }
497
498
499 void BufferView::changeBuffer(Direction direction)
500 {
501     QModelIndex currentIndex = selectionModel()->currentIndex();
502     QModelIndex resultingIndex;
503
504     QModelIndex lastNetIndex = model()->index(model()->rowCount() - 1, 0, QModelIndex());
505
506     if (currentIndex.parent().isValid()) {
507         //If we are a child node just switch among siblings unless it's the first/last child
508         resultingIndex = currentIndex.sibling(currentIndex.row() + direction, 0);
509
510         if (!resultingIndex.isValid()) {
511             QModelIndex parent = currentIndex.parent();
512             if (direction == Backward)
513                 resultingIndex = parent;
514             else
515                 resultingIndex = parent.sibling(parent.row() + direction, 0);
516         }
517     }
518     else {
519         //If we have a toplevel node, try and get an adjacent child
520         if (direction == Backward) {
521             QModelIndex newParent = currentIndex.sibling(currentIndex.row() - 1, 0);
522             if (currentIndex.row() == 0)
523                 newParent = lastNetIndex;
524             if (model()->hasChildren(newParent))
525                 resultingIndex = newParent.child(model()->rowCount(newParent) - 1, 0);
526             else
527                 resultingIndex = newParent;
528         }
529         else {
530             if (model()->hasChildren(currentIndex))
531                 resultingIndex = currentIndex.child(0, 0);
532             else
533                 resultingIndex = currentIndex.sibling(currentIndex.row() + 1, 0);
534         }
535     }
536
537     if (!resultingIndex.isValid()) {
538         if (direction == Forward)
539             resultingIndex = model()->index(0, 0, QModelIndex());
540         else
541             resultingIndex = lastNetIndex.child(model()->rowCount(lastNetIndex) - 1, 0);
542     }
543
544     selectionModel()->setCurrentIndex(resultingIndex, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
545     selectionModel()->select(resultingIndex, QItemSelectionModel::ClearAndSelect);
546 }
547
548 void BufferView::selectFirstBuffer()
549 {
550     int networksCount = model()->rowCount(QModelIndex());
551     if (networksCount == 0) {
552         return;
553     }
554
555     QModelIndex bufferIndex;
556     for (int row = 0; row < networksCount; row++) {
557         QModelIndex networkIndex = model()->index(row, 0, QModelIndex());
558         int childCount = model()->rowCount(networkIndex);
559         if (childCount > 0) {
560             bufferIndex = model()->index(0, 0, networkIndex);
561             break;
562         }
563     }
564
565     if (!bufferIndex.isValid()) {
566         return;
567     }
568
569     selectionModel()->setCurrentIndex(bufferIndex, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
570     selectionModel()->select(bufferIndex, QItemSelectionModel::ClearAndSelect);
571 }
572
573 void BufferView::wheelEvent(QWheelEvent *event)
574 {
575     if (ItemViewSettings().mouseWheelChangesBuffer() == (bool)(event->modifiers() & Qt::AltModifier))
576         return TreeViewTouch::wheelEvent(event);
577
578     int rowDelta = (event->delta() > 0) ? -1 : 1;
579     changeBuffer((Direction)rowDelta);
580 }
581
582
583 void BufferView::hideCurrentBuffer()
584 {
585     QModelIndex index = selectionModel()->currentIndex();
586     if (index.data(NetworkModel::ItemTypeRole) != NetworkModel::BufferItemType)
587         return;
588
589     BufferId bufferId = index.data(NetworkModel::BufferIdRole).value<BufferId>();
590
591     //The check above means we won't be looking at a network, which should always be the first row, so we can just go backwards.
592     changeBuffer(Backward);
593
594     config()->requestRemoveBuffer(bufferId);
595 }
596
597 void BufferView::filterTextChanged(QString filterString)
598 {
599     BufferViewFilter *filter = qobject_cast<BufferViewFilter *>(model());
600     if (!filter) {
601         return;
602     }
603     filter->setFilterString(filterString);
604     on_configChanged(); // make sure collapsation is correct
605 }
606
607
608 QSize BufferView::sizeHint() const
609 {
610     return TreeViewTouch::sizeHint();
611
612     if (!model())
613         return TreeViewTouch::sizeHint();
614
615     if (model()->rowCount() == 0)
616         return QSize(120, 50);
617
618     int columnSize = 0;
619     for (int i = 0; i < model()->columnCount(); i++) {
620         if (!isColumnHidden(i))
621             columnSize += sizeHintForColumn(i);
622     }
623     return QSize(columnSize, 50);
624 }
625
626
627 // ****************************************
628 //  BufferViewDelgate
629 // ****************************************
630 class ColorsChangedEvent : public QEvent
631 {
632 public:
633     ColorsChangedEvent() : QEvent(QEvent::User) {};
634 };
635
636
637 BufferViewDelegate::BufferViewDelegate(QObject *parent)
638     : QStyledItemDelegate(parent)
639 {
640 }
641
642
643 void BufferViewDelegate::customEvent(QEvent *event)
644 {
645     if (event->type() != QEvent::User)
646         return;
647
648     event->accept();
649 }
650
651
652 bool BufferViewDelegate::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index)
653 {
654     if (event->type() != QEvent::MouseButtonRelease)
655         return QStyledItemDelegate::editorEvent(event, model, option, index);
656
657     if (!(model->flags(index) & Qt::ItemIsUserCheckable))
658         return QStyledItemDelegate::editorEvent(event, model, option, index);
659
660     QVariant value = index.data(Qt::CheckStateRole);
661     if (!value.isValid())
662         return QStyledItemDelegate::editorEvent(event, model, option, index);
663
664 #if QT_VERSION < 0x050000
665     QStyleOptionViewItemV4 viewOpt(option);
666 #else
667     QStyleOptionViewItem viewOpt(option);
668 #endif
669     initStyleOption(&viewOpt, index);
670
671     QRect checkRect = viewOpt.widget->style()->subElementRect(QStyle::SE_ItemViewItemCheckIndicator, &viewOpt, viewOpt.widget);
672     QMouseEvent *me = static_cast<QMouseEvent *>(event);
673
674     if (me->button() != Qt::LeftButton || !checkRect.contains(me->pos()))
675         return QStyledItemDelegate::editorEvent(event, model, option, index);
676
677     Qt::CheckState state = static_cast<Qt::CheckState>(value.toInt());
678     if (state == Qt::Unchecked)
679         state = Qt::PartiallyChecked;
680     else if (state == Qt::PartiallyChecked)
681         state = Qt::Checked;
682     else
683         state = Qt::Unchecked;
684     model->setData(index, state, Qt::CheckStateRole);
685     return true;
686 }
687
688
689 // ==============================
690 //  BufferView Dock
691 // ==============================
692 BufferViewDock::BufferViewDock(BufferViewConfig *config, QWidget *parent)
693     : QDockWidget(parent),
694     _childWidget(0),
695     _widget(new QWidget(parent)),
696     _filterEdit(new QLineEdit(parent)),
697     _active(false),
698     _title(config->bufferViewName())
699 {
700     setObjectName("BufferViewDock-" + QString::number(config->bufferViewId()));
701     toggleViewAction()->setData(config->bufferViewId());
702     setAllowedAreas(Qt::RightDockWidgetArea|Qt::LeftDockWidgetArea);
703     connect(config, SIGNAL(bufferViewNameSet(const QString &)), this, SLOT(bufferViewRenamed(const QString &)));
704     connect(config, SIGNAL(configChanged()), SLOT(configChanged()));
705     updateTitle();
706
707     _widget->setLayout(new QVBoxLayout);
708     _widget->layout()->setSpacing(0);
709     _widget->layout()->setContentsMargins(0, 0, 0, 0);
710
711     // We need to potentially hide it early, so it doesn't flicker
712     _filterEdit->setVisible(config->showSearch());
713     _filterEdit->setFocusPolicy(Qt::ClickFocus);
714     _filterEdit->installEventFilter(this);
715     _filterEdit->setPlaceholderText(tr("Search..."));
716     connect(_filterEdit, SIGNAL(returnPressed()), SLOT(onFilterReturnPressed()));
717
718     _widget->layout()->addWidget(_filterEdit);
719     QDockWidget::setWidget(_widget);
720 }
721
722 void BufferViewDock::setLocked(bool locked) {
723     if (locked) {
724         setFeatures(0);
725     }
726     else {
727         setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable);
728     }
729 }
730
731 void BufferViewDock::updateTitle()
732 {
733     QString title = _title;
734     if (isActive())
735         title.prepend(QString::fromUtf8("• "));
736     setWindowTitle(title);
737 }
738
739 void BufferViewDock::configChanged()
740 {
741     if (_filterEdit->isVisible() != config()->showSearch()) {
742         _filterEdit->setVisible(config()->showSearch());
743         _filterEdit->clear();
744     }
745 }
746
747 void BufferViewDock::onFilterReturnPressed()
748 {
749     if (_oldFocusItem) {
750         _oldFocusItem->setFocus();
751         _oldFocusItem = 0;
752     }
753
754     if (!config()->showSearch()) {
755         _filterEdit->setVisible(false);
756     }
757
758     BufferView *view = bufferView();
759     if (!view || _filterEdit->text().isEmpty()) {
760         return;
761     }
762
763     view->selectFirstBuffer();
764     _filterEdit->clear();
765 }
766
767 void BufferViewDock::setActive(bool active)
768 {
769     if (active != isActive()) {
770         _active = active;
771         updateTitle();
772         if (active) {
773             raise();  // for tabbed docks
774         }
775     }
776 }
777
778 bool BufferViewDock::eventFilter(QObject *object, QEvent *event)
779 {
780    if (object != _filterEdit)  {
781        return false;
782    }
783
784    if (event->type() == QEvent::FocusOut) {
785        if (!config()->showSearch() && _filterEdit->text().isEmpty()) {
786            _filterEdit->setVisible(false);
787            return true;
788        }
789    } else if (event->type() == QEvent::KeyRelease) {
790        QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
791        if (keyEvent->key() != Qt::Key_Escape) {
792            return false;
793        }
794
795        _filterEdit->clear();
796
797        if (_oldFocusItem) {
798            _oldFocusItem->setFocus();
799            _oldFocusItem = 0;
800        }
801
802        return true;
803    }
804
805    return false;
806 }
807
808 void BufferViewDock::bufferViewRenamed(const QString &newName)
809 {
810     _title = newName;
811     updateTitle();
812     toggleViewAction()->setText(newName);
813 }
814
815
816 int BufferViewDock::bufferViewId() const
817 {
818     BufferView *view = bufferView();
819     if (!view)
820         return 0;
821
822     if (view->config())
823         return view->config()->bufferViewId();
824     else
825         return 0;
826 }
827
828
829 BufferViewConfig *BufferViewDock::config() const
830 {
831     BufferView *view = bufferView();
832     if (!view)
833         return 0;
834     else
835         return view->config();
836 }
837
838 void BufferViewDock::setWidget(QWidget *newWidget)
839 {
840     _widget->layout()->addWidget(newWidget);
841     _childWidget = newWidget;
842
843     connect(_filterEdit, SIGNAL(textChanged(QString)), bufferView(), SLOT(filterTextChanged(QString)));
844 }
845
846 void BufferViewDock::activateFilter()
847 {
848     if (!_filterEdit->isVisible()) {
849         _filterEdit->setVisible(true);
850     }
851
852     _oldFocusItem = qApp->focusWidget();
853
854     _filterEdit->setFocus();
855 }