2017-08-29 08:33:14

I'm developing a simple text editor with wxPython phoenix, in python 3.6. But this editor needs to support headings, tables, lists, etc...
RichTextCtrl can do this. But these features are not accessible for screen readers. I thinking about develop an interface to screen readers in order to do it accesible. For windows, I think to solve it with a COM interface. it implies that I'll need to develop some scripts for NVDA and jaws.
but I don't know if its the better way of solve it. Maybe another protocol, like IA2, could solve it without develop plug-ins from screen reader side and the same implementation for other platforms?
i don't know anything about IA2, even I don't know if I can use IA2 with wxPython.
I could considerate another GUI framework, even another language that supports easy script implementation in the app for user side, but this framework needs to be cross platform.
Thanks in advance.