summaryrefslogtreecommitdiff
path: root/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-06-12 14:36:02 +0200
committerTobias Hunger <tobias.hunger@digia.com>2013-06-12 16:55:19 +0200
commit221bc24105e3254a93c68c45933634b73b500bdc (patch)
tree9a7f4426f95b0b39300589ef0aa24c9aba81de2a /src/plugins/qbsprojectmanager/qbspropertylineedit.cpp
parentc95b324b79cb66a2dd0e128d8b41331af6e17c3c (diff)
downloadqt-creator-221bc24105e3254a93c68c45933634b73b500bdc.tar.gz
Qbs: Allow setting of properties
This enables support for e.g. setting CFLAGS, custom defines, etc. Task-number: QTCREATORBUG-9380 Change-Id: I9d4a560ac5ba8a40c51c15fdf8009c0dba5eeef1 Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/qbsprojectmanager/qbspropertylineedit.cpp')
-rw-r--r--src/plugins/qbsprojectmanager/qbspropertylineedit.cpp83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp b/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp
new file mode 100644
index 0000000000..99e2490762
--- /dev/null
+++ b/src/plugins/qbsprojectmanager/qbspropertylineedit.cpp
@@ -0,0 +1,83 @@
+/****************************************************************************
+**
+** 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 "qbspropertylineedit.h"
+
+#include <utils/qtcprocess.h>
+
+#include <QStringList>
+
+namespace QbsProjectManager {
+namespace Internal {
+
+QbsPropertyLineEdit::QbsPropertyLineEdit(QWidget *parent) :
+ Utils::BaseValidatingLineEdit(parent)
+{ }
+
+QList<QPair<QString, QString> > QbsPropertyLineEdit::properties() const
+{
+ return m_propertyCache;
+}
+
+bool QbsPropertyLineEdit::validate(const QString &value, QString *errorMessage) const
+{
+ Utils::QtcProcess::SplitError err;
+ QStringList argList = Utils::QtcProcess::splitArgs(value, false, &err);
+ if (err != Utils::QtcProcess::SplitOk) {
+ if (errorMessage)
+ *errorMessage = tr("Could not split properties.");
+ return false;
+ }
+
+ QList<QPair<QString, QString> > properties;
+ foreach (const QString &arg, argList) {
+ int pos = arg.indexOf(QLatin1Char(':'));
+ QString key;
+ QString value;
+ if (pos > 0) {
+ key = arg.left(pos);
+ value = arg.mid(pos + 1);
+ properties.append(qMakePair(key, value));
+ } else {
+ if (errorMessage)
+ *errorMessage = tr("No ':' found in property definition.");
+ return false;
+ }
+ }
+
+ if (m_propertyCache != properties) {
+ m_propertyCache = properties;
+ emit propertiesChanged();
+ }
+ return true;
+}
+
+} // namespace Internal
+} // namespace QbsProjectManager
+