From 8f9974479a111be2ac6ae164fda561ee1aa897ff Mon Sep 17 00:00:00 2001 From: "johan.forsberg" Date: Sun, 5 Nov 2023 01:14:30 +0100 Subject: [PATCH] update preview on delete or Ctrl+[S|V|Z] --- dub.json | 4 ++-- examples/dmledit/src/dmledit.d | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index a6b24fcb..ff67b48f 100644 --- a/dub.json +++ b/dub.json @@ -34,8 +34,8 @@ "dependencies": { "inilike": "~>1.2.2", "icontheme": "~>1.2.3", - "arsd-official:dom": "~>11.1.0", - "arsd-official:image_files": "~>11.1.0" + "arsd-official:dom": "11.2.3", + "arsd-official:image_files": "11.2.3" }, "subPackages": [ diff --git a/examples/dmledit/src/dmledit.d b/examples/dmledit/src/dmledit.d index e0019347..a2776327 100644 --- a/examples/dmledit/src/dmledit.d +++ b/examples/dmledit/src/dmledit.d @@ -468,6 +468,25 @@ class EditFrame : AppFrame _editor = new DMLSourceEdit(); _editor.text = SAMPLE_SOURCE_CODE; + _editor.keyEvent = delegate(Widget w, KeyEvent e) { + if (e.action == KeyAction.KeyUp) + { + if ((e.keyCode == KeyCode.DEL) + || (e.flags == KeyFlag.LControl && e.keyCode == KeyCode.KEY_S) + || (e.flags == KeyFlag.LControl && e.keyCode == KeyCode.KEY_V) + || (e.flags == KeyFlag.LControl && e.keyCode == KeyCode.KEY_Z)) + { + updatePreview(); + } + else + { + Log.d(e); + } + } + + return false; + }; + auto editorDockWin = new DockWindow("editor"); editorDockWin.layoutWidth = makePercentSize(50); editorDockWin.bodyWidget = _editor;