diff options
author | Martin Scarratt <mmmm@rockbox.org> | 2006-09-18 10:06:03 +0000 |
---|---|---|
committer | Martin Scarratt <mmmm@rockbox.org> | 2006-09-18 10:06:03 +0000 |
commit | 7ef47ed87614d6100b491b2c0eb9f75d1fdc1f01 (patch) | |
tree | 6367eca3de5fcb0bbe165026b5658ef391b62fb7 /apps/recorder/icons.h | |
parent | 28546a6530f97a9f58937731ad477246a6baaa32 (diff) |
Recording countdown timer: set timer in recording settings screen (max 1 week countdown), start/pause timer in recording screen by pressing the pause button. If you have a separate record button then this will override the timer and start to record. Icon at bottom right of screen indicates timer is ticking. If you are in the recording screen when the countdown is over, recording will start automatically, if not then the icon will flash to indicate you should return to the recording screen to begin recording.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10990 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/icons.h')
-rw-r--r-- | apps/recorder/icons.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index b4310aa90a..c68b281852 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -44,6 +44,12 @@ enum icons_5x8 { Icon5x8Last }; +enum icons_7x7 { + Icon_Timer, + Icon_Blank, + Icon7x7Last +}; + enum icons_6x8 { Icon_Audio, Icon_Folder, @@ -117,6 +123,7 @@ enum icons_18x8 { #endif extern const unsigned char bitmap_icons_5x8[Icon5x8Last][5]; +extern const unsigned char bitmap_icons_7x7[Icon7x7Last][7]; extern const unsigned char bitmap_icons_6x8[Icon6x8Last][6]; extern const unsigned char bitmap_icons_7x8[Icon7x8Last][7]; #if CONFIG_CODEC == SWCODEC |