Files
qt-creator/src/plugins/qmakeprojectmanager/qmakenodes.h

109 lines
3.9 KiB
C
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01: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
** 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.
2010-12-17 16:01:08 +01:00
**
****************************************************************************/
2008-12-02 16:19:05 +01:00
#pragma once
2008-12-02 12:01:29 +01:00
#include "qmakeprojectmanager_global.h"
#include "qmakeparsernodes.h"
2008-12-02 12:01:29 +01:00
#include <projectexplorer/projectnodes.h>
namespace Utils { class FileName; }
2008-12-02 12:01:29 +01:00
namespace QmakeProjectManager {
class QmakeProFileNode;
class QmakeProject;
2008-12-02 12:01:29 +01:00
// Implements ProjectNode for qmake .pri files
class QMAKEPROJECTMANAGER_EXPORT QmakePriFileNode : public ProjectExplorer::ProjectNode
{
2008-12-02 12:01:29 +01:00
public:
QmakePriFileNode(QmakeProject *project, QmakeProFileNode *qmakeProFileNode,
const Utils::FileName &filePath, QmakePriFile *pf);
2008-12-02 12:01:29 +01:00
QmakePriFile *priFile() const;
// ProjectNode interface
bool supportsAction(ProjectExplorer::ProjectAction action, const Node *node) const override;
2008-12-02 12:01:29 +01:00
bool showInSimpleTree() const override { return false; }
2008-12-02 12:01:29 +01:00
bool canAddSubProject(const QString &proFilePath) const override;
bool addSubProject(const QString &proFilePath) override;
bool removeSubProject(const QString &proFilePath) override;
2008-12-02 12:01:29 +01:00
bool addFiles(const QStringList &filePaths, QStringList *notAdded = nullptr) override;
bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = nullptr) override;
bool deleteFiles(const QStringList &filePaths) override;
bool canRenameFile(const QString &filePath, const QString &newFilePath) override;
bool renameFile(const QString &filePath, const QString &newFilePath) override;
AddNewInformation addNewInformation(const QStringList &files, Node *context) const override;
2008-12-02 12:01:29 +01:00
bool deploysFolder(const QString &folder) const override;
QmakeProFileNode *proFileNode() const;
2008-12-02 12:01:29 +01:00
protected:
QmakeProject *m_project = nullptr;
private:
QmakeProFileNode *m_qmakeProFileNode = nullptr;
QmakePriFile *m_qmakePriFile = nullptr;
2008-12-02 12:01:29 +01:00
};
// Implements ProjectNode for qmake .pro files
class QMAKEPROJECTMANAGER_EXPORT QmakeProFileNode : public QmakePriFileNode
{
2008-12-02 12:01:29 +01:00
public:
QmakeProFileNode(QmakeProject *project, const Utils::FileName &filePath, QmakeProFile *pf);
2008-12-02 12:01:29 +01:00
QmakeProFile *proFile() const;
QString makefile() const;
QString objectsDirectory() const;
QString objectExtension() const;
bool isDebugAndRelease() const;
bool isQtcRunnable() const;
bool showInSimpleTree() const override;
2008-12-02 12:01:29 +01:00
AddNewInformation addNewInformation(const QStringList &files, Node *context) const override;
QmakeProjectManager::ProjectType projectType() const;
QString buildDir() const;
Utils::FileName buildDir(QmakeBuildConfiguration *bc) const;
2008-12-02 12:01:29 +01:00
QStringList variableValue(const Variable var) const;
QString singleVariableValue(const Variable var) const;
2008-12-02 12:01:29 +01:00
QmakeProFileNode *findProFileFor(const Utils::FileName &string) const;
bool showInSimpleTree(ProjectType projectType) const;
2008-12-02 12:01:29 +01:00
};
} // namespace QmakeProjectManager