X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fselectionmodelsynchronizer.h;h=2e153b657e71e7904599e2b3a63fe25cdbb0bad5;hp=5cda9ccec6e17fb6457ebd5cfbb1ac31dd931d0c;hb=e190d576540cf5dfb2e63d33a69662083f3db210;hpb=4ea3ce9e1ff6df8b1d2a257da7e5fbba9f6cbfbc diff --git a/src/client/selectionmodelsynchronizer.h b/src/client/selectionmodelsynchronizer.h index 5cda9cce..2e153b65 100644 --- a/src/client/selectionmodelsynchronizer.h +++ b/src/client/selectionmodelsynchronizer.h @@ -25,34 +25,44 @@ #include class QAbstractItemModel; -class MappedSelectionModel; class SelectionModelSynchronizer : public QObject { Q_OBJECT public: SelectionModelSynchronizer(QAbstractItemModel *parent = 0); - virtual ~SelectionModelSynchronizer(); - void addSelectionModel(MappedSelectionModel *model); - void addRegularSelectionModel(QItemSelectionModel *model); - void removeSelectionModel(MappedSelectionModel *model); + void addSelectionModel(QItemSelectionModel *selectionModel); + void removeSelectionModel(QItemSelectionModel *selectionModel); inline QAbstractItemModel *model() { return _model; } + inline QItemSelectionModel *selectionModel() const { return const_cast(&_selectionModel); } + 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); - void _mappedSelectionChanged(const QItemSelection &selected); + void mappedCurrentChanged(const QModelIndex ¤t, const QModelIndex &previous); + void mappedSelectionChanged(const QItemSelection &selected, const QItemSelection &previous); - void _regularCurrentChanged(const QModelIndex &newCurrent, const QModelIndex &oldCurrent); - void _regularSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected); + void setCurrentIndex(const QModelIndex &index); + void setCurrentSelection(const QItemSelection &selection); + + void currentChanged(const QModelIndex ¤t, const QModelIndex &previous); + void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected); -signals: - void select(const QItemSelection &selection, QItemSelectionModel::SelectionFlags command); - void setCurrentIndex(const QModelIndex &index, QItemSelectionModel::SelectionFlags command); - private: QAbstractItemModel *_model; + QItemSelectionModel _selectionModel; + + bool checkBaseModel(QItemSelectionModel *model); + QModelIndex mapToSource(const QModelIndex &index, QItemSelectionModel *selectionModel); + QItemSelection mapSelectionToSource(const QItemSelection &selection, QItemSelectionModel *selectionModel); + + }; #endif