summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Peskett <rockbox@peskett.co.uk>2012-03-29 07:58:31 +0100
committerNick Peskett <rockbox@peskett.co.uk>2012-03-29 09:01:33 +0200
commit10d8717e9460eca1fe76e4897f94fb544f25e197 (patch)
tree5763785c79a6b3a32323f9783bc22f9f0983c2bf
parent0e4a29811bda742062e126db5b8572459f511739 (diff)
downloadrockbox-10d8717e9460eca1fe76e4897f94fb544f25e197.zip
rockbox-10d8717e9460eca1fe76e4897f94fb544f25e197.tar.gz
rockbox-10d8717e9460eca1fe76e4897f94fb544f25e197.tar.bz2
rockbox-10d8717e9460eca1fe76e4897f94fb544f25e197.tar.xz
Split sleep timer activation and default duration setting.
Where before there was a single sleep timer menu option which handled initiating/ cancelling a sleep timer as well as setting the default duration, now there is one menu option to either start or cancel a sleep timer and another to set the default duration that will be used for future sleep timers. Change-Id: Ibea3711ec6406845ff5d0c0568fe5d1739eb8deb Reviewed-on: http://gerrit.rockbox.org/201 Reviewed-by: Nick Peskett <rockbox@peskett.co.uk>
-rw-r--r--apps/lang/english.lang16
-rw-r--r--apps/menus/settings_menu.c96
-rw-r--r--manual/configure_rockbox/startup_shutdown_options.tex22
3 files changed, 81 insertions, 53 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index e1f6889..cd575e9 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -12863,7 +12863,7 @@
</phrase>
<phrase>
id: LANG_SLEEP_TIMER_DURATION
- desc: default sleep timer duration in minutes (unused in UI)
+ desc: default sleep timer duration in minutes
user: core
<source>
*: "Default Sleep Timer Duration"
@@ -13024,3 +13024,17 @@
quickscreen: "Use Shortcuts Menu Instead of Quick Screen"
</voice>
</phrase>
+<phrase>
+ id: LANG_SLEEP_TIMER_START_CURRENT
+ desc: shown when a sleep timer isn't running
+ user: core
+ <source>
+ *: "Start Sleep Timer"
+ </source>
+ <dest>
+ *: "Start Sleep Timer"
+ </dest>
+ <voice>
+ *: "Start Sleep Timer"
+ </voice>
+</phrase>
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c
index 0e3e861..9cdff01 100644
--- a/apps/menus/settings_menu.c
+++ b/apps/menus/settings_menu.c
@@ -375,29 +375,13 @@ const char* sleep_timer_formatter(char* buffer, size_t buffer_size,
}
}
-static void sleep_timer_set(int minutes)
-{
- if (minutes)
- global_settings.sleeptimer_duration = minutes;
- set_sleep_timer(minutes * 60);
-}
-
-static int sleep_timer(void)
-{
- int minutes = global_settings.sleeptimer_duration;
- if (get_sleep_timer())
- sleep_timer_set(0);
- else
- set_int(str(LANG_SLEEP_TIMER), "", UNIT_MIN, &minutes,
- &sleep_timer_set, 5, 0, 300, sleep_timer_formatter);
- return 0;
-}
-
static int seconds_to_min(int secs)
{
return (secs + 10) / 60; /* round up for 50+ seconds */
}
+/* A string representation of either whether a sleep timer will be started or
+ canceled, and how long it will be or how long is remaining in brackets */
static char* sleep_timer_getname(int selected_item, void * data, char *buffer)
{
(void)selected_item;
@@ -405,16 +389,12 @@ static char* sleep_timer_getname(int selected_item, void * data, char *buffer)
int sec = get_sleep_timer();
char timer_buf[10];
/* we have no sprintf, so MAX_PATH is a guess */
- if (sec > 0)
- { /* show cancel and countdown if running */
- snprintf(buffer, MAX_PATH, "%s (%s)",
- str(LANG_SLEEP_TIMER_CANCEL_CURRENT),
- sleep_timer_formatter(timer_buf, sizeof(timer_buf),
- seconds_to_min(sec), NULL));
- }
- else
- snprintf(buffer, MAX_PATH, "%s", str(LANG_SLEEP_TIMER));
-
+ snprintf(buffer, MAX_PATH, "%s (%s)",
+ str(sec ? LANG_SLEEP_TIMER_CANCEL_CURRENT
+ : LANG_SLEEP_TIMER_START_CURRENT),
+ sleep_timer_formatter(timer_buf, sizeof(timer_buf),
+ sec ? seconds_to_min(sec)
+ : global_settings.sleeptimer_duration, NULL));
return buffer;
}
@@ -423,27 +403,54 @@ static int sleep_timer_voice(int selected_item, void*data)
(void)selected_item;
(void)data;
int seconds = get_sleep_timer();
- if (seconds > 0)
+ long talk_ids[] = {
+ seconds ? LANG_SLEEP_TIMER_CANCEL_CURRENT
+ : LANG_SLEEP_TIMER_START_CURRENT,
+ VOICE_PAUSE,
+ (seconds ? seconds_to_min(seconds)
+ : global_settings.sleeptimer_duration) | UNIT_MIN << UNIT_SHIFT,
+ TALK_FINAL_ID
+ };
+ talk_idarray(talk_ids, true);
+ return 0;
+}
+
+/* If a sleep timer is running, cancel it, otherwise start one */
+static int toggle_sleeptimer(void)
+{
+ set_sleep_timer(get_sleep_timer() ? 0
+ : global_settings.sleeptimer_duration * 60);
+ return 0;
+}
+
+/* Handle restarting a current sleep timer to the newly set default
+ duration */
+static int sleeptimer_duration_cb(int action,
+ const struct menu_item_ex *this_item)
+{
+ (void)this_item;
+ static int initial_duration;
+ switch (action)
{
- long talk_ids[] = {
- LANG_SLEEP_TIMER_CANCEL_CURRENT,
- VOICE_PAUSE,
- seconds_to_min(seconds) | UNIT_MIN << UNIT_SHIFT,
- TALK_FINAL_ID
- };
- talk_idarray(talk_ids, true);
+ case ACTION_ENTER_MENUITEM:
+ initial_duration = global_settings.sleeptimer_duration;
+ break;
+ case ACTION_EXIT_MENUITEM:
+ if (initial_duration != global_settings.sleeptimer_duration
+ && get_sleep_timer())
+ set_sleep_timer(global_settings.sleeptimer_duration * 60);
}
- else
- talk_id(LANG_SLEEP_TIMER, true);
- return 0;
+ return action;
}
MENUITEM_SETTING(start_screen, &global_settings.start_in_screen, NULL);
MENUITEM_SETTING(poweroff, &global_settings.poweroff, NULL);
-MENUITEM_FUNCTION_DYNTEXT(sleep_timer_call, 0, sleep_timer, NULL,
- sleep_timer_getname, sleep_timer_voice, NULL, NULL,
- Icon_Menu_setting);
- /* make it look like a setting to the user */
+MENUITEM_FUNCTION_DYNTEXT(sleeptimer_toggle, 0, toggle_sleeptimer, NULL,
+ sleep_timer_getname, sleep_timer_voice, NULL,
+ NULL, Icon_NOICON);
+MENUITEM_SETTING(sleeptimer_duration,
+ &global_settings.sleeptimer_duration,
+ sleeptimer_duration_cb);
MENUITEM_SETTING(sleeptimer_on_startup,
&global_settings.sleeptimer_on_startup, NULL);
MENUITEM_SETTING(keypress_restarts_sleeptimer,
@@ -453,7 +460,8 @@ MAKE_MENU(startup_shutdown_menu, ID2P(LANG_STARTUP_SHUTDOWN),
0, Icon_System_menu,
&start_screen,
&poweroff,
- &sleep_timer_call,
+ &sleeptimer_toggle,
+ &sleeptimer_duration,
&sleeptimer_on_startup,
&keypress_restarts_sleeptimer
);
diff --git a/manual/configure_rockbox/startup_shutdown_options.tex b/manual/configure_rockbox/startup_shutdown_options.tex
index ef84358..20dd213 100644
--- a/manual/configure_rockbox/startup_shutdown_options.tex
+++ b/manual/configure_rockbox/startup_shutdown_options.tex
@@ -43,14 +43,20 @@ are run at startup, or initiate a shutdown when conditions are met.
The \setting{Sleep Timer} powers off your \dap{} after a given time, whether
playing or not.
\begin{description}
- \item[Sleep Timer:]
- Shown when the \setting{Sleep Timer} is inactive, it can be set from
- \setting{Off} to 5 hours in 5 minute steps.
- While the \setting{Sleep Timer} is reset on boot, the value selected is
- retained and will be used as the default from then on.
- \item[Cancel Sleep Timer (h:mm):]
- Shown when the \setting{Sleep Timer} is active, this option disables the
- current \setting{Sleep Timer}.
+ \item[Start Sleep Timer (\emph{duration}):]
+ Shown when the \setting{Sleep Timer} is inactive, this option will
+ initiate a \setting{Sleep Timer} with the duration shown in brackets.
+ \item[Cancel Sleep Timer (\emph{remaining}):]
+ Shown when the \setting{Sleep Timer} is active, this option will cancel
+ the current \setting{Sleep Timer}.\\
+ The time remaining before completion is shown in brackets.
+ \item[Default Sleep Timer Duration:]
+ The default number of minutes a new \setting{Sleep Timer} will run
+ for.\\
+ The values range from 5 minutes to 5 hours in 5 minute steps.\\
+ If a timer is currently active, the timer's duration will be set to the
+ newly entered value.\\
+ The value set is persistent, see \reference{ref:config_file_options}.
\item[Start Sleep Timer On Boot:]
If set, a \setting{Sleep Timer} will be initiated when the device
starts.