sort workspace items - folders first - close #250

This commit is contained in:
Vadim Lopatin 2017-09-07 10:56:01 +03:00
parent 1f34e7dc6c
commit 9f63bb0603
4 changed files with 16 additions and 3 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "==0.9.113",
"dlangui": "==0.9.114",
"dcd": "~>0.9.1"
},

View File

@ -239,6 +239,8 @@ class NewFileDlg : Dialog {
}
_edModuleName.text = toUTF32(m);
_packageName = m;
if (_currentTemplate.kind == FileKind.PACKAGE && _packageName.length == 0)
return setError("Package should be located in subdirectory");
} else {
string projectPath = _project.dir;
if (!isSubdirOf(_location, projectPath))
@ -345,4 +347,3 @@ class ProjectTemplate {
this.kind = kind;
}
}

View File

@ -202,6 +202,17 @@ class ProjectFolder : ProjectItem {
_children.remove(i);
}
}
sortItems();
}
/// predicate for sorting project items
static bool compareProjectItemsLess(ProjectItem item1, ProjectItem item2) {
return ((item1.isFolder && !item2.isFolder) || ((item1.isFolder == item2.isFolder) && (item1.name < item2.name)));
}
void sortItems() {
import std.algorithm.sorting : sort;
sort!compareProjectItemsLess(_children.asArray);
}
string relativeToAbsolutePath(string path) {
@ -218,6 +229,7 @@ class ProjectFolder : ProjectItem {
}
}
/// Project source file
class ProjectSourceFile : ProjectItem {
this(string filename) {

View File

@ -1 +1 @@
v0.7.66
v0.7.67