-
-
Notifications
You must be signed in to change notification settings - Fork 636
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
Pass key through command #4
Labels
Milestone
Comments
Comment 1 by jteh on 2007-04-20 04:13 |
Comment 2 by aleksey_s on 2008-04-14 10:06 |
This was referenced Nov 10, 2015
LeonarddeR
pushed a commit
to LeonarddeR/nvda
that referenced
this issue
Aug 15, 2024
Add IAccessible::value to vbuf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reported by jteh on 2007-04-20 01:34
Sometimes, one needs to pass a key through to an application which is an NVDA command or which NVDA intercepts in some way. In these cases, it would be useful to have a command which would bypass NVDA's keyboard handler for the next key press. This would be similar to the JAWSKey+3 command in JAWS.
A decision needs to be made as to how NVDA determines that a key press is complete. The method used by JAWS is to wait for all keys pressed after the bypass command to be released. This actually means that, for example, holding control and continually tapping the right arrow will bypass all presses until control is released. This could be implemented by maintaining a set of keys which have received key down events, removing each key in the key up event and disabling bypass mode once the set is empty. Another alternative is to implement some sort of key bypass lock, but this would require a special key combination to release the lock. unfortunately, it is impossible to know whether any given combination will be used by some other application, so this is not really a good idea.
The text was updated successfully, but these errors were encountered: