X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fselectionmodelsynchronizer.h;h=33550854ed2ace1b9e5e7f3aef479795cb0662ed;hp=a6551473b6a8cb588196b20f9b228730cf3b9de7;hb=46d75f41de7c1aaee605c096da28d4b0d8abf138;hpb=8699dd758516d0ded076811e8ea656adc95e69d0 diff --git a/src/client/selectionmodelsynchronizer.h b/src/client/selectionmodelsynchronizer.h index a6551473..33550854 100644 --- a/src/client/selectionmodelsynchronizer.h +++ b/src/client/selectionmodelsynchronizer.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -25,30 +25,46 @@ #include class QAbstractItemModel; -class MappedSelectionModel; class SelectionModelSynchronizer : public QObject { Q_OBJECT public: SelectionModelSynchronizer(QAbstractItemModel *parent = 0); - virtual ~SelectionModelSynchronizer(); - void addSelectionModel(MappedSelectionModel *model); - void removeSelectionModel(MappedSelectionModel *model); + void synchronizeSelectionModel(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(); } private slots: - void _mappedCurrentChanged(const QModelIndex ¤t); - void _mappedSelectionChanged(const QItemSelection &selected); + 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); + + void currentChanged(const QModelIndex ¤t, const QModelIndex &previous); + void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected); + + void selectionModelDestroyed(QObject *object); -signals: - void select(const QItemSelection &selection, QItemSelectionModel::SelectionFlags command); - void setCurrentIndex(const QModelIndex &index, QItemSelectionModel::SelectionFlags command); - 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