X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=6d3f39818aa88e2b10194dd696384d388c1181c0;hp=d785f921e1120527413da8318d82ce8c09183b0e;hb=df38e82953be7b676871f7215053a005decb90d1;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index d785f921..6d3f3981 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -18,6 +18,9 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include "nickview.h" + +#include #include #include #include @@ -25,10 +28,11 @@ #include "buffermodel.h" #include "client.h" +#include "contextmenuactionprovider.h" +#include "graphicalui.h" #include "nickview.h" #include "nickviewfilter.h" #include "networkmodel.h" -#include "quasselui.h" #include "types.h" class ExpandAllEvent : public QEvent { @@ -65,10 +69,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(); } @@ -85,18 +95,23 @@ 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); + if(indexList.contains(currentIndex())) { + indexList.removeAll(currentIndex()); + indexList.prepend(currentIndex()); + } + + return indexList; +} + +void NickView::showContextMenu(const QPoint &pos ) { + Q_UNUSED(pos); QMenu contextMenu(this); - Client::mainUi()->actionProvider()->addActions(&contextMenu, indexList); + GraphicalUi::contextMenuActionProvider()->addActions(&contextMenu, selectedIndexes()); contextMenu.exec(QCursor::pos()); }