2010-07-16 11:18:30 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2010 Denis Mingulov.
|
|
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "classviewnavigationwidget.h"
|
|
|
|
|
#include "ui_classviewnavigationwidget.h"
|
|
|
|
|
#include "classviewtreeitemmodel.h"
|
|
|
|
|
#include "classviewmanager.h"
|
|
|
|
|
#include "classviewsymbollocation.h"
|
|
|
|
|
#include "classviewsymbolinformation.h"
|
|
|
|
|
#include "classviewutils.h"
|
|
|
|
|
#include "classviewconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QPointer>
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
enum { debug = false };
|
|
|
|
|
|
|
|
|
|
namespace ClassView {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
///////////////////////////////// NavigationWidgetPrivate //////////////////////////////////
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\struct NavigationWidgetPrivate
|
|
|
|
|
\brief Internal data structures / methods for NavigationWidget
|
|
|
|
|
*/
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
class NavigationWidgetPrivate
|
2010-07-16 11:18:30 +02:00
|
|
|
{
|
2011-07-06 17:40:54 +02:00
|
|
|
public:
|
2010-07-16 11:18:30 +02:00
|
|
|
NavigationWidgetPrivate() : ui(0) {}
|
|
|
|
|
|
|
|
|
|
//! Ui generated by Designer
|
|
|
|
|
Ui::NavigationWidget *ui;
|
|
|
|
|
|
|
|
|
|
//! current tree model
|
|
|
|
|
QPointer<TreeItemModel> treeModel;
|
|
|
|
|
|
|
|
|
|
//! full projects mode
|
|
|
|
|
QPointer<QToolButton> fullProjectsModeButton;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
///////////////////////////////// NavigationWidget //////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NavigationWidget::NavigationWidget(QWidget *parent) :
|
|
|
|
|
QWidget(parent),
|
2011-07-06 17:40:54 +02:00
|
|
|
d(new NavigationWidgetPrivate())
|
2010-07-16 11:18:30 +02:00
|
|
|
{
|
2011-07-06 17:40:54 +02:00
|
|
|
d->ui = new Ui::NavigationWidget;
|
|
|
|
|
d->ui->setupUi(this);
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
// tree model
|
2011-07-06 17:40:54 +02:00
|
|
|
d->treeModel = new TreeItemModel(this);
|
|
|
|
|
d->ui->treeView->setModel(d->treeModel);
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
// connect signal/slots
|
|
|
|
|
// selected item
|
2011-07-06 17:40:54 +02:00
|
|
|
connect(d->ui->treeView, SIGNAL(activated(QModelIndex)), SLOT(onItemActivated(QModelIndex)));
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
// connections to the manager
|
|
|
|
|
Manager *manager = Manager::instance();
|
|
|
|
|
|
|
|
|
|
connect(this, SIGNAL(visibilityChanged(bool)),
|
|
|
|
|
manager, SLOT(onWidgetVisibilityIsChanged(bool)));
|
|
|
|
|
|
|
|
|
|
connect(this, SIGNAL(requestGotoLocation(QString,int,int)),
|
|
|
|
|
manager, SLOT(gotoLocation(QString,int,int)));
|
|
|
|
|
|
|
|
|
|
connect(this, SIGNAL(requestGotoLocations(QList<QVariant>)),
|
|
|
|
|
manager, SLOT(gotoLocations(QList<QVariant>)));
|
|
|
|
|
|
|
|
|
|
connect(manager, SIGNAL(treeDataUpdate(QSharedPointer<QStandardItem>)),
|
|
|
|
|
this, SLOT(onDataUpdate(QSharedPointer<QStandardItem>)));
|
|
|
|
|
|
|
|
|
|
connect(this, SIGNAL(requestTreeDataUpdate()),
|
|
|
|
|
manager, SLOT(onRequestTreeDataUpdate()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NavigationWidget::~NavigationWidget()
|
|
|
|
|
{
|
2011-07-06 17:40:54 +02:00
|
|
|
delete d->fullProjectsModeButton;
|
|
|
|
|
delete d->ui;
|
|
|
|
|
delete d;
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NavigationWidget::hideEvent(QHideEvent *event)
|
|
|
|
|
{
|
|
|
|
|
emit visibilityChanged(false);
|
|
|
|
|
QWidget::hideEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NavigationWidget::showEvent(QShowEvent *event)
|
|
|
|
|
{
|
|
|
|
|
emit visibilityChanged(true);
|
|
|
|
|
|
|
|
|
|
// request to update to the current state - to be sure
|
|
|
|
|
emit requestTreeDataUpdate();
|
|
|
|
|
|
|
|
|
|
QWidget::showEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<QToolButton *> NavigationWidget::createToolButtons()
|
|
|
|
|
{
|
|
|
|
|
QList<QToolButton *> list;
|
|
|
|
|
|
|
|
|
|
// full projects mode
|
2011-07-06 17:40:54 +02:00
|
|
|
if (!d->fullProjectsModeButton) {
|
2010-07-16 11:18:30 +02:00
|
|
|
// create a button
|
2011-07-06 17:40:54 +02:00
|
|
|
d->fullProjectsModeButton = new QToolButton();
|
|
|
|
|
d->fullProjectsModeButton->setIcon(
|
2010-07-16 11:18:30 +02:00
|
|
|
QIcon(QLatin1String(":/classview/images/hierarchicalmode.png")));
|
2011-07-06 17:40:54 +02:00
|
|
|
d->fullProjectsModeButton->setCheckable(true);
|
|
|
|
|
d->fullProjectsModeButton->setToolTip(tr("Show Subprojects"));
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
// by default - not a flat mode
|
|
|
|
|
setFlatMode(false);
|
|
|
|
|
|
|
|
|
|
// connections
|
2011-07-06 17:40:54 +02:00
|
|
|
connect(d->fullProjectsModeButton, SIGNAL(toggled(bool)),
|
2010-07-16 11:18:30 +02:00
|
|
|
this, SLOT(onFullProjectsModeToggled(bool)));
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
list << d->fullProjectsModeButton;
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool NavigationWidget::flatMode() const
|
|
|
|
|
{
|
2011-07-06 17:40:54 +02:00
|
|
|
QTC_ASSERT(d->fullProjectsModeButton, return false);
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
// button is 'full projects mode' - so it has to be inverted
|
2011-07-06 17:40:54 +02:00
|
|
|
return !d->fullProjectsModeButton->isChecked();
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NavigationWidget::setFlatMode(bool flatMode)
|
|
|
|
|
{
|
2011-07-06 17:40:54 +02:00
|
|
|
QTC_ASSERT(d->fullProjectsModeButton, return);
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
// button is 'full projects mode' - so it has to be inverted
|
2011-07-06 17:40:54 +02:00
|
|
|
d->fullProjectsModeButton->setChecked(!flatMode);
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NavigationWidget::onFullProjectsModeToggled(bool state)
|
|
|
|
|
{
|
|
|
|
|
// button is 'full projects mode' - so it has to be inverted
|
|
|
|
|
Manager::instance()->setFlatMode(!state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NavigationWidget::onItemActivated(const QModelIndex &index)
|
|
|
|
|
{
|
|
|
|
|
if (!index.isValid())
|
|
|
|
|
return;
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
QList<QVariant> list = d->treeModel->data(index, Constants::SymbolLocationsRole).toList();
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
emit requestGotoLocations(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NavigationWidget::onDataUpdate(QSharedPointer<QStandardItem> result)
|
|
|
|
|
{
|
|
|
|
|
if (result.isNull())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QTime timer;
|
|
|
|
|
if (debug)
|
|
|
|
|
timer.start();
|
|
|
|
|
// update is received. root item must be updated - and received information
|
|
|
|
|
// might be just a root - if a lazy data population is enabled.
|
|
|
|
|
// so expanded items must be parsed and 'fetched'
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
fetchExpandedItems(result.data(), d->treeModel->invisibleRootItem());
|
2010-07-16 11:18:30 +02:00
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
d->treeModel->moveRootToTarget(result.data());
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
// expand top level projects
|
|
|
|
|
QModelIndex sessionIndex;
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
for (int i = 0; i < d->treeModel->rowCount(sessionIndex); ++i)
|
|
|
|
|
d->ui->treeView->expand(d->treeModel->index(i, 0, sessionIndex));
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "Class View:" << QDateTime::currentDateTime().toString()
|
|
|
|
|
<< "TreeView is updated in" << timer.elapsed() << "msecs";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NavigationWidget::fetchExpandedItems(QStandardItem *item, const QStandardItem *target) const
|
|
|
|
|
{
|
|
|
|
|
if (!item || !target)
|
|
|
|
|
return;
|
|
|
|
|
|
2011-07-06 17:40:54 +02:00
|
|
|
const QModelIndex &parent = d->treeModel->indexFromItem(target);
|
|
|
|
|
if (d->ui->treeView->isExpanded(parent))
|
2010-07-16 11:18:30 +02:00
|
|
|
Manager::instance()->fetchMore(item, true);
|
|
|
|
|
|
|
|
|
|
int itemIndex = 0;
|
|
|
|
|
int targetIndex = 0;
|
|
|
|
|
int itemRows = item->rowCount();
|
|
|
|
|
int targetRows = target->rowCount();
|
|
|
|
|
|
|
|
|
|
while (itemIndex < itemRows && targetIndex < targetRows) {
|
|
|
|
|
QStandardItem *itemChild = item->child(itemIndex);
|
|
|
|
|
const QStandardItem *targetChild = target->child(targetIndex);
|
|
|
|
|
|
|
|
|
|
const SymbolInformation &itemInf = Utils::symbolInformationFromItem(itemChild);
|
|
|
|
|
const SymbolInformation &targetInf = Utils::symbolInformationFromItem(targetChild);
|
|
|
|
|
|
|
|
|
|
if (itemInf < targetInf) {
|
|
|
|
|
++itemIndex;
|
|
|
|
|
} else if (itemInf == targetInf) {
|
|
|
|
|
fetchExpandedItems(itemChild, targetChild);
|
|
|
|
|
++itemIndex;
|
|
|
|
|
++targetIndex;
|
|
|
|
|
} else {
|
|
|
|
|
++targetIndex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClassView
|