forked from qt-creator/qt-creator
Conflicts: src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in src/plugins/debugger/qtmessageloghandler.cpp src/plugins/debugger/qtmessagelogwindow.cpp src/plugins/madde/maemodeployconfigurationwidget.cpp src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp src/plugins/qmldesigner/designercore/include/widgetqueryview.h src/plugins/qmldesigner/designercore/metainfo/metainfoparser.cpp src/plugins/qmldesigner/designercore/model/modelnodecontextmenu.cpp src/plugins/qmldesigner/designercore/model/modelnodecontextmenu.h src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp src/plugins/qnx/bardescriptormagicmatcher.h src/plugins/qt4projectmanager/profilekeywords.cpp src/plugins/remotelinux/deployablefilesperprofile.cpp src/plugins/remotelinux/deployablefilesperprofile.h src/plugins/remotelinux/deploymentinfo.cpp src/plugins/remotelinux/deploymentsettingsassistant.cpp src/plugins/remotelinux/profilesupdatedialog.cpp tests/auto/icheckbuild/ichecklib.cpp tests/auto/icheckbuild/parsemanager.cpp tests/auto/icheckbuild/parsemanager.h Change-Id: Ie465a578446a089e1c502d1cb1096e84ca058104
187 lines
6.3 KiB
C++
187 lines
6.3 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** 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
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, 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.
|
|
**
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "runconfigurationmodel.h"
|
|
#include "target.h"
|
|
#include "runconfiguration.h"
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
/*!
|
|
\class ProjectExplorer::RunConfigurationModel
|
|
|
|
\brief A model to represent the run configurations of a target.
|
|
|
|
To be used in for the drop down of comboboxes.
|
|
Does automatically adjust itself to added and removed RunConfigurations
|
|
*/
|
|
|
|
class RunConfigurationComparer
|
|
{
|
|
public:
|
|
bool operator()(RunConfiguration *a, RunConfiguration *b)
|
|
{
|
|
return a->displayName() < b->displayName();
|
|
}
|
|
};
|
|
|
|
RunConfigurationModel::RunConfigurationModel(Target *target, QObject *parent)
|
|
: QAbstractListModel(parent),
|
|
m_target(target)
|
|
{
|
|
m_runConfigurations = m_target->runConfigurations();
|
|
qSort(m_runConfigurations.begin(), m_runConfigurations.end(), RunConfigurationComparer());
|
|
|
|
connect(target, SIGNAL(addedRunConfiguration(ProjectExplorer::RunConfiguration*)),
|
|
this, SLOT(addedRunConfiguration(ProjectExplorer::RunConfiguration*)));
|
|
connect(target, SIGNAL(removedRunConfiguration(ProjectExplorer::RunConfiguration*)),
|
|
this, SLOT(removedRunConfiguration(ProjectExplorer::RunConfiguration*)));
|
|
|
|
foreach (RunConfiguration *rc, m_runConfigurations)
|
|
connect(rc, SIGNAL(displayNameChanged()),
|
|
this, SLOT(displayNameChanged()));
|
|
}
|
|
|
|
int RunConfigurationModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
return parent.isValid() ? 0 : m_runConfigurations.size();
|
|
}
|
|
|
|
int RunConfigurationModel::columnCount(const QModelIndex &parent) const
|
|
{
|
|
return parent.isValid() ? 0 : 1;
|
|
}
|
|
|
|
void RunConfigurationModel::displayNameChanged()
|
|
{
|
|
RunConfiguration *rc = qobject_cast<RunConfiguration *>(sender());
|
|
if (!rc)
|
|
return;
|
|
|
|
RunConfigurationComparer compare;
|
|
// Find the old position
|
|
int oldPos = m_runConfigurations.indexOf(rc);
|
|
|
|
if (oldPos >= 1 && compare(m_runConfigurations.at(oldPos), m_runConfigurations.at(oldPos - 1))) {
|
|
// We need to move up
|
|
int newPos = oldPos - 1;
|
|
while (newPos >= 0 && compare(m_runConfigurations.at(oldPos), m_runConfigurations.at(newPos))) {
|
|
--newPos;
|
|
}
|
|
++newPos;
|
|
|
|
beginMoveRows(QModelIndex(), oldPos, oldPos, QModelIndex(), newPos);
|
|
m_runConfigurations.insert(newPos, rc);
|
|
m_runConfigurations.removeAt(oldPos + 1);
|
|
endMoveRows();
|
|
// Not only did we move, we also changed...
|
|
emit dataChanged(index(newPos, 0), index(newPos,0));
|
|
} else if (oldPos < m_runConfigurations.size() - 1
|
|
&& compare(m_runConfigurations.at(oldPos + 1), m_runConfigurations.at(oldPos))) {
|
|
// We need to move down
|
|
int newPos = oldPos + 1;
|
|
while (newPos < m_runConfigurations.size()
|
|
&& compare(m_runConfigurations.at(newPos), m_runConfigurations.at(oldPos))) {
|
|
++newPos;
|
|
}
|
|
beginMoveRows(QModelIndex(), oldPos, oldPos, QModelIndex(), newPos);
|
|
m_runConfigurations.insert(newPos, rc);
|
|
m_runConfigurations.removeAt(oldPos);
|
|
endMoveRows();
|
|
|
|
// We need to subtract one since removing at the old place moves the newIndex down
|
|
emit dataChanged(index(newPos - 1, 0), index(newPos - 1, 0));
|
|
} else {
|
|
emit dataChanged(index(oldPos, 0), index(oldPos, 0));
|
|
}
|
|
}
|
|
|
|
QVariant RunConfigurationModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
if (role == Qt::DisplayRole) {
|
|
const int row = index.row();
|
|
if (row < m_runConfigurations.size())
|
|
return m_runConfigurations.at(row)->displayName();
|
|
}
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
RunConfiguration *RunConfigurationModel::runConfigurationAt(int i)
|
|
{
|
|
if (i > m_runConfigurations.size() || i < 0)
|
|
return 0;
|
|
return m_runConfigurations.at(i);
|
|
}
|
|
|
|
RunConfiguration *RunConfigurationModel::runConfigurationFor(const QModelIndex &idx)
|
|
{
|
|
if (idx.row() > m_runConfigurations.size() || idx.row() < 0)
|
|
return 0;
|
|
return m_runConfigurations.at(idx.row());
|
|
}
|
|
|
|
QModelIndex RunConfigurationModel::indexFor(RunConfiguration *rc)
|
|
{
|
|
int idx = m_runConfigurations.indexOf(rc);
|
|
if (idx == -1)
|
|
return QModelIndex();
|
|
return index(idx, 0);
|
|
}
|
|
|
|
void RunConfigurationModel::addedRunConfiguration(ProjectExplorer::RunConfiguration *rc)
|
|
{
|
|
// Find the right place to insert
|
|
RunConfigurationComparer compare;
|
|
int i = 0;
|
|
for (; i < m_runConfigurations.size(); ++i) {
|
|
if (compare(rc, m_runConfigurations.at(i)))
|
|
break;
|
|
}
|
|
|
|
beginInsertRows(QModelIndex(), i, i);
|
|
m_runConfigurations.insert(i, rc);
|
|
endInsertRows();
|
|
|
|
|
|
connect(rc, SIGNAL(displayNameChanged()),
|
|
this, SLOT(displayNameChanged()));
|
|
}
|
|
|
|
void RunConfigurationModel::removedRunConfiguration(ProjectExplorer::RunConfiguration *rc)
|
|
{
|
|
int i = m_runConfigurations.indexOf(rc);
|
|
if (i < 0)
|
|
return;
|
|
|
|
beginRemoveRows(QModelIndex(), i, i);
|
|
m_runConfigurations.removeAt(i);
|
|
endRemoveRows();
|
|
}
|