This is it, the long-awaited huge commit with the new Network handling.
[quassel.git] / src / client / selectionmodelsynchronizer.h
index 3e49e63..5cda9cc 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -35,6 +35,7 @@ public:
   virtual ~SelectionModelSynchronizer();
 
   void addSelectionModel(MappedSelectionModel *model);
+  void addRegularSelectionModel(QItemSelectionModel *model);
   void removeSelectionModel(MappedSelectionModel *model);
 
   inline QAbstractItemModel *model() { return _model; }
@@ -43,6 +44,9 @@ private slots:
   void _mappedCurrentChanged(const QModelIndex &current);
   void _mappedSelectionChanged(const QItemSelection &selected);
 
+  void _regularCurrentChanged(const QModelIndex &newCurrent, const QModelIndex &oldCurrent);
+  void _regularSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
+
 signals:
   void select(const QItemSelection &selection, QItemSelectionModel::SelectionFlags command);
   void setCurrentIndex(const QModelIndex &index, QItemSelectionModel::SelectionFlags command);