additional fixes for restoring recent files - #275 #73 after PR 273

This commit is contained in:
Vadim Lopatin 2017-09-12 12:03:02 +03:00
parent 251fd6b8f7
commit f609859598
2 changed files with 43 additions and 32 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"], "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": { "dependencies": {
"dlangui": "==0.9.124", "dlangui": "==0.9.125",
"dsymbol": "~>0.2.9", "dsymbol": "~>0.2.9",
"dcd": "~>0.9.1" "dcd": "~>0.9.1"
}, },

View File

@ -448,6 +448,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
editor.editorTool = new DEditorTool(this); editor.editorTool = new DEditorTool(this);
else else
editor.editorTool = new DefaultEditorTool(this); editor.editorTool = new DefaultEditorTool(this);
_tabs.layout(_tabs.pos);
} else { } else {
destroy(editor); destroy(editor);
if (window) if (window)
@ -1156,8 +1157,10 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
} }
void closeWorkspace() { void closeWorkspace() {
if (currentWorkspace) if (currentWorkspace) {
saveListOfOpenedFiles();
currentWorkspace.save(); currentWorkspace.save();
}
askForUnsavedEdits(delegate() { askForUnsavedEdits(delegate() {
setWorkspace(null); setWorkspace(null);
showHomeScreen(); showHomeScreen();
@ -1421,6 +1424,42 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
dcdInterface.warmUp(project.importPaths); dcdInterface.warmUp(project.importPaths);
} }
void restoreListOfOpenedFiles() {
// All was opened, attempt to restore files
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, true, true);
}
}
}
void saveListOfOpenedFiles() {
WorkspaceFile[] files;
for (auto i = 0; i < _tabs.tabCount(); i++)
{
auto edit = cast(DSourceEdit)_tabs.tabBody(i);
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
currentWorkspace.save();
}
void openFileOrWorkspace(string filename) { void openFileOrWorkspace(string filename) {
// Open DlangIDE workspace file // Open DlangIDE workspace file
if (filename.isWorkspaceFile) { if (filename.isWorkspaceFile) {
@ -1431,21 +1470,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
hideHomeScreen(); hideHomeScreen();
// Write workspace to recent workspaces list // Write workspace to recent workspaces list
_settings.updateRecentWorkspace(filename); _settings.updateRecentWorkspace(filename);
// All was opened, attempt to restore files restoreListOfOpenedFiles();
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 { } else {
window.showMessageBox(UIString.fromId("ERROR_OPEN_WORKSPACE"c).value, UIString.fromId("ERROR_OPENING_WORKSPACE"c).value); window.showMessageBox(UIString.fromId("ERROR_OPEN_WORKSPACE"c).value, UIString.fromId("ERROR_OPENING_WORKSPACE"c).value);
@ -1620,21 +1645,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
askForUnsavedEdits(delegate() { askForUnsavedEdits(delegate() {
if (currentWorkspace) { if (currentWorkspace) {
// Remember opened files // Remember opened files
WorkspaceFile[] files; saveListOfOpenedFiles();
for (auto i = 0; i < _tabs.tabCount(); i++)
{
auto edit = cast(DSourceEdit)_tabs.tabBody(i);
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
currentWorkspace.save();
} }
window.close(); window.close();
}); });