Merge pull request #103 from default0/master

Offer creation of missing target location
This commit is contained in:
Vadim Lopatin 2016-01-25 10:54:28 +03:00
commit ea580ba5e1
1 changed files with 16 additions and 0 deletions

View File

@ -270,6 +270,22 @@ class NewProjectDlg : Dialog {
override void close(const Action action) {
Action newaction = action.clone();
if (action.id == IDEActions.FileNewWorkspace || action.id == IDEActions.FileNewProject) {
if (!exists(_location)) {
// show message box with OK and CANCEL buttons, cancel by default, and handle its result
window.showMessageBox(UIString("Cannot create project"d), UIString("The target location does not exist.\nDo you want to create the target directory?"), [ACTION_YES, ACTION_CANCEL], 1, delegate(const Action a) {
if (a.id == StandardAction.Yes) {
try {
mkdirRecurse(_location);
close(action);
} catch (Exception e) {
setError("Cannot create target location");
window.showMessageBox(UIString("Cannot create project"d), UIString(getError()));
}
}
return true;
});
return;
}
if (!validate()) {
window.showMessageBox(UIString("Cannot create project"d), UIString(getError()));
return;