modernize: Reformat ALL the source... again!
[quassel.git] / src / uisupport / flatproxymodel.h
index 84fb779..ebb423d 100644 (file)
@@ -29,96 +29,99 @@ class UISUPPORT_EXPORT FlatProxyModel : public QAbstractProxyModel
     Q_OBJECT
 
 public:
-    FlatProxyModel(QObject *parent = nullptr);
+    FlatProxyModel(QObjectparent = nullptr);
 
-    QModelIndex mapFromSource(const QModelIndex &sourceIndex) const override;
-    QModelIndex mapToSource(const QModelIndex &proxyIndex) const override;
+    QModelIndex mapFromSource(const QModelIndexsourceIndex) const override;
+    QModelIndex mapToSource(const QModelIndexproxyIndex) const override;
 
-    QItemSelection mapSelectionFromSource(const QItemSelection &sourceSelection) const override;
-    QItemSelection mapSelectionToSource(const QItemSelection &proxySelection) const override;
+    QItemSelection mapSelectionFromSource(const QItemSelectionsourceSelection) const override;
+    QItemSelection mapSelectionToSource(const QItemSelectionproxySelection) const override;
 
-    void setSourceModel(QAbstractItemModel *sourceModel) override;
+    void setSourceModel(QAbstractItemModelsourceModel) override;
 
-    QModelIndex index(int row, int column, const QModelIndex &parent) const override;
-    QModelIndex parent(const QModelIndex &index) const override;
+    QModelIndex index(int row, int column, const QModelIndexparent) const override;
+    QModelIndex parent(const QModelIndexindex) const override;
 
-    int rowCount(const QModelIndex &index) const override;
-    int columnCount(const QModelIndex &index) const override;
+    int rowCount(const QModelIndexindex) const override;
+    int columnCount(const QModelIndexindex) const override;
 
 public slots:
     void linkTest() const;
     void completenessTest() const;
 
 private slots:
-    void on_columnsAboutToBeInserted(const QModelIndex &parent, int start, int end);
-    void on_columnsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
-    void on_columnsInserted(const QModelIndex &parent, int start, int end);
-    void on_columnsRemoved(const QModelIndex &parent, int start, int end);
+    void on_columnsAboutToBeInserted(const QModelIndexparent, int start, int end);
+    void on_columnsAboutToBeRemoved(const QModelIndexparent, int start, int end);
+    void on_columnsInserted(const QModelIndexparent, int start, int end);
+    void on_columnsRemoved(const QModelIndexparent, int start, int end);
 
-    void on_dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
-//   void on_headerDataChanged(Qt::Orientation orientation, int first, int last);
+    void on_dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
+    //   void on_headerDataChanged(Qt::Orientation orientation, int first, int last);
 
     void on_layoutAboutToBeChanged();
     void on_layoutChanged();
 
-    inline void on_modelAboutToBeReset() { beginResetModel(); endResetModel(); }
+    inline void on_modelAboutToBeReset()
+    {
+        beginResetModel();
+        endResetModel();
+    }
     // void on_modelReset();
 
-    void on_rowsAboutToBeInserted(const QModelIndex &parent, int start, int end);
-    void on_rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
-    void on_rowsInserted(const QModelIndex &parent, int start, int end);
-    void on_rowsRemoved(const QModelIndex &parent, int start, int end);
+    void on_rowsAboutToBeInserted(const QModelIndexparent, int start, int end);
+    void on_rowsAboutToBeRemoved(const QModelIndexparent, int start, int end);
+    void on_rowsInserted(const QModelIndexparent, int start, int end);
+    void on_rowsRemoved(const QModelIndexparent, int start, int end);
 
 private:
     QList<int> _childCount;
 
     class SourceItem;
-    SourceItem *_rootSourceItem{nullptr};
+    SourceItem_rootSourceItem{nullptr};
 
-    void insertSubTree(const QModelIndex &source_idx, bool emitInsert = true);
-    SourceItem *insertSubTreeHelper(SourceItem *parentItem, SourceItem *lastItem_, const QModelIndex &source_idx);
+    void insertSubTree(const QModelIndexsource_idx, bool emitInsert = true);
+    SourceItem* insertSubTreeHelper(SourceItem* parentItem, SourceItem* lastItem_, const QModelIndex& source_idx);
 
-    void removeSubTree(const QModelIndex &source_idx, bool emitRemove = true);
+    void removeSubTree(const QModelIndexsource_idx, bool emitRemove = true);
 
-    SourceItem *sourceToInternal(const QModelIndex &sourceIndex) const;
+    SourceItem* sourceToInternal(const QModelIndex& sourceIndex) const;
 
-    void checkChildCount(const QModelIndex &index, const SourceItem *item, int &pos) const;
+    void checkChildCount(const QModelIndex& index, const SourceItem* item, int& pos) const;
 
     class _RangeRect
     {
-public:
+    public:
         int left, right, top, bottom;
         SourceItem *topItem, *bottomItem;
-        bool operator<(const _RangeRect &other) const;
+        bool operator<(const _RangeRectother) const;
     };
 };
 
-
 class FlatProxyModel::SourceItem
 {
 public:
-    SourceItem(int row = 0, SourceItem *parent = nullptr);
+    SourceItem(int row = 0, SourceItemparent = nullptr);
     ~SourceItem();
 
-    inline SourceItem *parent() const { return _parent; }
-    inline SourceItem *child(int i) const { return _childs[i]; }
+    inline SourceItemparent() const { return _parent; }
+    inline SourceItemchild(int i) const { return _childs[i]; }
     inline int childCount() const { return _childs.count(); }
 
     inline int pos() const { return _pos; }
-    inline SourceItem *next() const { return _next; }
+    inline SourceItemnext() const { return _next; }
 
     int sourceRow() const;
-    SourceItem *findChild(int proxyPos) const;
+    SourceItemfindChild(int proxyPos) const;
 
 private:
-    inline void removeChild(SourceItem *item) { _childs.removeAt(_childs.indexOf(item)); }
+    inline void removeChild(SourceItemitem) { _childs.removeAt(_childs.indexOf(item)); }
     inline void setPos(int i) { _pos = i; }
-    inline void setNext(SourceItem *next) { _next = next; }
+    inline void setNext(SourceItemnext) { _next = next; }
 
-    SourceItem *_parent;
-    QList<SourceItem *> _childs;
+    SourceItem_parent;
+    QList<SourceItem*> _childs;
     int _pos{-1};
-    SourceItem *_next{nullptr};
+    SourceItem_next{nullptr};
 
     friend class FlatProxyModel;
 };