From a11b1ef8fbdac313b8f1da3270310c91d669987f Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 26 Sep 2017 17:27:10 +0300 Subject: [PATCH] implement default popup menu for EditLine - close #459 --- src/dlangui/dialogs/filedlg.d | 10 ++++++++++ src/dlangui/dialogs/inputbox.d | 1 + src/dlangui/widgets/editors.d | 19 ++++++++++++++++++- views/DLANGUI_VERSION | 2 +- views/res/i18n/std_en.ini | 6 ++++++ views/res/i18n/std_ru.ini | 6 ++++++ 6 files changed, 42 insertions(+), 2 deletions(-) diff --git a/src/dlangui/dialogs/filedlg.d b/src/dlangui/dialogs/filedlg.d index 4e3e72f1..7e9c6737 100644 --- a/src/dlangui/dialogs/filedlg.d +++ b/src/dlangui/dialogs/filedlg.d @@ -745,6 +745,7 @@ class FileDialog : Dialog, CustomGridCellAdapter { fnlayout.layoutWidth(FILL_PARENT); _edFilename = new EditLine("filename"); _edFilename.layoutWidth(FILL_PARENT); + _edFilename.setDefaultPopupMenu(); if (_flags & FileDialogFlag.SelectDirectory) { _edFilename.visibility = Visibility.Gone; } @@ -1085,6 +1086,11 @@ class FilePathPanel : FrameLayout { addChild(_segments); addChild(_edPath); } + + void setDefaultPopupMenu() { + _edPath.setDefaultPopupMenu(); + } + protected bool onEditorFocusChanged(Widget source, bool focused) { if (!focused) { _edPath.text = toUTF32(_path); @@ -1147,6 +1153,10 @@ class FileNameEditLine : HorizontalLayout { return _edFileName.enterKey; } + void setDefaultPopupMenu() { + _edFileName.setDefaultPopupMenu(); + } + this(string ID = null) { super(ID); _caption = UIString.fromId("TITLE_OPEN_FILE"c).value; diff --git a/src/dlangui/dialogs/inputbox.d b/src/dlangui/dialogs/inputbox.d index 50ab0f41..04c6afe1 100644 --- a/src/dlangui/dialogs/inputbox.d +++ b/src/dlangui/dialogs/inputbox.d @@ -44,6 +44,7 @@ class InputBox : Dialog { _editor.contentChange = delegate(EditableContent content) { _text = content.text; }; + _editor.setDefaultPopupMenu(); addChild(msg); addChild(_editor); addChild(createButtonsPanel(_actions, _defaultButtonIndex, 0)); diff --git a/src/dlangui/widgets/editors.d b/src/dlangui/widgets/editors.d index bafdf480..7ae7d050 100644 --- a/src/dlangui/widgets/editors.d +++ b/src/dlangui/widgets/editors.d @@ -228,6 +228,12 @@ void initStandardEditorActions() { registerActionEnum!EditorActions(); } +const Action ACTION_EDITOR_COPY = (new Action(EditorActions.Copy, "MENU_EDIT_COPY"c, null, KeyCode.KEY_C, KeyFlag.Control)).addAccelerator(KeyCode.INS, KeyFlag.Control).disableByDefault(); +const Action ACTION_EDITOR_PASTE = (new Action(EditorActions.Paste, "MENU_EDIT_PASTE"c, null, KeyCode.KEY_V, KeyFlag.Control)).addAccelerator(KeyCode.INS, KeyFlag.Shift).disableByDefault(); +const Action ACTION_EDITOR_CUT = (new Action(EditorActions.Cut, "MENU_EDIT_CUT"c, null, KeyCode.KEY_X, KeyFlag.Control)).addAccelerator(KeyCode.DEL, KeyFlag.Shift).disableByDefault(); +const Action ACTION_EDITOR_UNDO = (new Action(EditorActions.Undo, "MENU_EDIT_UNDO"c, null, KeyCode.KEY_Z, KeyFlag.Control)).disableByDefault(); +const Action ACTION_EDITOR_REDO = (new Action(EditorActions.Redo, "MENU_EDIT_REDO"c, null, KeyCode.KEY_Y, KeyFlag.Control)).addAccelerator(KeyCode.KEY_Z, KeyFlag.Control|KeyFlag.Shift).disableByDefault(); + const Action ACTION_EDITOR_INSERT_NEW_LINE = (new Action(EditorActions.InsertNewLine, KeyCode.RETURN, 0, ActionStateUpdateFlag.never)).addAccelerator(KeyCode.RETURN, KeyFlag.Shift); const Action ACTION_EDITOR_PREPEND_NEW_LINE = (new Action(EditorActions.PrependNewLine, KeyCode.RETURN, KeyFlag.Control | KeyFlag.Shift, ActionStateUpdateFlag.never)); const Action ACTION_EDITOR_APPEND_NEW_LINE = (new Action(EditorActions.AppendNewLine, KeyCode.RETURN, KeyFlag.Control, ActionStateUpdateFlag.never)); @@ -249,7 +255,9 @@ const Action[] STD_EDITOR_ACTIONS = [ACTION_EDITOR_INSERT_NEW_LINE, ACTION_EDITO ACTION_EDITOR_SELECT_ALL, ACTION_EDITOR_TOGGLE_LINE_COMMENT, ACTION_EDITOR_TOGGLE_BLOCK_COMMENT, ACTION_EDITOR_TOGGLE_BOOKMARK, ACTION_EDITOR_GOTO_NEXT_BOOKMARK, ACTION_EDITOR_GOTO_PREVIOUS_BOOKMARK, ACTION_EDITOR_FIND, ACTION_EDITOR_REPLACE, - ACTION_EDITOR_FIND_NEXT, ACTION_EDITOR_FIND_PREV + ACTION_EDITOR_FIND_NEXT, ACTION_EDITOR_FIND_PREV, + ACTION_EDITOR_COPY, ACTION_EDITOR_PASTE, ACTION_EDITOR_CUT, + ACTION_EDITOR_UNDO, ACTION_EDITOR_REDO ]; /// base for all editor widgets @@ -2042,6 +2050,15 @@ class EditLine : EditWidgetBase { onThemeChanged(); } + /// sets default popup menu with copy/paste/cut/undo/redo + EditLine setDefaultPopupMenu() { + MenuItem items = new MenuItem(); + items.add(ACTION_EDITOR_COPY, ACTION_EDITOR_PASTE, ACTION_EDITOR_CUT, + ACTION_EDITOR_UNDO, ACTION_EDITOR_REDO); + popupMenu = items; + return this; + } + protected dstring _measuredText; protected int[] _measuredTextWidths; protected Point _measuredTextSize; diff --git a/views/DLANGUI_VERSION b/views/DLANGUI_VERSION index 15fedade..8c77b1df 100644 --- a/views/DLANGUI_VERSION +++ b/views/DLANGUI_VERSION @@ -1 +1 @@ -v0.9.148 \ No newline at end of file +v0.9.149 \ No newline at end of file diff --git a/views/res/i18n/std_en.ini b/views/res/i18n/std_en.ini index 3c37e68a..12f3cc57 100644 --- a/views/res/i18n/std_en.ini +++ b/views/res/i18n/std_en.ini @@ -54,3 +54,9 @@ MESSAGE_ERROR=Error MESSAGE_PATH=Path MESSAGE_EXECUTABLES=Executable files MESSAGE_ALL_FILES=All files + +MENU_EDIT_COPY=&Copy +MENU_EDIT_PASTE=&Paste +MENU_EDIT_CUT=Cu&t +MENU_EDIT_UNDO=&Undo +MENU_EDIT_REDO=&Redo diff --git a/views/res/i18n/std_ru.ini b/views/res/i18n/std_ru.ini index 2ecc20f1..24d8012e 100644 --- a/views/res/i18n/std_ru.ini +++ b/views/res/i18n/std_ru.ini @@ -52,3 +52,9 @@ MESSAGE_ERROR=Ошибка MESSAGE_PATH=Путь MESSAGE_EXECUTABLES=Исполняемые файлы MESSAGE_ALL_FILES=Все файлы + +MENU_EDIT_COPY=&Копировать +MENU_EDIT_PASTE=&Вставить +MENU_EDIT_CUT=Вырезать +MENU_EDIT_UNDO=&Отмена +MENU_EDIT_REDO=&Повторить