2008-12-02 12:01:29 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
|
|
|
|
** Non-Open Source Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Licensees may use this file in accordance with the Qt Beta Version
|
|
|
|
|
** License Agreement, Agreement version 2.2 provided with the Software or,
|
|
|
|
|
** alternatively, in accordance with the terms contained in a written
|
2008-12-02 14:17:16 +01:00
|
|
|
** agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
|
|
|
** Public License versions 2.0 or 3.0 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the packaging
|
|
|
|
|
** of this file. Please review the following information to ensure GNU
|
|
|
|
|
** General Public Licensing requirements will be met:
|
|
|
|
|
**
|
|
|
|
|
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
|
|
|
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2008-12-02 14:17:16 +01:00
|
|
|
** rights. These rights are described in the Nokia Qt GPL Exception
|
2008-12-16 17:20:00 +01:00
|
|
|
** version 1.3, included in the file GPL_EXCEPTION.txt in this package.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
|
|
|
|
***************************************************************************/
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include "OverviewModel.h"
|
|
|
|
|
#include "Overview.h"
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <Scope.h>
|
|
|
|
|
#include <Semantic.h>
|
|
|
|
|
#include <Literals.h>
|
|
|
|
|
#include <Symbols.h>
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QFile>
|
|
|
|
|
#include <QtDebug>
|
|
|
|
|
|
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
|
|
|
|
|
OverviewModel::OverviewModel(QObject *parent)
|
|
|
|
|
: QAbstractItemModel(parent)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
OverviewModel::~OverviewModel()
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
bool OverviewModel::hasDocument() const
|
2008-12-02 14:09:21 +01:00
|
|
|
{
|
|
|
|
|
return _cppDocument;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
Document::Ptr OverviewModel::document() const
|
2008-12-02 14:09:21 +01:00
|
|
|
{
|
|
|
|
|
return _cppDocument;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
unsigned OverviewModel::globalSymbolCount() const
|
|
|
|
|
{
|
|
|
|
|
unsigned count = 0;
|
|
|
|
|
if (_cppDocument)
|
|
|
|
|
count += _cppDocument->globalSymbolCount();
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Symbol *OverviewModel::globalSymbolAt(unsigned index) const
|
|
|
|
|
{ return _cppDocument->globalSymbolAt(index); }
|
|
|
|
|
|
|
|
|
|
QModelIndex OverviewModel::index(int row, int column, const QModelIndex &parent) const
|
|
|
|
|
{
|
2008-12-08 17:47:54 +01:00
|
|
|
if (!parent.isValid()) {
|
|
|
|
|
if (row == 0) // account for no symbol item
|
|
|
|
|
return createIndex(row, column);
|
|
|
|
|
Symbol *symbol = globalSymbolAt(row-1); // account for no symbol item
|
2008-12-02 12:01:29 +01:00
|
|
|
return createIndex(row, column, symbol);
|
|
|
|
|
} else {
|
|
|
|
|
Symbol *parentSymbol = static_cast<Symbol *>(parent.internalPointer());
|
2008-12-10 15:43:17 +01:00
|
|
|
Q_ASSERT(parentSymbol);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
ScopedSymbol *scopedSymbol = parentSymbol->asScopedSymbol();
|
2008-12-10 15:43:17 +01:00
|
|
|
Q_ASSERT(scopedSymbol);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
Scope *scope = scopedSymbol->members();
|
2008-12-10 15:43:17 +01:00
|
|
|
Q_ASSERT(scope);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
return createIndex(row, 0, scope->symbolAt(row));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QModelIndex OverviewModel::parent(const QModelIndex &child) const
|
|
|
|
|
{
|
|
|
|
|
Symbol *symbol = static_cast<Symbol *>(child.internalPointer());
|
2008-12-08 17:47:54 +01:00
|
|
|
if (!symbol) // account for no symbol item
|
|
|
|
|
return QModelIndex();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (Scope *scope = symbol->scope()) {
|
|
|
|
|
Symbol *parentSymbol = scope->owner();
|
2008-12-08 17:47:54 +01:00
|
|
|
if (parentSymbol && parentSymbol->scope()) {
|
|
|
|
|
QModelIndex index;
|
|
|
|
|
if (parentSymbol->scope() && parentSymbol->scope()->owner()
|
|
|
|
|
&& parentSymbol->scope()->owner()->scope()) // the parent doesn't have a parent
|
|
|
|
|
index = createIndex(parentSymbol->index(), 0, parentSymbol);
|
|
|
|
|
else //+1 to account for no symbol item
|
|
|
|
|
index = createIndex(parentSymbol->index() + 1, 0, parentSymbol);
|
|
|
|
|
return index;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QModelIndex();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int OverviewModel::rowCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
|
|
|
|
if (hasDocument()) {
|
2008-12-08 17:47:54 +01:00
|
|
|
if (!parent.isValid()) {
|
|
|
|
|
return globalSymbolCount()+1; // account for no symbol item
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
2008-12-08 17:47:54 +01:00
|
|
|
if (!parent.parent().isValid() && parent.row() == 0) // account for no symbol item
|
|
|
|
|
return 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
Symbol *parentSymbol = static_cast<Symbol *>(parent.internalPointer());
|
2008-12-10 15:43:17 +01:00
|
|
|
Q_ASSERT(parentSymbol);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (ScopedSymbol *scopedSymbol = parentSymbol->asScopedSymbol()) {
|
2008-12-08 17:47:54 +01:00
|
|
|
if (!scopedSymbol->isFunction()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
Scope *parentScope = scopedSymbol->members();
|
2008-12-10 15:43:17 +01:00
|
|
|
Q_ASSERT(parentScope);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
return parentScope->symbolCount();
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-12-08 17:47:54 +01:00
|
|
|
return 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2008-12-08 17:47:54 +01:00
|
|
|
if (!parent.isValid())
|
|
|
|
|
return 1; // account for no symbol item
|
2008-12-02 12:01:29 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int OverviewModel::columnCount(const QModelIndex &) const
|
2008-12-02 14:09:21 +01:00
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QVariant OverviewModel::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
2008-12-08 17:47:54 +01:00
|
|
|
// account for no symbol item
|
|
|
|
|
if (!index.parent().isValid() && index.row() == 0) {
|
|
|
|
|
switch (role) {
|
|
|
|
|
case Qt::DisplayRole:
|
|
|
|
|
if (rowCount() > 1)
|
|
|
|
|
return tr("<Select Symbol>");
|
|
|
|
|
else
|
|
|
|
|
return tr("<No Symbols>");
|
|
|
|
|
default:
|
|
|
|
|
return QVariant();
|
|
|
|
|
} //switch
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
switch (role) {
|
|
|
|
|
case Qt::DisplayRole: {
|
|
|
|
|
Symbol *symbol = static_cast<Symbol *>(index.internalPointer());
|
|
|
|
|
QString name = _overview.prettyName(symbol->name());
|
|
|
|
|
if (name.isEmpty())
|
|
|
|
|
name = QLatin1String("anonymous");
|
|
|
|
|
if (! symbol->isScopedSymbol() || symbol->isFunction()) {
|
|
|
|
|
QString type = _overview.prettyType(symbol->type());
|
|
|
|
|
if (! type.isEmpty()) {
|
|
|
|
|
if (! symbol->type()->isFunction())
|
|
|
|
|
name += QLatin1String(": ");
|
|
|
|
|
name += type;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case Qt::EditRole: {
|
|
|
|
|
Symbol *symbol = static_cast<Symbol *>(index.internalPointer());
|
|
|
|
|
QString name = _overview.prettyName(symbol->name());
|
|
|
|
|
if (name.isEmpty())
|
|
|
|
|
name = QLatin1String("anonymous");
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case Qt::DecorationRole: {
|
|
|
|
|
Symbol *symbol = static_cast<Symbol *>(index.internalPointer());
|
|
|
|
|
return _icons.iconForSymbol(symbol);
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
|
|
case FileNameRole: {
|
|
|
|
|
Symbol *symbol = static_cast<Symbol *>(index.internalPointer());
|
|
|
|
|
return QString::fromUtf8(symbol->fileName(), symbol->fileNameLength());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LineNumberRole: {
|
|
|
|
|
Symbol *symbol = static_cast<Symbol *>(index.internalPointer());
|
|
|
|
|
return symbol->line();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return QVariant();
|
|
|
|
|
} // switch
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Symbol *OverviewModel::symbolFromIndex(const QModelIndex &index) const
|
2008-12-02 14:09:21 +01:00
|
|
|
{
|
|
|
|
|
return static_cast<Symbol *>(index.internalPointer());
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
void OverviewModel::rebuild(Document::Ptr doc)
|
|
|
|
|
{
|
|
|
|
|
_cppDocument = doc;
|
|
|
|
|
reset();
|
|
|
|
|
}
|