/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** 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 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. ** ** 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. ** ****************************************************************************/ #include "deployconfigurationmodel.h" #include "target.h" #include "deployconfiguration.h" #include using namespace ProjectExplorer; /*! \class ProjectExplorer::DeployConfigurationModel \brief The DeployConfigurationModel class provides a model to represent the run configurations of a target. To be used in drop down lists of comboboxes. Automatically adjusts itself to added and removed deploy configurations. */ class DeployConfigurationComparer { public: bool operator()(DeployConfiguration *a, DeployConfiguration *b) { return a->displayName() < b->displayName(); } }; DeployConfigurationModel::DeployConfigurationModel(Target *target, QObject *parent) : QAbstractListModel(parent), m_target(target) { m_deployConfigurations = m_target->deployConfigurations(); Utils::sort(m_deployConfigurations, DeployConfigurationComparer()); connect(target, &Target::addedDeployConfiguration, this, &DeployConfigurationModel::addedDeployConfiguration); connect(target, &Target::removedDeployConfiguration, this, &DeployConfigurationModel::removedDeployConfiguration); foreach (DeployConfiguration *dc, m_deployConfigurations) connect(dc, &ProjectConfiguration::displayNameChanged, this, &DeployConfigurationModel::displayNameChanged); } int DeployConfigurationModel::rowCount(const QModelIndex &parent) const { return parent.isValid() ? 0 : m_deployConfigurations.size(); } int DeployConfigurationModel::columnCount(const QModelIndex &parent) const { return parent.isValid() ? 0 : 1; } void DeployConfigurationModel::displayNameChanged() { DeployConfiguration *dc = qobject_cast(sender()); if (!dc) return; DeployConfigurationComparer compare; // Find the old position int oldPos = m_deployConfigurations.indexOf(dc); if (oldPos >= 1 && compare(m_deployConfigurations.at(oldPos), m_deployConfigurations.at(oldPos - 1))) { // We need to move up int newPos = oldPos - 1; while (newPos >= 0 && compare(m_deployConfigurations.at(oldPos), m_deployConfigurations.at(newPos))) { --newPos; } ++newPos; beginMoveRows(QModelIndex(), oldPos, oldPos, QModelIndex(), newPos); m_deployConfigurations.insert(newPos, dc); m_deployConfigurations.removeAt(oldPos + 1); endMoveRows(); // Not only did we move, we also changed... emit dataChanged(index(newPos, 0), index(newPos,0)); } else if (oldPos < m_deployConfigurations.size() - 1 && compare(m_deployConfigurations.at(oldPos + 1), m_deployConfigurations.at(oldPos))) { // We need to move down int newPos = oldPos + 1; while (newPos < m_deployConfigurations.size() && compare(m_deployConfigurations.at(newPos), m_deployConfigurations.at(oldPos))) { ++newPos; } beginMoveRows(QModelIndex(), oldPos, oldPos, QModelIndex(), newPos); m_deployConfigurations.insert(newPos, dc); m_deployConfigurations.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 DeployConfigurationModel::data(const QModelIndex &index, int role) const { if (role == Qt::DisplayRole) { const int row = index.row(); if (row < m_deployConfigurations.size()) return m_deployConfigurations.at(row)->displayName(); } return QVariant(); } DeployConfiguration *DeployConfigurationModel::deployConfigurationAt(int i) { if (i > m_deployConfigurations.size() || i < 0) return 0; return m_deployConfigurations.at(i); } DeployConfiguration *DeployConfigurationModel::deployConfigurationFor(const QModelIndex &idx) { if (idx.row() > m_deployConfigurations.size() || idx.row() < 0) return 0; return m_deployConfigurations.at(idx.row()); } QModelIndex DeployConfigurationModel::indexFor(DeployConfiguration *rc) { int idx = m_deployConfigurations.indexOf(rc); if (idx == -1) return QModelIndex(); return index(idx, 0); } void DeployConfigurationModel::addedDeployConfiguration(DeployConfiguration *dc) { // Find the right place to insert DeployConfigurationComparer compare; int i = 0; for (; i < m_deployConfigurations.size(); ++i) { if (compare(dc, m_deployConfigurations.at(i))) break; } beginInsertRows(QModelIndex(), i, i); m_deployConfigurations.insert(i, dc); endInsertRows(); connect(dc, &ProjectConfiguration::displayNameChanged, this, &DeployConfigurationModel::displayNameChanged); } void DeployConfigurationModel::removedDeployConfiguration(DeployConfiguration *dc) { int i = m_deployConfigurations.indexOf(dc); if (i < 0) return; beginRemoveRows(QModelIndex(), i, i); m_deployConfigurations.removeAt(i); endRemoveRows(); }