X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fselectionmodelsynchronizer.h;h=b43ef26dc965c449893efdeff1ce32b1bc0724f8;hp=2e153b657e71e7904599e2b3a63fe25cdbb0bad5;hb=73696998505c35c02bd019f78e9f502cbc36da5b;hpb=8aceefa7a5b9910c93bdf05fdc86d875193d6782 diff --git a/src/client/selectionmodelsynchronizer.h b/src/client/selectionmodelsynchronizer.h index 2e153b65..b43ef26d 100644 --- a/src/client/selectionmodelsynchronizer.h +++ b/src/client/selectionmodelsynchronizer.h @@ -32,7 +32,7 @@ class SelectionModelSynchronizer : public QObject { public: SelectionModelSynchronizer(QAbstractItemModel *parent = 0); - void addSelectionModel(QItemSelectionModel *selectionModel); + void synchronizeSelectionModel(QItemSelectionModel *selectionModel); void removeSelectionModel(QItemSelectionModel *selectionModel); inline QAbstractItemModel *model() { return _model; } @@ -40,13 +40,9 @@ public: inline QModelIndex currentIndex() const { return _selectionModel.currentIndex(); } inline QItemSelection currentSelection() const { return _selectionModel.selection(); } -signals: - void setCurrentIndex(const QModelIndex ¤t, QItemSelectionModel::SelectionFlags command); - void select(const QItemSelection &selected, QItemSelectionModel::SelectionFlags command); - private slots: - void mappedCurrentChanged(const QModelIndex ¤t, const QModelIndex &previous); - void mappedSelectionChanged(const QItemSelection &selected, const QItemSelection &previous); + void syncedCurrentChanged(const QModelIndex ¤t, const QModelIndex &previous); + void syncedSelectionChanged(const QItemSelection &selected, const QItemSelection &previous); void setCurrentIndex(const QModelIndex &index); void setCurrentSelection(const QItemSelection &selection); @@ -54,15 +50,21 @@ private slots: void currentChanged(const QModelIndex ¤t, const QModelIndex &previous); void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected); + void selectionModelDestroyed(QObject *object); + private: QAbstractItemModel *_model; QItemSelectionModel _selectionModel; + bool _changeCurrentEnabled; + bool _changeSelectionEnabled; bool checkBaseModel(QItemSelectionModel *model); + QModelIndex mapFromSource(const QModelIndex &sourceIndex, const QItemSelectionModel *selectionModel); + QItemSelection mapSelectionFromSource(const QItemSelection &sourceSelection, const QItemSelectionModel *selectionModel); QModelIndex mapToSource(const QModelIndex &index, QItemSelectionModel *selectionModel); QItemSelection mapSelectionToSource(const QItemSelection &selection, QItemSelectionModel *selectionModel); - + QSet _selectionModels; }; #endif