2010-12-10 19:02:19 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-12-10 19:02:19 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2010-12-10 19:02:19 +01: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-12-10 19:02:19 +01:00
|
|
|
**
|
2011-02-17 17:53:52 +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
|
2011-02-17 17:53:52 +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-12-10 19:02:19 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
#include "qmakekitconfigwidget.h"
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include "qt4projectmanagerconstants.h"
|
2012-09-03 18:31:44 +02:00
|
|
|
#include "qmakekitinformation.h"
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QLineEdit>
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
namespace Qt4ProjectManager {
|
2010-12-10 19:02:19 +01:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
QmakeKitConfigWidget::QmakeKitConfigWidget(ProjectExplorer::Kit *k, QWidget *parent) :
|
|
|
|
|
ProjectExplorer::KitConfigWidget(parent),
|
|
|
|
|
m_kit(k),
|
2012-04-24 15:49:09 +02:00
|
|
|
m_lineEdit(new QLineEdit)
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
2012-08-20 11:02:27 +02:00
|
|
|
setToolTip(tr("The mkspec to use when building the project with qmake.<br>"
|
|
|
|
|
"This setting is ignored when using other build systems."));
|
2012-04-24 15:49:09 +02:00
|
|
|
QHBoxLayout *layout = new QHBoxLayout(this);
|
|
|
|
|
layout->setMargin(0);
|
|
|
|
|
|
|
|
|
|
m_lineEdit->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
layout->addWidget(m_lineEdit);
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
discard(); // set up everything according to kit
|
2012-04-24 15:49:09 +02:00
|
|
|
connect(m_lineEdit, SIGNAL(textEdited(QString)), this, SIGNAL(dirty()));
|
|
|
|
|
}
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
QString QmakeKitConfigWidget::displayName() const
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2012-06-22 14:02:16 +02:00
|
|
|
return tr("Qt mkspec:");
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
void QmakeKitConfigWidget::makeReadOnly()
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
|
|
|
|
m_lineEdit->setEnabled(false);
|
|
|
|
|
}
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
void QmakeKitConfigWidget::apply()
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2012-09-03 18:31:44 +02:00
|
|
|
QmakeKitInformation::setMkspec(m_kit, Utils::FileName::fromString(m_lineEdit->text()));
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
void QmakeKitConfigWidget::discard()
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2012-09-03 18:31:44 +02:00
|
|
|
m_lineEdit->setText(QmakeKitInformation::mkspec(m_kit).toString());
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
bool QmakeKitConfigWidget::isDirty() const
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2012-09-03 18:31:44 +02:00
|
|
|
return m_lineEdit->text() != QmakeKitInformation::mkspec(m_kit).toString();
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
2010-12-10 19:02:19 +01:00
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|