implement editor state display in status line - #284

This commit is contained in:
Vadim Lopatin 2017-09-26 16:39:01 +03:00
parent c5d5f5850d
commit 4f2cd3391f
3 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views"],
"dependencies": {
"dlangui": "==0.9.147",
"dlangui": "==0.9.148",
"dsymbol": "~>0.2.9",
"dcd": "~>0.9.1"
},

View File

@ -452,6 +452,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
else
editor.editorTool = new DefaultEditorTool(this);
_tabs.layout(_tabs.pos);
editor.editorStateChange = _statusLine;
} else {
Log.d("file ", filename, " cannot be opened");
destroy(editor);
@ -523,6 +524,8 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
void closeTab(string tabId) {
_wsPanel.selectItem(null);
_tabs.removeTab(tabId);
_statusLine.hideEditorState();
_tabs.focusSelectedTab();
}
void renameTab(string oldfilename, string newfilename) {

View File

@ -1 +1 @@
v0.7.97
v0.7.98