goToDefinition by Ctrl+Click - close #111

This commit is contained in:
Vadim Lopatin 2016-01-26 10:04:59 +03:00
parent c05067002c
commit 66c7e28639
3 changed files with 8 additions and 2 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "~>0.7.50",
"dlangui": "~>0.7.51",
"dcd": "~>0.7.5"
},

View File

@ -53,7 +53,7 @@ class DEditorTool : EditorTool
}
auto target = to!int(output.offset);
auto destPos = byteOffsetToCaret(content, target);
_frame.currentEditor.setCaretPos(destPos.line,destPos.pos);
_frame.currentEditor.setCaretPos(destPos.line,destPos.pos, true, true);
_frame.currentEditor.setFocus();
return true;
default:

View File

@ -224,6 +224,12 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
return super.handleAction(a);
}
/// Handle Ctrl + Left mouse click on text
override protected void onControlClick() {
window.dispatchAction(ACTION_GO_TO_DEFINITION);
}
/// left button click on icons panel: toggle breakpoint
override protected bool handleLeftPaneIconsMouseClick(MouseEvent event, Rect rc, int line) {
if (event.button == MouseButton.Left) {