forked from qt-creator/qt-creator
		
	Task-number: QTCREATORBUG-1478 Change-Id: I29afc0f38e5f86ca2c30d5b6551974df68ee7512 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
		
			
				
	
	
		
			93 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/****************************************************************************
 | 
						|
**
 | 
						|
** 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 "projectpart.h"
 | 
						|
 | 
						|
#include <utils/algorithm.h>
 | 
						|
 | 
						|
#include <QFile>
 | 
						|
#include <QDir>
 | 
						|
#include <QTextStream>
 | 
						|
 | 
						|
namespace CppTools {
 | 
						|
 | 
						|
void ProjectPart::updateLanguageFeatures()
 | 
						|
{
 | 
						|
    const bool hasCxx = languageVersion >= CXX98;
 | 
						|
    const bool hasQt = hasCxx && qtVersion != NoQt;
 | 
						|
    languageFeatures.cxx11Enabled = languageVersion >= CXX11;
 | 
						|
    languageFeatures.cxxEnabled = hasCxx;
 | 
						|
    languageFeatures.c99Enabled = languageVersion >= C99;
 | 
						|
    languageFeatures.objCEnabled = languageExtensions.testFlag(ObjectiveCExtensions);
 | 
						|
    languageFeatures.qtEnabled = hasQt;
 | 
						|
    languageFeatures.qtMocRunEnabled = hasQt;
 | 
						|
    if (!hasQt) {
 | 
						|
        languageFeatures.qtKeywordsEnabled = false;
 | 
						|
    } else {
 | 
						|
        languageFeatures.qtKeywordsEnabled = !Utils::contains(
 | 
						|
                    projectMacros,
 | 
						|
                    [] (const ProjectExplorer::Macro ¯o) { return macro.key == "QT_NO_KEYWORDS"; });
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
ProjectPart::Ptr ProjectPart::copy() const
 | 
						|
{
 | 
						|
    return Ptr(new ProjectPart(*this));
 | 
						|
}
 | 
						|
 | 
						|
QString ProjectPart::id() const
 | 
						|
{
 | 
						|
    QString projectPartId = projectFileLocation();
 | 
						|
    if (!displayName.isEmpty())
 | 
						|
        projectPartId.append(QLatin1Char(' ') + displayName);
 | 
						|
    return projectPartId;
 | 
						|
}
 | 
						|
 | 
						|
QString ProjectPart::projectFileLocation() const
 | 
						|
{
 | 
						|
    QString location = QDir::fromNativeSeparators(projectFile);
 | 
						|
    if (projectFileLine > 0)
 | 
						|
        location += ":" + QString::number(projectFileLine);
 | 
						|
    if (projectFileColumn > 0)
 | 
						|
        location += ":" + QString::number(projectFileColumn);
 | 
						|
    return location;
 | 
						|
}
 | 
						|
 | 
						|
QByteArray ProjectPart::readProjectConfigFile(const Ptr &projectPart)
 | 
						|
{
 | 
						|
    QByteArray result;
 | 
						|
 | 
						|
    QFile f(projectPart->projectConfigFile);
 | 
						|
    if (f.open(QIODevice::ReadOnly)) {
 | 
						|
        QTextStream is(&f);
 | 
						|
        result = is.readAll().toUtf8();
 | 
						|
        f.close();
 | 
						|
    }
 | 
						|
 | 
						|
    return result;
 | 
						|
}
 | 
						|
 | 
						|
} // namespace CppTools
 |