mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
206 lines
4.9 KiB
C++
206 lines
4.9 KiB
C++
/*
|
|
* This file is part of KDevelop
|
|
*
|
|
* Copyright 2008 Vladimir Prus <ghost@cs.msu.su>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "treemodel.h"
|
|
|
|
//#include <QtGui>
|
|
|
|
#include <iostream>
|
|
|
|
#include "treeitem.h"
|
|
|
|
#include "kdebug.h"
|
|
|
|
using namespace KDevelop;
|
|
|
|
TreeModel::TreeModel(const QVector<QString>& headers,
|
|
QObject *parent)
|
|
: QAbstractItemModel(parent), headers_(headers), root_(NULL)
|
|
{
|
|
}
|
|
|
|
void TreeModel::setRootItem(TreeItem *item)
|
|
{
|
|
root_ = item;
|
|
root_->fetchMoreChildren();
|
|
}
|
|
|
|
TreeModel::~TreeModel()
|
|
{
|
|
delete root_;
|
|
}
|
|
|
|
int TreeModel::columnCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent);
|
|
return headers_.size();
|
|
}
|
|
|
|
QVariant TreeModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
if (!index.isValid())
|
|
return QVariant();
|
|
|
|
TreeItem *item = static_cast<TreeItem*>(index.internalPointer());
|
|
return item->data(index.column(), role);
|
|
}
|
|
|
|
Qt::ItemFlags TreeModel::flags(const QModelIndex &index) const
|
|
{
|
|
if (!index.isValid())
|
|
return 0;
|
|
|
|
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
|
}
|
|
|
|
QVariant TreeModel::headerData(int section, Qt::Orientation orientation,
|
|
int role) const
|
|
{
|
|
if (orientation == Qt::Horizontal && role == Qt::DisplayRole)
|
|
return headers_[section];
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
QModelIndex TreeModel::index(int row, int column, const QModelIndex &parent)
|
|
const
|
|
{
|
|
if (!hasIndex(row, column, parent))
|
|
return QModelIndex();
|
|
|
|
TreeItem *parentItem;
|
|
|
|
if (!parent.isValid())
|
|
parentItem = root_;
|
|
else
|
|
parentItem = static_cast<TreeItem*>(parent.internalPointer());
|
|
|
|
TreeItem *childItem = parentItem->child(row);
|
|
if (childItem)
|
|
return createIndex(row, column, childItem);
|
|
else
|
|
return createIndex(row, column, 0);
|
|
}
|
|
|
|
QModelIndex TreeModel::parent(const QModelIndex &index) const
|
|
{
|
|
if (!index.isValid())
|
|
return QModelIndex();
|
|
|
|
TreeItem *childItem = static_cast<TreeItem*>(index.internalPointer());
|
|
TreeItem *parentItem = childItem->parent();
|
|
|
|
if (parentItem == root_)
|
|
return QModelIndex();
|
|
|
|
return createIndex(parentItem->row(), 0, parentItem);
|
|
}
|
|
|
|
int TreeModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
TreeItem *parentItem;
|
|
if (parent.column() > 0)
|
|
return 0;
|
|
|
|
if (!parent.isValid())
|
|
parentItem = root_;
|
|
else
|
|
parentItem = static_cast<TreeItem*>(parent.internalPointer());
|
|
|
|
if(parentItem)
|
|
return parentItem->childCount();
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
TreeItem* TreeModel::itemForIndex(const QModelIndex& index) const
|
|
{
|
|
if (!index.isValid())
|
|
return root_;
|
|
else
|
|
return static_cast<TreeItem*>(index.internalPointer());
|
|
}
|
|
|
|
QModelIndex TreeModel::indexForItem(TreeItem *item, int column) const
|
|
{
|
|
if (item->parent() == 0)
|
|
return QModelIndex();
|
|
|
|
if (TreeItem* parent = item->parent())
|
|
{
|
|
/* FIXME: we might store row directly in item. */
|
|
int row = parent->childItems.indexOf(item);
|
|
Q_ASSERT(row != -1);
|
|
|
|
return createIndex(row, column, item);
|
|
}
|
|
else
|
|
{
|
|
return QModelIndex();
|
|
}
|
|
}
|
|
|
|
void TreeModel::expanded(const QModelIndex &index)
|
|
{
|
|
TreeItem* item = itemForIndex(index);
|
|
QObject::connect(item, SIGNAL(allChildrenFetched()), this, SIGNAL(itemChildrenReady()));
|
|
if (item->hasMore() && item->childCount() == 1)
|
|
item->fetchMoreChildren();
|
|
else
|
|
emit itemChildrenReady();
|
|
item->setExpanded(true);
|
|
}
|
|
|
|
void TreeModel::collapsed(const QModelIndex &index)
|
|
{
|
|
TreeItem* item = itemForIndex(index);
|
|
item->setExpanded(false);
|
|
}
|
|
|
|
void TreeModel::clicked(const QModelIndex &index)
|
|
{
|
|
TreeItem* item = itemForIndex(index);
|
|
item->clicked();
|
|
}
|
|
|
|
bool TreeModel::setData(const QModelIndex& index, const QVariant& value,
|
|
int role)
|
|
{
|
|
/* FIXME: CheckStateRole is dirty. Should we pass the role to
|
|
the item? */
|
|
if (index.isValid()
|
|
&& (role == Qt::EditRole || role == Qt::CheckStateRole))
|
|
{
|
|
|
|
TreeItem *item = static_cast<TreeItem*>(index.internalPointer());
|
|
item->setColumn(index.column(), value);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
KDevelop::TreeItem* KDevelop::TreeModel::root() const
|
|
{
|
|
return root_;
|
|
}
|
|
|
|
|
|
#include "moc_treemodel.cpp"
|