Files
qt-creator/src/plugins/cmakeprojectmanager/cmakeprojectmanager.h

44 lines
1.1 KiB
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
2008-12-02 14:09:21 +01:00
#pragma once
2008-12-02 12:01:29 +01:00
#include <projectexplorer/project.h>
2010-11-02 16:14:00 +01:00
namespace Utils { class ParameterAction; }
QT_BEGIN_NAMESPACE
class QAction;
QT_END_NAMESPACE
2010-11-02 16:14:00 +01:00
2008-12-02 12:01:29 +01:00
namespace CMakeProjectManager {
namespace Internal {
class CMakeManager : public QObject
2008-12-02 12:01:29 +01:00
{
Q_OBJECT
2008-12-02 12:01:29 +01:00
public:
CMakeManager();
2008-12-02 12:01:29 +01:00
private:
void updateCmakeActions(ProjectExplorer::Node *node);
void clearCMakeCache(ProjectExplorer::BuildSystem *buildSystem);
void runCMake(ProjectExplorer::BuildSystem *buildSystem);
void rescanProject(ProjectExplorer::BuildSystem *buildSystem);
void buildFileContextMenu();
void buildFile(ProjectExplorer::Node *node = nullptr);
void updateBuildFileAction();
void enableBuildFileMenus(ProjectExplorer::Node *node);
QAction *m_runCMakeAction;
QAction *m_clearCMakeCacheAction;
QAction *m_runCMakeActionContextMenu;
QAction *m_rescanProjectAction;
QAction *m_buildFileContextMenu;
Utils::ParameterAction *m_buildFileAction;
};
2008-12-02 14:09:21 +01:00
} // namespace Internal
} // namespace CMakeProjectManager