move observable to minigui core

This commit is contained in:
Adam D. Ruppe 2021-11-27 22:20:32 -05:00
parent 234da9fe86
commit cc765ced2d
1 changed files with 3 additions and 39 deletions

View File

@ -14,45 +14,6 @@ version(Windows)
version=wv2;
class StateChanged(alias field) : Event {
enum EventString = __traits(identifier, __traits(parent, field)) ~ "." ~ __traits(identifier, field) ~ ":change";
override bool cancelable() const { return false; }
this(Widget target, typeof(field) newValue) {
this.newValue = newValue;
super(EventString, target);
}
typeof(field) newValue;
}
void addWhenTriggered(Widget w, void delegate() dg) {
w.addEventListener("triggered", dg);
}
mixin template Observable(T, string name) {
private T backing;
mixin(q{
void } ~ name ~ q{_changed (void delegate(T) dg) {
this.addEventListener((StateChanged!this_thing ev) {
dg(ev.newValue);
});
}
@property T } ~ name ~ q{ () {
return backing;
}
@property void } ~ name ~ q{ (T t) {
backing = t;
auto event = new StateChanged!this_thing(this, t);
event.dispatch();
}
});
mixin("private alias this_thing = " ~ name ~ ";");
}
/+
SPA mode: put favicon on top level window, no other user controls at top level, links to different domains always open in new window.
+/
@ -143,6 +104,9 @@ class WebViewWidget_WV2 : WebViewWidgetBase {
return S_OK;
});
// add_HistoryChanged
// that's where CanGoBack and CanGoForward can be rechecked.
RC!ICoreWebView2Settings Settings = webview_window.Settings;
Settings.IsScriptEnabled = TRUE;
Settings.AreDefaultScriptDialogsEnabled = TRUE;