This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#8959 - Quick voice some status info from quickscreen
Attached to Project:
Rockbox
Opened by Stephane Doyon (sdoyon) - Sunday, 04 May 2008, 17:55 GMT+2
Last edited by Jonathan Gordon (jdgordon) - Wednesday, 11 January 2012, 13:56 GMT+2
Opened by Stephane Doyon (sdoyon) - Sunday, 04 May 2008, 17:55 GMT+2
Last edited by Jonathan Gordon (jdgordon) - Wednesday, 11 January 2012, 13:56 GMT+2
|
DetailsThe two most important items from the status bar that blind users are
missing out on are the time (clock) and battery level. These can be spoken from the Rockbox info menu, but that requires far too many keypresses. This patch adds an action to speak the time on SELECT and the battery level on LONG SELECT from within the quickscreen (and it also exits the quickscreen automatically). |
This task depends upon
Closed by Jonathan Gordon (jdgordon)
Wednesday, 11 January 2012, 13:56 GMT+2
Reason for closing: Rejected
Additional comments about closing: use the shortcuts menu for this now
Wednesday, 11 January 2012, 13:56 GMT+2
Reason for closing: Rejected
Additional comments about closing: use the shortcuts menu for this now
good work! but i found a bug: when you are in the quick screen, if you use right button it says time clock and closes quickscreen instead to change repeat mode value.
greetings
>good work! but i found a bug: when you are in the quick screen, if you
>use right button it says time clock and closes quickscreen instead to
>change repeat mode value.
Oh... I had tested on X5. You have an e200 I believe and I hadn't tried
it yet. Yes I see the keymaps have QS_RIGHT on release and OK on RIGHT
press... Ah well I thought I could get away with not modifying all the
15-20 keymaps, at least for the first prototype for this idea, by reusing
the standard context actions... But it seems that was too much of a
shortcut.
Sorry about that, I'll fix. There may be several days delay as I'll
probably be off the net for a week or so.
Thanks for trying this out.
1. ACTION_QS_VOLUP is never called on the h300 (from what I can tell): I grepped your patch and the keymap file with your patch applied. I also did a quick test on the sim. So was the problem just that there was not enough buttons? Or could we me long up do volup and long down do voldown? Or is this a messy approach, I think it would be...
2.
+bool gui_quickscreen_do_quickinfo(int button) +{ + if(!global_settings.talk_menu) + return false; + switch(button) {
Does the above code make select and long select (so time and battery level) be available if talk_menu is enabled. Sorry about no line breaks in the code dunno whats going on with brltty's cut and paste...
Thanks.
>So was the problem just that there
>was not enough buttons?
yep.
>Or could we me long up do volup and long down
>do voldown? Or is this a messy approach, I think it would be...
It wouldn't work well. And those are actually already mapped.
>Does the above code make select and long select (so time and battery
>level) be available if talk_menu is enabled.
Erm... If I understand the question correctly: yes.
A side effect being that SELECT won't take you out of the quickscreen
if talking menus are not enabled.
>>Does the above code make select and long select (so time and battery
>>level) be available if talk_menu is enabled.
>Erm... If I understand the question correctly: yes.
So basically if talk_menu is off select (long and short) will do
nothing?
>A side effect being that SELECT won't take you out of the quickscreen
>if talking menus are not enabled.
Yes, but you could always just hit menu again (AB) on h300...
Nice patch though.