From d344dd0d013be1c0104b70d8583232923449f0a9 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 11 Oct 2016 13:57:04 +0300 Subject: [PATCH] save recent directories for opening / creating workspaces/projects - #179 --- src/dlangide/ui/frame.d | 5 ++++- src/dlangide/ui/newproject.d | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index 34bf91f..ea08fd0 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -1179,7 +1179,10 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL void createNewProject(bool newWorkspace) { if (currentWorkspace is null) newWorkspace = true; - NewProjectDlg dlg = new NewProjectDlg(this, newWorkspace, currentWorkspace); + string location = _settings.getRecentPath("FILE_OPEN_WORKSPACE_PATH"); + if (newWorkspace && location) + location = location.dirName; + NewProjectDlg dlg = new NewProjectDlg(this, newWorkspace, currentWorkspace, location); dlg.dialogResult = delegate(Dialog dlg, const Action result) { if (result.id == ACTION_FILE_NEW_PROJECT.id || result.id == ACTION_FILE_NEW_WORKSPACE.id) { //Log.d("settings after edit:\n", s.toJSON(true)); diff --git a/src/dlangide/ui/newproject.d b/src/dlangide/ui/newproject.d index c672511..a78089e 100644 --- a/src/dlangide/ui/newproject.d +++ b/src/dlangide/ui/newproject.d @@ -37,14 +37,14 @@ class NewProjectDlg : Dialog { Workspace _currentWorkspace; IDEFrame _ide; - this(IDEFrame parent, bool newWorkspace, Workspace currentWorkspace) { + this(IDEFrame parent, bool newWorkspace, Workspace currentWorkspace, string dir) { super(newWorkspace ? UIString("New Workspace"d) : UIString("New Project"d), parent.window, DialogFlag.Modal | DialogFlag.Resizable | DialogFlag.Popup, 500, 400); _ide = parent; _icon = "dlangui-logo1"; this._currentWorkspace = currentWorkspace; _newWorkspace = newWorkspace; - _location = currentWorkspace !is null ? currentWorkspace.dir : currentDir; + _location = dir !is null ? dir : (currentWorkspace !is null ? currentWorkspace.dir : currentDir); } /// override to implement creation of dialog controls