2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 Denis Mingulov
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2010-07-16 11:18:30 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
#include "classviewtreeitemmodel.h"
|
|
|
|
|
#include "classviewconstants.h"
|
|
|
|
|
#include "classviewmanager.h"
|
|
|
|
|
#include "classviewutils.h"
|
|
|
|
|
|
|
|
|
|
#include <cplusplus/Icons.h>
|
2015-06-04 12:35:59 +02:00
|
|
|
#include <utils/dropsupport.h>
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
namespace ClassView {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2019-11-15 18:42:11 +01:00
|
|
|
/*!
|
|
|
|
|
Moves \a item to \a target (sorted).
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void moveItemToTarget(QStandardItem *item, const QStandardItem *target)
|
|
|
|
|
{
|
|
|
|
|
if (!item || !target)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
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 = Internal::symbolInformationFromItem(itemChild);
|
|
|
|
|
const SymbolInformation &targetInf = Internal::symbolInformationFromItem(targetChild);
|
|
|
|
|
|
|
|
|
|
if (itemInf < targetInf) {
|
|
|
|
|
item->removeRow(itemIndex);
|
|
|
|
|
--itemRows;
|
|
|
|
|
} else if (itemInf == targetInf) {
|
|
|
|
|
moveItemToTarget(itemChild, targetChild);
|
|
|
|
|
++itemIndex;
|
|
|
|
|
++targetIndex;
|
|
|
|
|
} else {
|
|
|
|
|
item->insertRow(itemIndex, targetChild->clone());
|
|
|
|
|
moveItemToTarget(item->child(itemIndex), targetChild);
|
|
|
|
|
++itemIndex;
|
|
|
|
|
++itemRows;
|
|
|
|
|
++targetIndex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// append
|
|
|
|
|
while (targetIndex < targetRows) {
|
|
|
|
|
item->appendRow(target->child(targetIndex)->clone());
|
|
|
|
|
moveItemToTarget(item->child(itemIndex), target->child(targetIndex));
|
|
|
|
|
++itemIndex;
|
|
|
|
|
++itemRows;
|
|
|
|
|
++targetIndex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// remove end of item
|
|
|
|
|
while (itemIndex < itemRows) {
|
|
|
|
|
item->removeRow(itemIndex);
|
|
|
|
|
--itemRows;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-16 11:18:30 +02:00
|
|
|
///////////////////////////////// TreeItemModel //////////////////////////////////
|
|
|
|
|
|
2013-05-24 17:35:14 +02:00
|
|
|
/*!
|
|
|
|
|
\class TreeItemModel
|
|
|
|
|
\brief The TreeItemModel class provides a model for the Class View tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-07-16 11:18:30 +02:00
|
|
|
TreeItemModel::TreeItemModel(QObject *parent)
|
2016-04-06 10:08:01 +02:00
|
|
|
: QStandardItemModel(parent)
|
2010-07-16 11:18:30 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-04 22:40:59 +01:00
|
|
|
TreeItemModel::~TreeItemModel() = default;
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
QVariant TreeItemModel::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
|
|
|
|
if (!index.isValid())
|
|
|
|
|
return QStandardItemModel::data(index, role);
|
|
|
|
|
|
|
|
|
|
switch (role) {
|
|
|
|
|
case Qt::DecorationRole: {
|
|
|
|
|
QVariant iconType = data(index, Constants::IconTypeRole);
|
|
|
|
|
if (iconType.isValid()) {
|
|
|
|
|
bool ok = false;
|
|
|
|
|
int type = iconType.toInt(&ok);
|
|
|
|
|
if (ok && type >= 0)
|
2018-07-25 10:00:38 +02:00
|
|
|
return ::Utils::CodeModelIcon::iconForType(static_cast<::Utils::CodeModelIcon::Type>(type));
|
2010-07-16 11:18:30 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
|
case Qt::DisplayRole: {
|
2019-11-15 18:42:11 +01:00
|
|
|
const SymbolInformation &inf = Internal::symbolInformationFromItem(itemFromIndex(index));
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
if (inf.name() == inf.type() || inf.iconType() < 0)
|
|
|
|
|
return inf.name();
|
|
|
|
|
|
|
|
|
|
QString name(inf.name());
|
|
|
|
|
|
|
|
|
|
if (!inf.type().isEmpty())
|
2014-08-29 14:00:18 +02:00
|
|
|
name += QLatin1Char(' ') + inf.type();
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QStandardItemModel::data(index, role);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TreeItemModel::canFetchMore(const QModelIndex &parent) const
|
|
|
|
|
{
|
|
|
|
|
if (!parent.isValid())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return Manager::instance()->canFetchMore(itemFromIndex(parent));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TreeItemModel::fetchMore(const QModelIndex &parent)
|
|
|
|
|
{
|
|
|
|
|
if (!parent.isValid())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
return Manager::instance()->fetchMore(itemFromIndex(parent));
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-04 13:46:12 +01:00
|
|
|
bool TreeItemModel::hasChildren(const QModelIndex &parent) const
|
|
|
|
|
{
|
|
|
|
|
if (!parent.isValid())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return Manager::instance()->hasChildren(itemFromIndex(parent));
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-17 10:22:26 +02:00
|
|
|
Qt::DropActions TreeItemModel::supportedDragActions() const
|
|
|
|
|
{
|
|
|
|
|
return Qt::MoveAction | Qt::CopyAction;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList TreeItemModel::mimeTypes() const
|
|
|
|
|
{
|
2015-06-04 12:35:59 +02:00
|
|
|
return ::Utils::DropSupport::mimeTypesForFilePaths();
|
2014-10-17 10:22:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMimeData *TreeItemModel::mimeData(const QModelIndexList &indexes) const
|
|
|
|
|
{
|
2015-06-04 12:35:59 +02:00
|
|
|
auto mimeData = new ::Utils::DropMimeData;
|
2014-10-17 10:22:26 +02:00
|
|
|
mimeData->setOverrideFileDropAction(Qt::CopyAction);
|
|
|
|
|
foreach (const QModelIndex &index, indexes) {
|
2019-11-15 18:42:11 +01:00
|
|
|
const QSet<SymbolLocation> locations = Internal::roleToLocations(
|
2014-10-17 10:22:26 +02:00
|
|
|
data(index, Constants::SymbolLocationsRole).toList());
|
|
|
|
|
if (locations.isEmpty())
|
|
|
|
|
continue;
|
|
|
|
|
const SymbolLocation loc = *locations.constBegin();
|
|
|
|
|
mimeData->addFile(loc.fileName(), loc.line(), loc.column());
|
|
|
|
|
}
|
|
|
|
|
if (mimeData->files().isEmpty()) {
|
|
|
|
|
delete mimeData;
|
2018-11-04 22:40:59 +01:00
|
|
|
return nullptr;
|
2014-10-17 10:22:26 +02:00
|
|
|
}
|
|
|
|
|
return mimeData;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-24 17:35:14 +02:00
|
|
|
/*!
|
|
|
|
|
Moves the root item to the \a target item.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-07-16 11:18:30 +02:00
|
|
|
void TreeItemModel::moveRootToTarget(const QStandardItem *target)
|
|
|
|
|
{
|
|
|
|
|
emit layoutAboutToBeChanged();
|
|
|
|
|
|
2019-11-15 18:42:11 +01:00
|
|
|
moveItemToTarget(invisibleRootItem(), target);
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
emit layoutChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClassView
|