-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessibility of SDRangel for screen reader users #1672
Comments
Which SDR device is this with and what OS? I just tried with the RTL SDR device on Windows, and I can tab to the centre frequency control and enter a frequency using digit keys on the keyboad OK (and use left/right cursor keys to move which digit to change - an up/down to increase or decrease current digit which is underlined).
Correct. |
Thanks for the reply. I'll try again with a radio live on air, this was just testing with IQ files, as I'm waiting for an antenna to come in to put my SDR on air. I'll try adjusting the frequency with the demodulator, even so, the screen reader doesn't announce which digit is being adjusted, as far as I know. Will test more and let you know. |
Update. this works a treat! At least in terms of adjusting frequency while playing back recorded IQ files. However, as previously noted, the screen reader gives no indication of which digit is being adjusted, or even what the frequency is when you land on the control. This seems to apply no matter where this control shows up. Center frequency, offset frequency, or in the spectrum markers dialog. |
…screen readers. For f4exb#1672
With this patch, #1675, I've added some accessibility support for the ValueDial widgets (used for centre frequency and frequency offset), so screen readers should be able to say what the frequency is when the widget gets focus and when the value is adjusted. Tested with Windows Narrator. Note that while testing this, I noticed that QDials don't seem to work (no value is read) - this appears to be a Qt bug, rather than SDRangel: https://bugreports.qt.io/browse/QTBUG-86038 |
Thank you! First, for caring and taking the time to patch this (I'm setting up dev tools now to test this), and second, for knowing what needed to be looked into. I only had a vague idea of knowing that something would need to be done to tell QT about the custom control for the accessibility layer. |
Thanks for working on this! For taking the time and caring, and also knowing where to look to make changes at the accessibility level. Now installing dev tools and will test the patch. |
Ok, reopened this issue for further discussion. I'm still a little noob at github sometimes, even though I've got my own repositories on here! dough! |
Had no idea to be honest! One thing I did discover while looking at this, that you might be able to help improve, is the name & description the screen reader gives when any widget gets focus. All of the GUI's have a .ui file that you can load in Qt Creator. When a widget is selected, two of the properties listed are:
These are all currently empty. It might help filling some of these in, to something you find more useful, as often the tool tips are used instead, which can be a little verbose (Great for tool tips, but possibly not ideal for this). |
Good idea! Although a lot are just fine as is, but this is good to know. Related, the latest QT installer is wanting to give me version 6.5, is this ok, or should I try track down the older 5.15.2 version you mention? Might be worth seeing if accessibility bugs like the one you found for QDial is fixed. although I know going from one major version to another can be a pain in the ... |
I wouldn't recommend Qt 6.5 for now - it doesn't have all the functionality of 5.x. You should be able to install 5.12.2 from the same installer. |
Got it! Had to poke around in the custom settings. Let the show continue. :) |
Status update. I'm impressed! The accessibility patch is working as advertised, I can navigate and read the frequency values as they change. The next tweak to make is to announce the selected digit (or plus/minus sign for ValueDialZ widgets), as the left and right cursor keys are used. I'll also give QT Creator a look, but often these large IDE type programs aren't very accessible for us. Another simple tweak that can be made for a lot of controls is to add shortcut keys. For example, the "open" button in the file device window could have O as its shortcut. You can simply add an & sign in front of the letter that you want for the shortcut on the button's text. |
Hello. First, I'd like to say I'm fairly new to the world of SdR, but loving it so far. as a long-time radio enthusiast.
I've also been on the hunt for an accessible and usable SDR software sollution that's updated, and this is the most promising so far on all counts. However, I've noticed some difficulties, but first, I have to congratulate you on the following.
Now, for the improvements that could be made.
In summary, the accessibility of the program for blind/visually impaired users using a screen reader is very promising, although some tweaks could be made. My knowledge of c++ is limited, but I can hopefully offer pointers on how to make the program even more accessible using the existing QT framework, or, create an alternative interface using the web API, which is also very impressive!
The text was updated successfully, but these errors were encountered: