2014-10-14 17:45:32 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2014-10-14 17:45:32 +02:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-15 14:46:23 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2014-10-14 17:45:32 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-15 14:46:23 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2014-10-14 17:45:32 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2014-10-14 17:45:32 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef UTILS_TREEMODEL_H
|
|
|
|
|
#define UTILS_TREEMODEL_H
|
|
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
2015-01-08 13:27:30 +01:00
|
|
|
|
2015-01-09 10:32:17 +01:00
|
|
|
#include "algorithm.h"
|
2015-01-08 13:27:30 +01:00
|
|
|
#include "qtcassert.h"
|
2014-10-14 17:45:32 +02:00
|
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
|
|
2015-01-09 10:32:17 +01:00
|
|
|
#include <functional>
|
|
|
|
|
#include <iterator>
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
namespace Utils {
|
|
|
|
|
|
2015-01-29 09:58:23 +01:00
|
|
|
class TreeItem;
|
2015-01-14 09:09:15 +01:00
|
|
|
class TreeModel;
|
|
|
|
|
|
2015-01-29 09:58:23 +01:00
|
|
|
class QTCREATOR_UTILS_EXPORT TreeItemVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2015-02-06 21:00:56 +01:00
|
|
|
TreeItemVisitor() : m_level(0) {}
|
2015-01-29 09:58:23 +01:00
|
|
|
virtual ~TreeItemVisitor() {}
|
|
|
|
|
|
2015-02-06 21:00:56 +01:00
|
|
|
virtual bool preVisit(TreeItem *) { return true; }
|
|
|
|
|
virtual void visit(TreeItem *) {}
|
|
|
|
|
virtual void postVisit(TreeItem *) {}
|
|
|
|
|
|
|
|
|
|
int level() const { return m_level; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend class TreeItem;
|
|
|
|
|
int m_level;
|
2015-01-29 09:58:23 +01:00
|
|
|
};
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT TreeItem
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TreeItem();
|
2015-01-21 15:44:04 +01:00
|
|
|
explicit TreeItem(const QStringList &displays, int flags = Qt::ItemIsEnabled);
|
2014-10-14 17:45:32 +02:00
|
|
|
virtual ~TreeItem();
|
|
|
|
|
|
|
|
|
|
virtual TreeItem *parent() const { return m_parent; }
|
|
|
|
|
virtual TreeItem *child(int pos) const;
|
|
|
|
|
virtual bool isLazy() const;
|
|
|
|
|
virtual int rowCount() const;
|
|
|
|
|
virtual void populate();
|
|
|
|
|
|
|
|
|
|
virtual QVariant data(int column, int role) const;
|
2015-01-13 13:46:15 +01:00
|
|
|
virtual bool setData(int column, const QVariant &data, int role);
|
2014-10-14 17:45:32 +02:00
|
|
|
virtual Qt::ItemFlags flags(int column) const;
|
|
|
|
|
|
2015-01-29 09:58:23 +01:00
|
|
|
virtual bool hasChildren() const;
|
2015-01-21 15:50:54 +01:00
|
|
|
virtual bool canFetchMore() const;
|
|
|
|
|
virtual void fetchMore() {}
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
void prependChild(TreeItem *item);
|
|
|
|
|
void appendChild(TreeItem *item);
|
2015-01-21 15:50:54 +01:00
|
|
|
void insertChild(int pos, TreeItem *item);
|
2015-01-14 09:09:15 +01:00
|
|
|
void removeChildren();
|
|
|
|
|
void update();
|
2015-03-11 16:24:01 +01:00
|
|
|
void updateColumn(int column);
|
2015-01-14 09:09:15 +01:00
|
|
|
void expand();
|
|
|
|
|
TreeItem *firstChild() const;
|
2014-12-19 08:44:20 +01:00
|
|
|
TreeItem *lastChild() const;
|
|
|
|
|
int level() const;
|
2014-10-14 17:45:32 +02:00
|
|
|
|
|
|
|
|
void setLazy(bool on);
|
|
|
|
|
void setPopulated(bool on);
|
|
|
|
|
void setFlags(Qt::ItemFlags flags);
|
2015-01-06 17:48:39 +01:00
|
|
|
QVector<TreeItem *> children() const { return m_children; }
|
2015-01-14 09:09:15 +01:00
|
|
|
QModelIndex index() const;
|
|
|
|
|
|
|
|
|
|
TreeModel *model() const { return m_model; }
|
|
|
|
|
void setModel(TreeModel *model);
|
2014-10-14 17:45:32 +02:00
|
|
|
|
2015-01-29 09:58:23 +01:00
|
|
|
void walkTree(TreeItemVisitor *visitor);
|
|
|
|
|
void walkTree(std::function<void(TreeItem *)> f);
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
private:
|
|
|
|
|
TreeItem(const TreeItem &) Q_DECL_EQ_DELETE;
|
|
|
|
|
void operator=(const TreeItem &) Q_DECL_EQ_DELETE;
|
|
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
|
void ensurePopulated() const;
|
2015-01-16 15:24:53 +01:00
|
|
|
void propagateModel(TreeModel *m);
|
2014-10-14 17:45:32 +02:00
|
|
|
|
|
|
|
|
TreeItem *m_parent; // Not owned.
|
2015-01-14 09:09:15 +01:00
|
|
|
TreeModel *m_model; // Not owned.
|
2014-10-14 17:45:32 +02:00
|
|
|
QVector<TreeItem *> m_children; // Owned.
|
2014-12-19 08:44:20 +01:00
|
|
|
QStringList *m_displays;
|
2014-10-14 17:45:32 +02:00
|
|
|
bool m_lazy;
|
|
|
|
|
mutable bool m_populated;
|
|
|
|
|
Qt::ItemFlags m_flags;
|
2014-12-19 08:44:20 +01:00
|
|
|
|
|
|
|
|
friend class TreeModel;
|
2014-10-14 17:45:32 +02:00
|
|
|
};
|
|
|
|
|
|
2015-01-09 10:32:17 +01:00
|
|
|
class QTCREATOR_UTILS_EXPORT UntypedTreeLevelItems
|
|
|
|
|
{
|
|
|
|
|
public:
|
2015-01-08 13:27:30 +01:00
|
|
|
enum { MaxSearchDepth = 12 }; // FIXME.
|
2015-01-09 10:32:17 +01:00
|
|
|
explicit UntypedTreeLevelItems(TreeItem *item, int level = 1);
|
|
|
|
|
|
|
|
|
|
typedef TreeItem *value_type;
|
|
|
|
|
|
|
|
|
|
class const_iterator
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
typedef std::forward_iterator_tag iterator_category;
|
|
|
|
|
typedef TreeItem *value_type;
|
|
|
|
|
typedef std::ptrdiff_t difference_type;
|
|
|
|
|
typedef const value_type *pointer;
|
|
|
|
|
typedef const value_type &reference;
|
|
|
|
|
|
|
|
|
|
const_iterator(TreeItem *base, int level);
|
|
|
|
|
|
|
|
|
|
TreeItem *operator*() { return m_item[m_depth]; }
|
|
|
|
|
|
2015-01-08 13:27:30 +01:00
|
|
|
void operator++()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(m_depth == m_level, return);
|
|
|
|
|
|
|
|
|
|
int pos = ++m_pos[m_depth];
|
|
|
|
|
if (pos < m_size[m_depth])
|
|
|
|
|
m_item[m_depth] = m_item[m_depth - 1]->child(pos);
|
|
|
|
|
else
|
|
|
|
|
goUpNextDown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator==(const const_iterator &other) const
|
|
|
|
|
{
|
|
|
|
|
if (m_depth != other.m_depth)
|
|
|
|
|
return false;
|
|
|
|
|
for (int i = 0; i <= m_depth; ++i)
|
|
|
|
|
if (m_item[i] != other.m_item[i])
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator!=(const const_iterator &other) const
|
|
|
|
|
{
|
|
|
|
|
return !operator==(other);
|
|
|
|
|
}
|
2015-01-09 10:32:17 +01:00
|
|
|
|
|
|
|
|
private:
|
2015-01-08 13:27:30 +01:00
|
|
|
// Result is either an item of the target level, or 'end'.
|
|
|
|
|
void goDown()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(m_depth != -1, return);
|
|
|
|
|
QTC_ASSERT(m_depth < m_level, return);
|
|
|
|
|
do {
|
|
|
|
|
TreeItem *curr = m_item[m_depth];
|
2015-01-16 12:34:55 +01:00
|
|
|
++m_depth;
|
2015-01-08 13:27:30 +01:00
|
|
|
int size = curr->rowCount();
|
|
|
|
|
if (size == 0) {
|
|
|
|
|
// This is a dead end not reaching to the desired level.
|
|
|
|
|
goUpNextDown();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
m_size[m_depth] = size;
|
|
|
|
|
m_pos[m_depth] = 0;
|
|
|
|
|
m_item[m_depth] = curr->child(0);
|
|
|
|
|
} while (m_depth < m_level);
|
|
|
|
|
// Did not reach the required level? Set to end().
|
|
|
|
|
if (m_depth != m_level)
|
|
|
|
|
m_depth = -1;
|
|
|
|
|
}
|
|
|
|
|
void goUpNextDown()
|
|
|
|
|
{
|
|
|
|
|
// Go up until we can move sidewards.
|
|
|
|
|
do {
|
|
|
|
|
--m_depth;
|
|
|
|
|
if (m_depth < 0)
|
|
|
|
|
return; // Solid end.
|
|
|
|
|
} while (++m_pos[m_depth] >= m_size[m_depth]);
|
|
|
|
|
m_item[m_depth] = m_item[m_depth - 1]->child(m_pos[m_depth]);
|
|
|
|
|
goDown();
|
|
|
|
|
}
|
2015-01-09 10:32:17 +01:00
|
|
|
|
|
|
|
|
int m_level;
|
|
|
|
|
int m_depth;
|
2015-01-08 13:27:30 +01:00
|
|
|
TreeItem *m_item[MaxSearchDepth];
|
|
|
|
|
int m_pos[MaxSearchDepth];
|
|
|
|
|
int m_size[MaxSearchDepth];
|
2015-01-09 10:32:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const_iterator begin() const;
|
|
|
|
|
const_iterator end() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TreeItem *m_item;
|
|
|
|
|
int m_level;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <class T>
|
2015-01-08 13:27:30 +01:00
|
|
|
class TreeLevelItems
|
2015-01-09 10:32:17 +01:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
typedef T value_type;
|
|
|
|
|
|
|
|
|
|
explicit TreeLevelItems(const UntypedTreeLevelItems &items) : m_items(items) {}
|
|
|
|
|
|
|
|
|
|
struct const_iterator : public UntypedTreeLevelItems::const_iterator
|
|
|
|
|
{
|
|
|
|
|
typedef std::forward_iterator_tag iterator_category;
|
|
|
|
|
typedef T value_type;
|
|
|
|
|
typedef std::ptrdiff_t difference_type;
|
|
|
|
|
typedef const value_type *pointer;
|
|
|
|
|
typedef const value_type &reference;
|
|
|
|
|
|
|
|
|
|
const_iterator(UntypedTreeLevelItems::const_iterator it) : UntypedTreeLevelItems::const_iterator(it) {}
|
|
|
|
|
T operator*() { return static_cast<T>(UntypedTreeLevelItems::const_iterator::operator*()); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const_iterator begin() const { return const_iterator(m_items.begin()); }
|
|
|
|
|
const_iterator end() const { return const_iterator(m_items.end()); }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
UntypedTreeLevelItems m_items;
|
|
|
|
|
};
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT TreeModel : public QAbstractItemModel
|
|
|
|
|
{
|
2015-01-14 09:09:15 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
public:
|
|
|
|
|
explicit TreeModel(QObject *parent = 0);
|
2015-01-16 15:24:53 +01:00
|
|
|
explicit TreeModel(TreeItem *root, QObject *parent = 0);
|
2014-10-14 17:45:32 +02:00
|
|
|
virtual ~TreeModel();
|
|
|
|
|
|
|
|
|
|
int rowCount(const QModelIndex &idx = QModelIndex()) const;
|
|
|
|
|
int columnCount(const QModelIndex &idx) const;
|
|
|
|
|
|
2015-01-13 13:46:15 +01:00
|
|
|
bool setData(const QModelIndex &idx, const QVariant &data, int role);
|
2014-10-14 17:45:32 +02:00
|
|
|
QVariant data(const QModelIndex &idx, int role) const;
|
|
|
|
|
QModelIndex index(int, int, const QModelIndex &idx) const;
|
|
|
|
|
QModelIndex parent(const QModelIndex &idx) const;
|
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &idx) const;
|
2014-12-17 13:15:08 +01:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
2015-01-29 09:58:23 +01:00
|
|
|
bool hasChildren(const QModelIndex &idx) const;
|
2014-10-14 17:45:32 +02:00
|
|
|
|
2015-01-21 15:50:54 +01:00
|
|
|
bool canFetchMore(const QModelIndex &idx) const;
|
|
|
|
|
void fetchMore(const QModelIndex &idx);
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
TreeItem *rootItem() const;
|
2015-01-29 09:58:23 +01:00
|
|
|
void setRootItem(TreeItem *item);
|
2014-10-14 17:45:32 +02:00
|
|
|
TreeItem *itemFromIndex(const QModelIndex &) const;
|
|
|
|
|
QModelIndex indexFromItem(const TreeItem *needle) const;
|
2015-01-14 09:09:15 +01:00
|
|
|
void removeItems();
|
2014-12-19 08:44:20 +01:00
|
|
|
|
2015-01-16 15:24:53 +01:00
|
|
|
void setHeader(const QStringList &displays);
|
|
|
|
|
void setColumnCount(int columnCount);
|
|
|
|
|
|
2015-01-09 10:32:17 +01:00
|
|
|
UntypedTreeLevelItems untypedLevelItems(int level = 0, TreeItem *start = 0) const;
|
|
|
|
|
UntypedTreeLevelItems untypedLevelItems(TreeItem *start) const;
|
|
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
|
TreeLevelItems<T> treeLevelItems(int level, TreeItem *start = 0) const
|
|
|
|
|
{
|
|
|
|
|
return TreeLevelItems<T>(untypedLevelItems(level, start));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
|
TreeLevelItems<T> treeLevelItems(TreeItem *start) const
|
|
|
|
|
{
|
|
|
|
|
return TreeLevelItems<T>(untypedLevelItems(start));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
|
T findItemAtLevel(int level, std::function<bool(T)> f, TreeItem *start = 0) const
|
|
|
|
|
{
|
|
|
|
|
return Utils::findOrDefault(treeLevelItems<T>(level, start), f);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-14 09:09:15 +01:00
|
|
|
void removeItem(TreeItem *item); // item is not destroyed.
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void requestExpansion(QModelIndex);
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
private:
|
2015-01-14 09:09:15 +01:00
|
|
|
friend class TreeItem;
|
|
|
|
|
|
2014-10-14 17:45:32 +02:00
|
|
|
TreeItem *m_root; // Owned.
|
2015-01-16 15:24:53 +01:00
|
|
|
QStringList m_header;
|
|
|
|
|
int m_columnCount;
|
2014-10-14 17:45:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|
|
|
|
|
|
|
|
|
|
#endif // UTILS_TREEMODEL_H
|