mirror of https://github.com/adamdruppe/arsd.git
little things
This commit is contained in:
parent
832367990c
commit
4cf16e9248
3
dom.d
3
dom.d
|
@ -1,4 +1,5 @@
|
||||||
// FIXME: add classList
|
// 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: 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: 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.
|
// 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;
|
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.
|
/// returns this so it can be chained.
|
||||||
ElementCollection opDispatch(string name, T...)(T t) {
|
ElementCollection opDispatch(string name, T...)(T t) {
|
||||||
foreach(e; elements) {
|
foreach(e; elements) {
|
||||||
|
|
|
@ -5193,8 +5193,7 @@ class Checkbox : MouseActivatedWidget {
|
||||||
event.dispatch();
|
event.dispatch();
|
||||||
|
|
||||||
redraw();
|
redraw();
|
||||||
};
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Adds empty space to a layout.
|
/// Adds empty space to a layout.
|
||||||
|
@ -6900,7 +6899,7 @@ class ObjectInspectionWindowImpl(T) : ObjectInspectionWindow {
|
||||||
foreach(k, v; updateMemberDelegates)
|
foreach(k, v; updateMemberDelegates)
|
||||||
v();
|
v();
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
Creates a dialog based on a data structure.
|
Creates a dialog based on a data structure.
|
||||||
|
|
|
@ -62,6 +62,9 @@
|
||||||
+/
|
+/
|
||||||
module arsd.terminal;
|
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)
|
$(H3 Get Line)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue