Results 144 comments of Alex2772

Hi @DibyaXPP, AUI version `v7.0.0` was landed with examples doc page https://aui-framework.github.io/master/examples.html I'm interested in including your application samples. Please let me know if you need assistance.

Thank you for your detailed description. We'd take this into consideration. > There are not many cross-platform GUI As far as I know, Qt supports OLEACC.

https://github.com/qt/qt/blob/4.8/src/gui/kernel/qapplication_win.cpp `WM_GETOBJECT`

Hi @DibyaXPP, Thanks, it is a good example. I'd rather prefer to avoid dependencies and implement accessibility as AUI's feature. > feasibility of integrating it. There's no showstoppers from AUI...

> I won't mind volunteering I'm planning doing it by myself, but I may ask you some questions during designing as I'm looking at accessibility API from perspective of UI...

> make other application I'm not sure I can support non-AUI-based applications, since I'll quickly depend on AUI probably.

> Hello, AccessKit developer here. > > @Alex2772 If we had C++ bindings, would that make you reconsider implementing accessibility yourself? I'm asking because this is something we want to...

GTK has merged accessibility support with AccessKit: https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/8036 I'm still afraid of mixed-lang codebases but I shall admit that rustication is an unavoidable tendency.

(Offtop) Gtk recently [merged a PR](https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/7555) that introduces initial Android support. - There's a bundler script that generates Android Studio project, similar to `aui.buid.android.cmake` - Their implementation lack IME as...

I've created a sample Flutter project. The project generator made directories on a per-platform basis. Each directory contains platform-specific projects. ![Image](https://github.com/user-attachments/assets/0fc8156e-bfb2-43da-bc6d-81507cfab6f2) - Windows: a C++ CMake project with WinAPI -...