mirror of https://github.com/buggins/dlangide.git
implement editor state display in status line - #284
This commit is contained in:
parent
c5d5f5850d
commit
4f2cd3391f
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
||||||
"stringImportPaths": ["views"],
|
"stringImportPaths": ["views"],
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dlangui": "==0.9.147",
|
"dlangui": "==0.9.148",
|
||||||
"dsymbol": "~>0.2.9",
|
"dsymbol": "~>0.2.9",
|
||||||
"dcd": "~>0.9.1"
|
"dcd": "~>0.9.1"
|
||||||
},
|
},
|
||||||
|
|
|
@ -452,6 +452,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
else
|
else
|
||||||
editor.editorTool = new DefaultEditorTool(this);
|
editor.editorTool = new DefaultEditorTool(this);
|
||||||
_tabs.layout(_tabs.pos);
|
_tabs.layout(_tabs.pos);
|
||||||
|
editor.editorStateChange = _statusLine;
|
||||||
} else {
|
} else {
|
||||||
Log.d("file ", filename, " cannot be opened");
|
Log.d("file ", filename, " cannot be opened");
|
||||||
destroy(editor);
|
destroy(editor);
|
||||||
|
@ -523,6 +524,8 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
void closeTab(string tabId) {
|
void closeTab(string tabId) {
|
||||||
_wsPanel.selectItem(null);
|
_wsPanel.selectItem(null);
|
||||||
_tabs.removeTab(tabId);
|
_tabs.removeTab(tabId);
|
||||||
|
_statusLine.hideEditorState();
|
||||||
|
_tabs.focusSelectedTab();
|
||||||
}
|
}
|
||||||
|
|
||||||
void renameTab(string oldfilename, string newfilename) {
|
void renameTab(string oldfilename, string newfilename) {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.7.97
|
v0.7.98
|
Loading…
Reference in New Issue