Files
qt-creator/src/plugins/genericprojectmanager/genericproject.h

216 lines
6.1 KiB
C
Raw Normal View History

2009-03-10 14:20:07 +01:00
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
2009-03-10 14:20:07 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2009-03-10 14:20:07 +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.
2009-03-10 14:20:07 +01:00
**
2010-12-17 16:01:08 +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
2010-12-17 16:01:08 +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-17 16:01:08 +01:00
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
2009-03-10 14:20:07 +01:00
**
**************************************************************************/
#ifndef GENERICPROJECT_H
#define GENERICPROJECT_H
#include "genericprojectmanager.h"
#include "genericprojectnodes.h"
#include "generictarget.h"
2009-03-10 14:20:07 +01:00
#include <projectexplorer/project.h>
#include <projectexplorer/projectnodes.h>
#include <projectexplorer/target.h>
#include <projectexplorer/toolchain.h>
2009-03-10 14:20:07 +01:00
#include <projectexplorer/buildstep.h>
#include <projectexplorer/buildconfiguration.h>
2009-03-10 14:20:07 +01:00
#include <coreplugin/ifile.h>
#include <QtCore/QFuture>
QT_BEGIN_NAMESPACE
class QComboBox;
QT_END_NAMESPACE
namespace Utils {
class PathChooser;
}
namespace ProjectExplorer {
class ToolChain;
}
2009-03-10 14:20:07 +01:00
namespace GenericProjectManager {
namespace Internal {
class GenericBuildConfiguration;
class GenericProject;
class GenericTarget;
class GenericMakeStep;
2009-03-10 14:20:07 +01:00
class GenericProjectFile;
2009-03-10 14:20:07 +01:00
class GenericProject : public ProjectExplorer::Project
{
Q_OBJECT
public:
GenericProject(Manager *manager, const QString &filename);
virtual ~GenericProject();
2009-03-16 11:49:57 +01:00
QString filesFileName() const;
QString includesFileName() const;
QString configFileName() const;
QString displayName() const;
QString id() const;
Core::IFile *file() const;
ProjectExplorer::IProjectManager *projectManager() const;
GenericTarget *activeTarget() const;
2009-03-10 14:20:07 +01:00
QList<ProjectExplorer::Project *> dependsOn();
2009-03-10 14:20:07 +01:00
QList<ProjectExplorer::BuildConfigWidget*> subConfigWidgets();
2009-03-10 14:20:07 +01:00
GenericProjectNode *rootProjectNode() const;
QStringList files(FilesMode fileMode) const;
2009-03-10 14:20:07 +01:00
QStringList buildTargets() const;
2009-03-12 15:07:54 +01:00
bool addFiles(const QStringList &filePaths);
bool removeFiles(const QStringList &filePaths);
bool setFiles(const QStringList &filePaths);
bool renameFile(const QString &filePath, const QString &newFilePath);
enum RefreshOptions {
Files = 0x01,
Configuration = 0x02,
Everything = Files | Configuration
};
void refresh(RefreshOptions options);
2009-03-12 15:07:54 +01:00
QStringList includePaths() const;
void setIncludePaths(const QStringList &includePaths);
2009-03-16 12:42:16 +01:00
QByteArray defines() const;
2009-03-13 15:12:54 +01:00
QStringList allIncludePaths() const;
QStringList projectIncludePaths() const;
2009-03-12 16:31:40 +01:00
QStringList files() const;
QStringList generated() const;
ProjectExplorer::ToolChain *toolChain() const;
void setToolChain(ProjectExplorer::ToolChain *tc);
2009-03-10 14:20:07 +01:00
QVariantMap toMap() const;
signals:
void toolChainChanged(ProjectExplorer::ToolChain *);
2009-03-10 14:20:07 +01:00
protected:
virtual bool fromMap(const QVariantMap &map);
2009-03-10 14:20:07 +01:00
private:
bool saveRawFileList(const QStringList &rawFileList);
void parseProject(RefreshOptions options);
QStringList processEntries(const QStringList &paths,
QHash<QString, QString> *map = 0) const;
2009-03-12 15:07:54 +01:00
Manager *m_manager;
QString m_fileName;
QString m_filesFileName;
QString m_includesFileName;
QString m_configFileName;
QString m_projectName;
GenericProjectFile *m_creatorIFile;
GenericProjectFile *m_filesIFile;
GenericProjectFile *m_includesIFile;
GenericProjectFile *m_configIFile;
QStringList m_rawFileList;
QStringList m_files;
QHash<QString, QString> m_rawListEntries;
QStringList m_generated;
QStringList m_includePaths;
QStringList m_projectIncludePaths;
QByteArray m_defines;
GenericProjectNode *m_rootNode;
ProjectExplorer::ToolChain *m_toolChain;
QFuture<void> m_codeModelFuture;
2009-03-10 14:20:07 +01:00
};
class GenericProjectFile : public Core::IFile
{
Q_OBJECT
public:
GenericProjectFile(GenericProject *parent, QString fileName, GenericProject::RefreshOptions options);
2009-03-10 14:20:07 +01:00
virtual ~GenericProjectFile();
virtual bool save(QString *errorString, const QString &fileName, bool autoSave);
2009-03-10 14:20:07 +01:00
virtual QString fileName() const;
virtual QString defaultPath() const;
virtual QString suggestedFileName() const;
virtual QString mimeType() const;
virtual bool isModified() const;
virtual bool isSaveAsAllowed() const;
virtual void rename(const QString &newName);
2009-03-10 14:20:07 +01:00
ReloadBehavior reloadBehavior(ChangeTrigger state, ChangeType type) const;
bool reload(QString *errorString, ReloadFlag flag, ChangeType type);
2009-03-10 14:20:07 +01:00
private:
GenericProject *m_project;
QString m_fileName;
GenericProject::RefreshOptions m_options;
2009-03-10 14:20:07 +01:00
};
class GenericBuildSettingsWidget : public ProjectExplorer::BuildConfigWidget
2009-03-10 14:20:07 +01:00
{
Q_OBJECT
public:
GenericBuildSettingsWidget(GenericTarget *target);
2009-03-10 14:20:07 +01:00
virtual ~GenericBuildSettingsWidget();
virtual QString displayName() const;
virtual void init(ProjectExplorer::BuildConfiguration *bc);
2009-03-10 14:20:07 +01:00
private Q_SLOTS:
void buildDirectoryChanged();
void toolChainSelected(int index);
void toolChainChanged(ProjectExplorer::ToolChain *);
void updateToolChainList();
2009-03-10 14:20:07 +01:00
private:
GenericTarget *m_target;
Utils::PathChooser *m_pathChooser;
QComboBox *m_toolChainChooser;
GenericBuildConfiguration *m_buildConfiguration;
2009-03-10 14:20:07 +01:00
};
} // namespace Internal
} // namespace GenericProjectManager
#endif // GENERICPROJECT_H