Emit signal on selection change, ensure currentIndex is first item in selectedItems()
authorManuel Nickschas <sputnick@quassel-irc.org>
Thu, 5 Feb 2009 22:49:30 +0000 (23:49 +0100)
committerManuel Nickschas <sputnick@quassel-irc.org>
Fri, 6 Feb 2009 00:26:32 +0000 (01:26 +0100)
src/uisupport/nickview.cpp
src/uisupport/nickview.h

index 98fbee3..1a1c4bb 100644 (file)
@@ -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());
 }
 
index 8a7972d..d77f178 100644 (file)
@@ -35,6 +35,9 @@ protected:
   virtual void rowsInserted(const QModelIndex &parent, int start, int end);
   virtual void customEvent(QEvent *event);
 
+  //! This reimplementation ensures that the current index is first in list
+  virtual QModelIndexList selectedIndexes() const;
+
 public slots:
   virtual void setModel(QAbstractItemModel *model);
   virtual void setRootIndex(const QModelIndex &index);
@@ -42,6 +45,9 @@ public slots:
   void showContextMenu(const QPoint & pos);
   void startQuery(const QModelIndex & modelIndex);
 
+signals:
+  void selectionUpdated();
+
 private:
 
 };