X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=1a1c4bbaf9b966ee6732fb8dd11f487b109478cd;hp=98fbee3bdd27d30413b706e27d79ede34f96fd92;hb=32a1f050b3292478f3b130c16ad66f22e6eb25c8;hpb=213f241aaad270308a5ab556f9eb4ab01033b3f5 diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index 98fbee3b..1a1c4bba 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -48,7 +48,6 @@ NickView::NickView(QWidget *parent) setItemDelegate(newDelegate); delete oldDelegate; - setIndentation(10); setAnimated(true); header()->hide(); @@ -75,10 +74,16 @@ void NickView::init() { for(int i = 1; i < model()->columnCount(); i++) setColumnHidden(i, true); + + connect(selectionModel(), SIGNAL(currentChanged(QModelIndex, QModelIndex)), SIGNAL(selectionUpdated())); + connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)), SIGNAL(selectionUpdated())); } -void NickView::setModel(QAbstractItemModel *model) { - QTreeView::setModel(model); +void NickView::setModel(QAbstractItemModel *model_) { + if(model()) + disconnect(model(), 0, this, 0); + + QTreeView::setModel(model_); init(); } @@ -95,18 +100,22 @@ void NickView::setRootIndex(const QModelIndex &index) { QCoreApplication::postEvent(this, new ExpandAllEvent); } -void NickView::showContextMenu(const QPoint & pos ) { - QModelIndex index = indexAt(pos); - if(index.data(NetworkModel::ItemTypeRole) != NetworkModel::IrcUserItemType) - return; +QModelIndexList NickView::selectedIndexes() const { + QModelIndexList indexList = QTreeView::selectedIndexes(); - QModelIndexList indexList = selectedIndexes(); // make sure the item we clicked on is first - indexList.removeAll(index); - indexList.prepend(index); + Q_ASSERT(indexList.contains(currentIndex())); + indexList.removeAll(currentIndex()); + indexList.prepend(currentIndex()); + + return indexList; +} + +void NickView::showContextMenu(const QPoint &pos ) { + Q_UNUSED(pos); QMenu contextMenu(this); - GraphicalUi::contextMenuActionProvider()->addActions(&contextMenu, indexList); + GraphicalUi::contextMenuActionProvider()->addActions(&contextMenu, selectedIndexes()); contextMenu.exec(QCursor::pos()); }