Arnold Loubriat
Arnold Loubriat
> I think we will have to update the widgets so that all accessible properties are set on the built-in element itself rather than the enclosing one This introduces a...
I'm trying to go with the approach described above to expose more kinds of widgets by checking the `TextInput::single_line` and `TextInput::input_type` properties in the AccessKit backend. This require updating some...
@tronical This idea also crossed my mind, but there is one point that I cannot solve. Ideally we'd want this new property to be replaced by appropriate property bindings at...
Nevermind, figured this out by myself: for each element referenced by this new property, the compiler will have to set all accessible properties on the referenced element that are set...
So I gave this a try but quickly ran into issues. What makes this more complicated is that `Element::is_binding_set` only considers bindings that are defined inside the element itself. To...
Your only option @sphw at the moment is to use window subclassing. We use it in AccessKit to return handles to COM interfaces in response to the `WM_GETOBJECT` message. You...