modernize: Reformat ALL the source... again!
[quassel.git] / src / client / selectionmodelsynchronizer.h
index b830d31..6bcf8dd 100644 (file)
@@ -22,8 +22,8 @@
 
 #include "client-export.h"
 
-#include <QObject>
 #include <QItemSelectionModel>
+#include <QObject>
 
 class QAbstractItemModel;
 
@@ -32,39 +32,39 @@ class CLIENT_EXPORT SelectionModelSynchronizer : public QObject
     Q_OBJECT
 
 public:
-    SelectionModelSynchronizer(QAbstractItemModel *parent = nullptr);
+    SelectionModelSynchronizer(QAbstractItemModelparent = nullptr);
 
-    void synchronizeSelectionModel(QItemSelectionModel *selectionModel);
-    void removeSelectionModel(QItemSelectionModel *selectionModel);
+    void synchronizeSelectionModel(QItemSelectionModelselectionModel);
+    void removeSelectionModel(QItemSelectionModelselectionModel);
 
-    inline QAbstractItemModel *model() { return _model; }
-    inline QItemSelectionModel *selectionModel() const { return const_cast<QItemSelectionModel *>(&_selectionModel); }
+    inline QAbstractItemModelmodel() { return _model; }
+    inline QItemSelectionModel* selectionModel() const { return const_cast<QItemSelectionModel*>(&_selectionModel); }
     inline QModelIndex currentIndex() const { return _selectionModel.currentIndex(); }
     inline QItemSelection currentSelection() const { return _selectionModel.selection(); }
 
 private slots:
-    void syncedCurrentChanged(const QModelIndex &current, const QModelIndex &previous);
-    void syncedSelectionChanged(const QItemSelection &selected, const QItemSelection &previous);
+    void syncedCurrentChanged(const QModelIndex& current, const QModelIndex& previous);
+    void syncedSelectionChanged(const QItemSelection& selected, const QItemSelection& previous);
 
-    void setCurrentIndex(const QModelIndex &index);
-    void setCurrentSelection(const QItemSelection &selection);
+    void setCurrentIndex(const QModelIndexindex);
+    void setCurrentSelection(const QItemSelectionselection);
 
-    void currentChanged(const QModelIndex &current, const QModelIndex &previous);
-    void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
+    void currentChanged(const QModelIndex& current, const QModelIndex& previous);
+    void selectionChanged(const QItemSelection& selected, const QItemSelection& deselected);
 
-    void selectionModelDestroyed(QObject *object);
+    void selectionModelDestroyed(QObjectobject);
 
 private:
-    QAbstractItemModel *_model;
+    QAbstractItemModel_model;
     QItemSelectionModel _selectionModel;
     bool _changeCurrentEnabled{true};
     bool _changeSelectionEnabled{true};
 
-    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);
+    bool checkBaseModel(QItemSelectionModelmodel);
+    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<QItemSelectionModel *> _selectionModels;
+    QSet<QItemSelectionModel*> _selectionModels;
 };