Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-16 Thread AudioGames . net Forum — Developers room : chrisnorman7 via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility @4Are you using a mac? I'm sure list view works under windows with style=wx.LC_REPORT, but haven't tried it in ages. URL: https://forum.audiogames.net/post/599200/#p599200 -- Audiogames-reflector mailing list Audiogames-reflector

Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-16 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility @5Hmm, a less simple way could be to capture one of the events emitted when a column is hovered or selected and push it to the screen reader manually with something like Tolk. Maybe something like EVT_LIST_ITEM_FOCUSED

Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-15 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility I mean you could go consult the NVDA source code to find out what they use for that.  It's also possible WX did actually break this since NVDA's version.  I doubt NVDA is doing anything super special and custom, and is itself using WX

Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-15 Thread AudioGames . net Forum — Developers room : vlajna95 via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility @2 In fact, the problem is that I need the column names to be spoken on hover, because a click on the column will sort the list by that column, so the status bar probably wouldn't help here. @3 @4 wx.LC_REPORT is actually the style I'm

Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-13 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility Report  wouldn’t work, either. I tried URL: https://forum.audiogames.net/post/598147/#p598147 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman

Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-13 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility Reeport  wouldn’t work, either. I tried URL: https://forum.audiogames.net/post/598147/#p598147 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman

Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-12 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility Quickly looking at the docs, you may need to set the style to wx.LC_REPORT.  It's been too long since I've done this for me to remember how. URL: https://forum.audiogames.net/post/597996/#p597996 -- Audiogames-reflector mailing

Re: wxPython ListCtrl and CalendarCtrl accessibility

2020-12-12 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: wxPython ListCtrl and CalendarCtrl accessibility WxPython is known for these little quirks in its accessibility. In some cases its the help text with things like certain buttons or functions that catch with screen readers, but it doesn't seem like there may be much

wxPython ListCtrl and CalendarCtrl accessibility

2020-12-12 Thread AudioGames . net Forum — Developers room : vlajna95 via Audiogames-reflector
wxPython ListCtrl and CalendarCtrl accessibility Hello, I have two questions about wxPython widgets and their accessibility. 1. I'm making an app which has a ListCtrl with reminders as one of the widgets, and I can't make the column headers text to be spoken when I hover the column headers