new file creation dialog

This commit is contained in:
Vadim Lopatin 2015-12-08 16:21:24 +03:00
parent e9bde6e562
commit dc5ce73c09
5 changed files with 9 additions and 2 deletions

View File

@ -212,6 +212,8 @@
<Compile Include="src\dlangide\ui\searchPanel.d" />
<Compile Include="src\dlangide\ui\settings.d" />
<Compile Include="src\dlangide\ui\wspanel.d" />
<Compile Include="src\dlangide\ui\newfile.d" />
<Compile Include="src\dlangide\ui\newproject.d" />
<Compile Include="src\dlangide\workspace\project.d" />
<Compile Include="src\dlangide\workspace\workspace.d" />
<Compile Include="src\ddebug\common\debugger.d" />

View File

@ -112,6 +112,7 @@
<Compile Include="src\dlangide\ui\dsourceedit.d" />
<Compile Include="src\dlangide\ui\frame.d" />
<Compile Include="src\dlangide\ui\homescreen.d" />
<Compile Include="src\dlangide\ui\newfile.d" />
<Compile Include="src\dlangide\ui\newproject.d" />
<Compile Include="src\dlangide\ui\outputpanel.d" />
<Compile Include="src\dlangide\ui\searchPanel.d" />

View File

@ -14,7 +14,7 @@
"copyFiles-windows": ["lib/win32/dcd-server.exe", "lib/win32/dcd-client.exe"],
"dependencies": {
"dlangui": "~>0.7.3",
"dlangui": "~>0.7.4",
"libdparse": "==0.2.0"
},

View File

@ -232,6 +232,7 @@ class NewFileDlg : Dialog {
_packageName = buf.dup;
string m = !_packageName.empty ? _packageName ~ '.' ~ _moduleName : _moduleName;
_edModuleName.text = toUTF32(m);
_packageName = m;
} else {
string projectPath = _project.dir;
if (!isSubdirOf(_location, projectPath))

View File

@ -152,7 +152,10 @@ class ProjectFolder : ProjectItem {
void loadItems() {
bool[string] loaded;
foreach(e; dirEntries(_filename, SpanMode.shallow)) {
string path = _filename;
if (exists(path) && isFile(path))
path = dirName(path);
foreach(e; dirEntries(path, SpanMode.shallow)) {
string fn = baseName(e.name);
if (e.isDir) {
loadDir(fn);