diff --git a/src/dlangide/ui/commands.d b/src/dlangide/ui/commands.d index f28670b..b0b855f 100644 --- a/src/dlangide/ui/commands.d +++ b/src/dlangide/ui/commands.d @@ -96,4 +96,4 @@ const Action ACTION_WINDOW_CLOSE_ALL_DOCUMENTS = new Action(IDEActions.WindowClo const Action ACTION_CREATE_NEW_WORKSPACE = new Action(IDEActions.CreateNewWorkspace, "Create new workspace"d); const Action ACTION_ADD_TO_CURRENT_WORKSPACE = new Action(IDEActions.AddToCurrentWorkspace, "Add to current workspace"d); const Action ACTION_GO_TO_DEFINITION = new Action(IDEActions.GoToDefinition, "GO_TO_DEFINITION"c, ""c, KeyCode.KEY_G, KeyFlag.Control); -const Action ACTION_GET_COMPLETIONS = new Action(IDEActions.GetCompletionSuggestions, "GO_TO_DEFINITION"c, ""c, KeyCode.KEY_G, KeyFlag.Control|KeyFlag.Shift); \ No newline at end of file +const Action ACTION_GET_COMPLETIONS = new Action(IDEActions.GetCompletionSuggestions, "SHOW_COMPLETIONS"c, ""c, KeyCode.KEY_G, KeyFlag.Control|KeyFlag.Shift); \ No newline at end of file diff --git a/src/dlangide/ui/dsourceedit.d b/src/dlangide/ui/dsourceedit.d index 0102c45..c922182 100644 --- a/src/dlangide/ui/dsourceedit.d +++ b/src/dlangide/ui/dsourceedit.d @@ -31,7 +31,7 @@ class DSourceEdit : SourceEdit { setTokenHightlightColor(TokenCategory.Comment_Documentation, 0x206000); //setTokenHightlightColor(TokenCategory.Identifier, 0x206000); // no colors MenuItem editPopupItem = new MenuItem(null); - editPopupItem.add(ACTION_EDIT_COPY, ACTION_EDIT_PASTE, ACTION_EDIT_CUT, ACTION_EDIT_UNDO, ACTION_EDIT_REDO, ACTION_EDIT_INDENT, ACTION_EDIT_UNINDENT, ACTION_EDIT_TOGGLE_LINE_COMMENT); + editPopupItem.add(ACTION_EDIT_COPY, ACTION_EDIT_PASTE, ACTION_EDIT_CUT, ACTION_EDIT_UNDO, ACTION_EDIT_REDO, ACTION_EDIT_INDENT, ACTION_EDIT_UNINDENT, ACTION_EDIT_TOGGLE_LINE_COMMENT, ACTION_GET_COMPLETIONS); popupMenu = editPopupItem; showIcons = true; showFolding = true; @@ -95,20 +95,28 @@ class DSourceEdit : SourceEdit { void showCompletionPopup(dstring[] suggestions) { - MenuItem completionPopupItem = new MenuItem(null); - //Create popup menu + + if(suggestions.length == 0) { + return; + } + + MenuItem completionPopupItems = new MenuItem(null); + //Add all the suggestions. foreach(int i, dstring suggestion ; suggestions) { auto action = new Action(IDEActions.InsertCompletion, suggestion); - completionPopupItem.add(action); + completionPopupItems.add(action); } - completionPopupItem.updateActionState(this); - PopupMenu popupMenu = new PopupMenu(completionPopupItem); + completionPopupItems.updateActionState(this); + + PopupMenu popupMenu = new PopupMenu(completionPopupItems); popupMenu.onMenuItemActionListener = this; popupMenu.maxHeight(400); popupMenu.selectItem(0); + PopupWidget popup = window.showPopup(popupMenu, this, PopupAlign.Point | PopupAlign.Right, textPosToClient(_caretPos).left + left + _leftPaneWidth, textPosToClient(_caretPos).top + top + margins.top); popup.setFocus(); popup.flags = PopupFlags.CloseOnClickOutside; + Log.d("Showing popup at ", textPosToClient(_caretPos).left, " ", textPosToClient(_caretPos).top); } diff --git a/views/res/i18n/en.ini b/views/res/i18n/en.ini index cb2933e..1939fe4 100644 --- a/views/res/i18n/en.ini +++ b/views/res/i18n/en.ini @@ -56,8 +56,10 @@ MENU_HELP=&HELP MENU_HELP_VIEW_HELP=&View help MENU_HELP_ABOUT=&About GO_TO_DEFINITION=Go To Definition +SHOW_COMPLETIONS=Get Autocompletions MENU_NAVIGATE=NAVIGATE + TAB_LONG_LIST=Long list TAB_BUTTONS=Buttons TAB_ANIMATION=Animation