From e1d5bf22167327fd7934a5dcc61260539956e302 Mon Sep 17 00:00:00 2001 From: Vitaly Livshic Date: Mon, 11 Sep 2017 15:21:48 +0300 Subject: [PATCH] Row and column for last opened files --- src/dlangide/ui/frame.d | 30 ++++++++++---- src/dlangide/workspace/workspace.d | 4 +- src/dlangide/workspace/workspacesettings.d | 46 +++++++++++++++++++--- 3 files changed, 66 insertions(+), 14 deletions(-) diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index 3d0a640..c741a11 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -410,7 +410,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL _tabs.renameTab(index, name); } } - + bool openSourceFile(string filename, ProjectSourceFile file = null, bool activate = true) { if (!file && !filename) return false; @@ -1401,9 +1401,20 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL // Write workspace to recent workspaces list _settings.updateRecentWorkspace(filename); // All was opened, attempt to restore files - const string[] files = currentWorkspace.files(); - for (int i; i < files.length; i++) - openSourceFile(files[i]); + WorkspaceFile[] files = currentWorkspace.files(); + for (int i; i < files.length; i++) + with (files[i]) + { + // Opening file + if (openSourceFile(filename)) + { + auto index = _tabs.tabIndex(filename); + // file is opened in tab + auto source = cast(DSourceEdit)_tabs.tabBody(filename); + // Caret position + source.setCaretPos(column, row); + } + } }); } else { window.showMessageBox(UIString.fromId("ERROR_OPEN_WORKSPACE"c).value, UIString.fromId("ERROR_OPENING_WORKSPACE"c).value); @@ -1567,12 +1578,17 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL askForUnsavedEdits(delegate() { if (currentWorkspace) { // Remember opened files - string[] files; + WorkspaceFile[] files; for (auto i = 0; i < _tabs.tabCount(); i++) { auto edit = cast(DSourceEdit)_tabs.tabBody(i); - if (edit !is null) - files ~= edit.filename(); + if (edit !is null) { + auto file = new WorkspaceFile(); + file.filename = edit.filename(); + file.row = edit.caretPos.pos; + file.column = edit.caretPos.line; + files ~= file; + } } currentWorkspace.files(files); // saving workspace diff --git a/src/dlangide/workspace/workspace.d b/src/dlangide/workspace/workspace.d index fbaa827..1b7c83b 100644 --- a/src/dlangide/workspace/workspace.d +++ b/src/dlangide/workspace/workspace.d @@ -98,12 +98,12 @@ class Workspace : WorkspaceItem { } /// Last opened files in workspace - @property string[] files() { + @property WorkspaceFile[] files() { return _settings.files(); } /// Last opened files in workspace - @property void files(string[] fs) { + @property void files(WorkspaceFile[] fs) { _settings.files(fs); } diff --git a/src/dlangide/workspace/workspacesettings.d b/src/dlangide/workspace/workspacesettings.d index cf65e2a..19ced77 100644 --- a/src/dlangide/workspace/workspacesettings.d +++ b/src/dlangide/workspace/workspacesettings.d @@ -18,7 +18,7 @@ class WorkspaceSettings : SettingsFile { private Breakpoint[] _breakpoints; private EditorBookmark[] _bookmarks; /// Last opened files in workspace - private string[] _files; + private WorkspaceFile[] _files; private string _startupProjectName; @property string startupProjectName() { @@ -33,12 +33,12 @@ class WorkspaceSettings : SettingsFile { } /// Last opened files in workspace - @property string[] files() { + @property WorkspaceFile[] files() { return _files; } /// Last opened files in workspace - @property void files(string[] fs) { + @property void files(WorkspaceFile[] fs) { _files = fs; // Save to settings file Setting obj = _setting.settingByPath("files", SettingType.ARRAY); @@ -46,7 +46,9 @@ class WorkspaceSettings : SettingsFile { int index = 0; foreach(file; fs) { Setting single = new Setting(); - single.setString("file", file); + single.setString("file", file.filename); + single.setInteger("column", file.column); + single.setInteger("row", file.row); obj[index++] = single; } } @@ -207,7 +209,11 @@ class WorkspaceSettings : SettingsFile { obj = _setting.settingByPath("files", SettingType.ARRAY); for (int i = 0; i < obj.length; i++) { Setting item = obj[i]; - _files ~= item.getString("file"); + WorkspaceFile file = new WorkspaceFile; + file.filename(item.getString("file")); + file.column(cast(int)item.getInteger("column")); + file.row(cast(int)item.getInteger("row")); + _files ~= file; } } @@ -216,3 +222,33 @@ class WorkspaceSettings : SettingsFile { } +/// Description for workspace file +class WorkspaceFile { + /// File name with full path + private string _filename; + /// Cursor position column + private int _column; + /// Cursor position row + private int _row; + + @property string filename() { + return _filename; + } + @property void filename(string _fn) { + this._filename = _fn; + } + + @property int column() { + return _column; + } + @property void column(int col) { + _column = col; + } + + @property int row() { + return _row; + } + @property void row(int r) { + _row = r; + } +}