mirror of https://github.com/buggins/dlangide.git
new file creation dialog
This commit is contained in:
parent
e9bde6e562
commit
dc5ce73c09
|
@ -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" />
|
||||
|
|
|
@ -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" />
|
||||
|
|
2
dub.json
2
dub.json
|
@ -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"
|
||||
},
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue