2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-11-16 09:17:21 +00:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2011-11-16 09:17:21 +00:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-11-16 09:17:21 +00: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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2011-11-16 09:17:21 +00:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-11-16 09:17:21 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-11-16 09:17:21 +00:00
|
|
|
|
|
|
|
|
#include "settingsselector.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QComboBox>
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QInputDialog>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QPushButton>
|
2011-11-16 09:17:21 +00:00
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
// SettingsSelector
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
SettingsSelector::SettingsSelector(QWidget *parent) :
|
|
|
|
|
QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
QHBoxLayout *layout = new QHBoxLayout(this);
|
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
layout->setSpacing(6);
|
|
|
|
|
|
|
|
|
|
m_configurationCombo = new QComboBox(this);
|
|
|
|
|
m_configurationCombo->setSizeAdjustPolicy(QComboBox::AdjustToContents);
|
|
|
|
|
m_configurationCombo->setMinimumContentsLength(80);
|
|
|
|
|
|
|
|
|
|
m_addButton = new QPushButton(tr("Add"), this);
|
|
|
|
|
m_removeButton = new QPushButton(tr("Remove"), this);
|
|
|
|
|
m_renameButton = new QPushButton(tr("Rename"), this);
|
|
|
|
|
|
|
|
|
|
m_label = new QLabel(this);
|
|
|
|
|
m_label->setMinimumWidth(200);
|
|
|
|
|
m_label->setBuddy(m_configurationCombo);
|
|
|
|
|
|
|
|
|
|
layout->addWidget(m_label);
|
|
|
|
|
layout->addWidget(m_configurationCombo);
|
|
|
|
|
layout->addWidget(m_addButton);
|
|
|
|
|
layout->addWidget(m_removeButton);
|
|
|
|
|
layout->addWidget(m_renameButton);
|
|
|
|
|
|
|
|
|
|
layout->addSpacerItem(new QSpacerItem(0, 0));
|
|
|
|
|
|
|
|
|
|
updateButtonState();
|
|
|
|
|
|
2015-03-05 22:00:05 +02:00
|
|
|
connect(m_addButton, &QAbstractButton::clicked, this, &SettingsSelector::add);
|
|
|
|
|
connect(m_removeButton, &QAbstractButton::clicked,
|
|
|
|
|
this, &SettingsSelector::removeButtonClicked);
|
|
|
|
|
connect(m_renameButton, &QAbstractButton::clicked,
|
|
|
|
|
this, &SettingsSelector::renameButtonClicked);
|
|
|
|
|
connect(m_configurationCombo,
|
|
|
|
|
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &SettingsSelector::currentChanged);
|
2011-11-16 09:17:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SettingsSelector::~SettingsSelector()
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
void SettingsSelector::setConfigurationModel(QAbstractItemModel *model)
|
|
|
|
|
{
|
|
|
|
|
if (m_configurationCombo->model()) {
|
2015-03-05 22:00:05 +02:00
|
|
|
disconnect(m_configurationCombo->model(), &QAbstractItemModel::rowsInserted,
|
|
|
|
|
this, &SettingsSelector::updateButtonState);
|
|
|
|
|
disconnect(m_configurationCombo->model(), &QAbstractItemModel::rowsRemoved,
|
|
|
|
|
this, &SettingsSelector::updateButtonState);
|
2011-11-16 09:17:21 +00:00
|
|
|
}
|
|
|
|
|
m_configurationCombo->setModel(model);
|
2015-03-05 22:00:05 +02:00
|
|
|
connect(model, &QAbstractItemModel::rowsInserted, this, &SettingsSelector::updateButtonState);
|
|
|
|
|
connect(model, &QAbstractItemModel::rowsRemoved, this, &SettingsSelector::updateButtonState);
|
2011-11-16 09:17:21 +00:00
|
|
|
|
|
|
|
|
updateButtonState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *SettingsSelector::configurationModel() const
|
|
|
|
|
{
|
|
|
|
|
return m_configurationCombo->model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsSelector::setLabelText(const QString &text)
|
|
|
|
|
{
|
|
|
|
|
m_label->setText(text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SettingsSelector::labelText() const
|
|
|
|
|
{
|
|
|
|
|
return m_label->text();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsSelector::setCurrentIndex(int index)
|
|
|
|
|
{
|
|
|
|
|
m_configurationCombo->setCurrentIndex(index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsSelector::setAddMenu(QMenu *menu)
|
|
|
|
|
{
|
|
|
|
|
m_addButton->setMenu(menu);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu *SettingsSelector::addMenu() const
|
|
|
|
|
{
|
|
|
|
|
return m_addButton->menu();
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-22 13:04:49 +00:00
|
|
|
int SettingsSelector::currentIndex() const
|
|
|
|
|
{
|
|
|
|
|
return m_configurationCombo->currentIndex();
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-16 09:17:21 +00:00
|
|
|
void SettingsSelector::removeButtonClicked()
|
|
|
|
|
{
|
2011-11-22 13:04:49 +00:00
|
|
|
int pos = currentIndex();
|
2011-11-16 09:17:21 +00:00
|
|
|
if (pos < 0)
|
|
|
|
|
return;
|
2011-12-13 15:27:40 +01:00
|
|
|
const QString title = tr("Remove");
|
|
|
|
|
const QString message = tr("Do you really want to delete the configuration <b>%1</b>?")
|
2011-11-16 09:17:21 +00:00
|
|
|
.arg(m_configurationCombo->currentText());
|
|
|
|
|
QMessageBox msgBox(QMessageBox::Question, title, message, QMessageBox::Yes|QMessageBox::No, this);
|
|
|
|
|
msgBox.setDefaultButton(QMessageBox::No);
|
|
|
|
|
msgBox.setEscapeButton(QMessageBox::No);
|
|
|
|
|
if (msgBox.exec() == QMessageBox::No)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
emit remove(pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsSelector::renameButtonClicked()
|
|
|
|
|
{
|
2011-11-22 13:04:49 +00:00
|
|
|
int pos = currentIndex();
|
2011-11-16 09:17:21 +00:00
|
|
|
if (pos < 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2011-11-22 13:04:49 +00:00
|
|
|
QAbstractItemModel *model = m_configurationCombo->model();
|
|
|
|
|
int row = m_configurationCombo->currentIndex();
|
|
|
|
|
QModelIndex idx = model->index(row, 0);
|
|
|
|
|
QString baseName = model->data(idx, Qt::EditRole).toString();
|
|
|
|
|
|
2011-11-16 09:17:21 +00:00
|
|
|
bool ok;
|
2011-12-13 15:27:40 +01:00
|
|
|
const QString message = tr("New name for configuration <b>%1</b>:").arg(baseName);
|
2011-11-16 09:17:21 +00:00
|
|
|
|
|
|
|
|
QString name = QInputDialog::getText(this, tr("Rename..."), message,
|
2011-11-22 13:04:49 +00:00
|
|
|
QLineEdit::Normal, baseName, &ok);
|
2011-11-16 09:17:21 +00:00
|
|
|
if (!ok)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
emit rename(pos, name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsSelector::updateButtonState()
|
|
|
|
|
{
|
|
|
|
|
bool haveItems = m_configurationCombo->count() > 0;
|
|
|
|
|
m_addButton->setEnabled(true);
|
|
|
|
|
m_removeButton->setEnabled(haveItems);
|
|
|
|
|
m_renameButton->setEnabled(haveItems);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|