From 4cf16e92481314019b880c6d1b6a7a8633472884 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 6 Dec 2019 10:31:50 -0500 Subject: [PATCH] little things --- dom.d | 3 ++- minigui.d | 5 ++--- terminal.d | 3 +++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/dom.d b/dom.d index cf1d168..71b1b2d 100644 --- a/dom.d +++ b/dom.d @@ -1,4 +1,5 @@ // FIXME: add classList +// FIXME: xml namespace support??? // FIXME: add matchesSelector - standard name is `matches`. also `closest` walks up to find the parent that matches // FIXME: https://developer.mozilla.org/en-US/docs/Web/API/Element/insertAdjacentHTML // FIXME: appendChild should not fail if the thing already has a parent; it should just automatically remove it per standard. @@ -3544,7 +3545,7 @@ struct ElementCollection { return text; } - /// Forward method calls to each individual element of the collection + /// Forward method calls to each individual [Element|element] of the collection /// returns this so it can be chained. ElementCollection opDispatch(string name, T...)(T t) { foreach(e; elements) { diff --git a/minigui.d b/minigui.d index 5b7b2ea..740ace6 100644 --- a/minigui.d +++ b/minigui.d @@ -5193,8 +5193,7 @@ class Checkbox : MouseActivatedWidget { event.dispatch(); redraw(); - }; - + } } /// Adds empty space to a layout. @@ -6900,7 +6899,7 @@ class ObjectInspectionWindowImpl(T) : ObjectInspectionWindow { foreach(k, v; updateMemberDelegates) v(); } -}; +} /++ Creates a dialog based on a data structure. diff --git a/terminal.d b/terminal.d index e007c88..db367ea 100644 --- a/terminal.d +++ b/terminal.d @@ -62,6 +62,9 @@ +/ module arsd.terminal; +// FIXME: needs to support VT output on Windows too in certain situations +// FIXME: paste on Windows and alt+NNNN codes in getline function + /++ $(H3 Get Line)