Add QML folder in project tree, show files there

Use the full path for folders to sort in the project tree.

For virtual folders ensure that the path ensures the sorting we want.

Reviewed-By: kkoehne
This commit is contained in:
dt
2010-08-10 16:27:35 +02:00
parent 376369d4ce
commit b02add2490
16 changed files with 499 additions and 35 deletions

View File

@@ -69,7 +69,6 @@ bool CMakeProjectNode::addFiles(const ProjectExplorer::FileType fileType, const
return false;
}
// TODO: Maybe remove fileType, can be detected by project
bool CMakeProjectNode::removeFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths, QStringList *notRemoved)
{
Q_UNUSED(fileType)
@@ -78,6 +77,13 @@ bool CMakeProjectNode::removeFiles(const ProjectExplorer::FileType fileType, con
return false;
}
bool CMakeProjectNode::deleteFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths)
{
Q_UNUSED(fileType)
Q_UNUSED(filePaths)
return false;
}
bool CMakeProjectNode::renameFile(const ProjectExplorer::FileType fileType, const QString &filePath, const QString &newFilePath)
{
Q_UNUSED(fileType)