OSDN Git Service

f706f903b77af1ccfd9997eb6b66164d752aaef2
[qt-creator-jp/qt-creator-jp.git] / src / plugins / cmakeprojectmanager / cmakeprojectnodes.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "cmakeprojectnodes.h"
35
36 using namespace CMakeProjectManager;
37 using namespace CMakeProjectManager::Internal;
38
39 CMakeProjectNode::CMakeProjectNode(const QString &fileName)
40     : ProjectExplorer::ProjectNode(fileName)
41 {
42 }
43
44 bool CMakeProjectNode::hasBuildTargets() const
45 {
46     // TODO
47     return true;
48 }
49
50 QList<ProjectExplorer::ProjectNode::ProjectAction> CMakeProjectNode::supportedActions(Node *node) const
51 {
52     Q_UNUSED(node);
53     return QList<ProjectAction>();
54 }
55
56 bool CMakeProjectNode::canAddSubProject(const QString &proFilePath) const
57 {
58     Q_UNUSED(proFilePath)
59     return false;
60 }
61
62 bool CMakeProjectNode::addSubProjects(const QStringList &proFilePaths)
63 {
64     Q_UNUSED(proFilePaths)
65     return false;
66 }
67
68 bool CMakeProjectNode::removeSubProjects(const QStringList &proFilePaths)
69 {
70     Q_UNUSED(proFilePaths)
71     return false;
72 }
73
74 bool CMakeProjectNode::addFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths, QStringList *notAdded)
75 {
76     Q_UNUSED(fileType)
77     Q_UNUSED(filePaths)
78     Q_UNUSED(notAdded)
79     return false;
80 }
81
82 bool CMakeProjectNode::removeFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths,  QStringList *notRemoved)
83 {
84     Q_UNUSED(fileType)
85     Q_UNUSED(filePaths)
86     Q_UNUSED(notRemoved)
87     return false;
88 }
89
90 bool CMakeProjectNode::deleteFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths)
91 {
92     Q_UNUSED(fileType)
93     Q_UNUSED(filePaths)
94     return false;
95 }
96
97 bool CMakeProjectNode::renameFile(const ProjectExplorer::FileType fileType, const QString &filePath, const QString &newFilePath)
98 {
99     Q_UNUSED(fileType)
100     Q_UNUSED(filePath)
101     Q_UNUSED(newFilePath)
102     return false;
103 }
104
105 QList<ProjectExplorer::RunConfiguration *> CMakeProjectNode::runConfigurationsFor(Node *node)
106 {
107     Q_UNUSED(node)
108     return QList<ProjectExplorer::RunConfiguration *>();
109 }