-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpqt5projectnode.h
More file actions
29 lines (21 loc) · 858 Bytes
/
Copy pathphpqt5projectnode.h
File metadata and controls
29 lines (21 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef PHPQT5PROJECTNODE_H
#define PHPQT5PROJECTNODE_H
#include <projectexplorer/projectnodes.h>
namespace Utils { class FileName; }
namespace PHPQt5 {
class PHPQt5Project;
class PHPQt5ProjectNode : public ProjectExplorer::ProjectNode
{
public:
PHPQt5ProjectNode(const Utils::FileName &projectFilePath);
QList<ProjectExplorer::ProjectAction> supportedActions(Node *node) const override;
bool canAddSubProject(const QString &) const override;
bool addSubProjects(const QStringList &) override;
bool removeSubProjects(const QStringList &) override;
bool addFiles(const QStringList &, QStringList *) override;
bool removeFiles(const QStringList &, QStringList *) override;
bool deleteFiles(const QStringList &) override;
bool renameFile(const QString &, const QString &) override;
};
}
#endif // PHPQT5PROJECTNODE_H