1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Jonathan Gordon
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
32 #include "sound_menu.h"
33 #include "exported_menus.h"
40 #include "powermgmt.h"
41 #if CONFIG_CODEC == SWCODEC
47 #include "quickscreen.h"
52 /***********************************/
56 static void tagcache_rebuild_with_splash(void)
59 splash(HZ
*2, ID2P(LANG_TAGCACHE_FORCE_UPDATE_SPLASH
));
62 static void tagcache_update_with_splash(void)
65 splash(HZ
*2, ID2P(LANG_TAGCACHE_FORCE_UPDATE_SPLASH
));
68 #ifdef HAVE_TC_RAMCACHE
69 MENUITEM_SETTING(tagcache_ram
, &global_settings
.tagcache_ram
, NULL
);
71 MENUITEM_SETTING(tagcache_autoupdate
, &global_settings
.tagcache_autoupdate
, NULL
);
72 MENUITEM_FUNCTION(tc_init
, 0, ID2P(LANG_TAGCACHE_FORCE_UPDATE
),
73 (int(*)(void))tagcache_rebuild_with_splash
,
74 NULL
, NULL
, Icon_NOICON
);
75 MENUITEM_FUNCTION(tc_update
, 0, ID2P(LANG_TAGCACHE_UPDATE
),
76 (int(*)(void))tagcache_update_with_splash
,
77 NULL
, NULL
, Icon_NOICON
);
78 MENUITEM_SETTING(runtimedb
, &global_settings
.runtimedb
, NULL
);
79 MENUITEM_FUNCTION(tc_export
, 0, ID2P(LANG_TAGCACHE_EXPORT
),
80 (int(*)(void))tagtree_export
, NULL
,
82 MENUITEM_FUNCTION(tc_import
, 0, ID2P(LANG_TAGCACHE_IMPORT
),
83 (int(*)(void))tagtree_import
, NULL
,
85 MAKE_MENU(tagcache_menu
, ID2P(LANG_TAGCACHE
), 0, Icon_NOICON
,
86 #ifdef HAVE_TC_RAMCACHE
89 &tagcache_autoupdate
, &tc_init
, &tc_update
, &runtimedb
,
90 &tc_export
, &tc_import
);
91 #endif /* HAVE_TAGCACHE */
93 /***********************************/
95 /***********************************/
97 static int fileview_callback(int action
,const struct menu_item_ex
*this_item
);
98 MENUITEM_SETTING(sort_case
, &global_settings
.sort_case
, NULL
);
99 MENUITEM_SETTING(sort_dir
, &global_settings
.sort_dir
, fileview_callback
);
100 MENUITEM_SETTING(sort_file
, &global_settings
.sort_file
, fileview_callback
);
101 MENUITEM_SETTING(interpret_numbers
, &global_settings
.interpret_numbers
, fileview_callback
);
102 MENUITEM_SETTING(dirfilter
, &global_settings
.dirfilter
, NULL
);
103 MENUITEM_SETTING(show_filename_ext
, &global_settings
.show_filename_ext
, NULL
);
104 MENUITEM_SETTING(browse_current
, &global_settings
.browse_current
, NULL
);
105 #ifdef HAVE_LCD_BITMAP
106 MENUITEM_SETTING(show_path_in_browser
, &global_settings
.show_path_in_browser
, NULL
);
108 static int clear_start_directory(void)
110 strcpy(global_settings
.start_directory
, "/");
112 splash(HZ
, ID2P(LANG_RESET_DONE_CLEAR
));
115 MENUITEM_FUNCTION(clear_start_directory_item
, 0, ID2P(LANG_RESET_START_DIR
),
116 clear_start_directory
, NULL
, NULL
, Icon_file_view_menu
);
117 static int fileview_callback(int action
,const struct menu_item_ex
*this_item
)
120 int *variable
= this_item
->variable
;
123 case ACTION_ENTER_MENUITEM
: /* on entering an item */
126 case ACTION_EXIT_MENUITEM
: /* on exit */
127 if (*variable
!= oldval
)
128 reload_directory(); /* force reload if this has changed */
134 MAKE_MENU(file_menu
, ID2P(LANG_FILE
), 0, Icon_file_view_menu
,
135 &sort_case
, &sort_dir
, &sort_file
, &interpret_numbers
,
136 &dirfilter
, &show_filename_ext
, &browse_current
,
137 #ifdef HAVE_LCD_BITMAP
138 &show_path_in_browser
,
140 &clear_start_directory_item
143 /***********************************/
146 /***********************************/
150 #if BATTERY_CAPACITY_INC > 0
151 MENUITEM_SETTING(battery_capacity
, &global_settings
.battery_capacity
, NULL
);
153 #if BATTERY_TYPES_COUNT > 1
154 MENUITEM_SETTING(battery_type
, &global_settings
.battery_type
, NULL
);
156 #ifdef HAVE_USB_CHARGING_ENABLE
157 static int usbcharging_callback(int action
,const struct menu_item_ex
*this_item
)
162 case ACTION_EXIT_MENUITEM
: /* on exit */
163 usb_charging_enable(global_settings
.usb_charging
);
168 MENUITEM_SETTING(usb_charging
, &global_settings
.usb_charging
, usbcharging_callback
);
169 #endif /* HAVE_USB_CHARGING_ENABLE */
170 MAKE_MENU(battery_menu
, ID2P(LANG_BATTERY_MENU
), 0, Icon_NOICON
,
171 #if defined(BATTERY_CAPACITY_INC) && BATTERY_CAPACITY_INC > 0
174 #if BATTERY_TYPES_COUNT > 1
177 #ifdef HAVE_USB_CHARGING_ENABLE
182 #ifdef HAVE_DISK_STORAGE
183 MENUITEM_SETTING(disk_spindown
, &global_settings
.disk_spindown
, NULL
);
186 static int dircache_callback(int action
,const struct menu_item_ex
*this_item
)
191 case ACTION_EXIT_MENUITEM
: /* on exit */
192 if (global_settings
.dircache
&& !dircache_is_enabled())
194 if (dircache_build(0) < 0)
195 splash(HZ
*2, ID2P(LANG_PLEASE_REBOOT
));
197 else if (!global_settings
.dircache
&& dircache_is_enabled())
205 MENUITEM_SETTING(dircache
, &global_settings
.dircache
, dircache_callback
);
207 #if defined(HAVE_DIRCACHE) || defined(HAVE_DISK_STORAGE)
208 MAKE_MENU(disk_menu
, ID2P(LANG_DISK_MENU
), 0, Icon_NOICON
,
209 #ifdef HAVE_DISK_STORAGE
219 MENUITEM_SETTING(max_files_in_dir
, &global_settings
.max_files_in_dir
, NULL
);
220 MENUITEM_SETTING(max_files_in_playlist
, &global_settings
.max_files_in_playlist
, NULL
);
221 #ifdef HAVE_LCD_BITMAP
222 MENUITEM_SETTING(default_glyphs
, &global_settings
.glyphs_to_cache
, NULL
);
224 MAKE_MENU(limits_menu
, ID2P(LANG_LIMITS_MENU
), 0, Icon_NOICON
,
225 &max_files_in_dir
, &max_files_in_playlist
226 #ifdef HAVE_LCD_BITMAP
233 #if CONFIG_CODEC == SWCODEC
234 MENUITEM_SETTING(keyclick
, &global_settings
.keyclick
, NULL
);
235 MENUITEM_SETTING(keyclick_repeats
, &global_settings
.keyclick_repeats
, NULL
);
236 #ifdef HAVE_HARDWARE_CLICK
237 MENUITEM_SETTING(keyclick_hardware
, &global_settings
.keyclick_hardware
, NULL
);
238 MAKE_MENU(keyclick_menu
, ID2P(LANG_KEYCLICK
), 0, Icon_NOICON
,
239 &keyclick
, &keyclick_hardware
, &keyclick_repeats
);
241 MAKE_MENU(keyclick_menu
, ID2P(LANG_KEYCLICK
), 0, Icon_NOICON
,
242 &keyclick
, &keyclick_repeats
);
247 #if CONFIG_CODEC == MAS3507D
248 void dac_line_in(bool enable
);
249 static int linein_callback(int action
,const struct menu_item_ex
*this_item
)
254 case ACTION_EXIT_MENUITEM
: /* on exit */
256 dac_line_in(global_settings
.line_in
);
262 MENUITEM_SETTING(line_in
, &global_settings
.line_in
, linein_callback
);
265 MENUITEM_SETTING(car_adapter_mode
, &global_settings
.car_adapter_mode
, NULL
);
267 #ifdef IPOD_ACCESSORY_PROTOCOL
268 MENUITEM_SETTING(serial_bitrate
, &global_settings
.serial_bitrate
, NULL
);
270 #ifdef HAVE_ACCESSORY_SUPPLY
271 MENUITEM_SETTING(accessory_supply
, &global_settings
.accessory_supply
, NULL
);
273 #ifdef HAVE_LINEOUT_POWEROFF
274 MENUITEM_SETTING(lineout_onoff
, &global_settings
.lineout_active
, NULL
);
276 #ifdef USB_ENABLE_HID
277 MENUITEM_SETTING(usb_hid
, &global_settings
.usb_hid
, NULL
);
278 MENUITEM_SETTING(usb_keypad_mode
, &global_settings
.usb_keypad_mode
, NULL
);
280 #if defined(USB_ENABLE_STORAGE) && defined(HAVE_MULTIDRIVE)
281 MENUITEM_SETTING(usb_skip_first_drive
, &global_settings
.usb_skip_first_drive
, NULL
);
284 #ifdef HAVE_MORSE_INPUT
285 MENUITEM_SETTING(morse_input
, &global_settings
.morse_input
, NULL
);
288 #ifdef HAVE_BUTTON_LIGHT
289 MENUITEM_SETTING(buttonlight_timeout
, &global_settings
.buttonlight_timeout
, NULL
);
292 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
293 MENUITEM_SETTING(buttonlight_brightness
, &global_settings
.buttonlight_brightness
, NULL
);
296 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
297 MENUITEM_SETTING(touchpad_sensitivity
, &global_settings
.touchpad_sensitivity
, NULL
);
300 MAKE_MENU(system_menu
, ID2P(LANG_SYSTEM
),
302 #if (BATTERY_CAPACITY_INC > 0) || (BATTERY_TYPES_COUNT > 1)
305 #if defined(HAVE_DIRCACHE) || defined(HAVE_DISK_STORAGE)
309 #ifdef HAVE_MORSE_INPUT
312 #if CONFIG_CODEC == MAS3507D
318 #ifdef IPOD_ACCESSORY_PROTOCOL
321 #ifdef HAVE_ACCESSORY_SUPPLY
324 #ifdef HAVE_LINEOUT_POWEROFF
327 #ifdef HAVE_BUTTON_LIGHT
328 &buttonlight_timeout
,
330 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
331 &buttonlight_brightness
,
333 #if CONFIG_CODEC == SWCODEC
336 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
337 &touchpad_sensitivity
,
339 #ifdef USB_ENABLE_HID
343 #if defined(USB_ENABLE_STORAGE) && defined(HAVE_MULTIDRIVE)
344 &usb_skip_first_drive
,
349 /***********************************/
351 /***********************************/
352 /* STARTUP/SHUTDOWN MENU */
354 /* sleep timer option */
355 const char* sleep_timer_formatter(char* buffer
, size_t buffer_size
,
356 int value
, const char* unit
)
363 minutes
= value
- (hours
* 60);
364 snprintf(buffer
, buffer_size
, "%d:%02d", hours
, minutes
);
367 return str(LANG_OFF
);
371 static void sleep_timer_set(int minutes
)
374 global_settings
.sleeptimer_duration
= minutes
;
375 set_sleep_timer(minutes
* 60);
378 static int sleep_timer(void)
380 int minutes
= global_settings
.sleeptimer_duration
;
381 if (get_sleep_timer())
384 set_int(str(LANG_SLEEP_TIMER
), "", UNIT_MIN
, &minutes
,
385 &sleep_timer_set
, 5, 0, 300, sleep_timer_formatter
);
389 static int seconds_to_min(int secs
)
391 return (secs
+ 10) / 60; /* round up for 50+ seconds */
394 static char* sleep_timer_getname(int selected_item
, void * data
, char *buffer
)
398 int sec
= get_sleep_timer();
400 /* we have no sprintf, so MAX_PATH is a guess */
402 { /* show cancel and countdown if running */
403 snprintf(buffer
, MAX_PATH
, "%s (%s)",
404 str(LANG_SLEEP_TIMER_CANCEL_CURRENT
),
405 sleep_timer_formatter(timer_buf
, sizeof(timer_buf
),
406 seconds_to_min(sec
), NULL
));
409 snprintf(buffer
, MAX_PATH
, "%s", str(LANG_SLEEP_TIMER
));
414 static int sleep_timer_voice(int selected_item
, void*data
)
418 int seconds
= get_sleep_timer();
422 LANG_SLEEP_TIMER_CANCEL_CURRENT
,
424 seconds_to_min(seconds
) | UNIT_MIN
<< UNIT_SHIFT
,
427 talk_idarray(talk_ids
, true);
430 talk_id(LANG_SLEEP_TIMER
, true);
434 MENUITEM_SETTING(start_screen
, &global_settings
.start_in_screen
, NULL
);
435 MENUITEM_SETTING(poweroff
, &global_settings
.poweroff
, NULL
);
436 MENUITEM_FUNCTION_DYNTEXT(sleep_timer_call
, 0, sleep_timer
, NULL
,
437 sleep_timer_getname
, sleep_timer_voice
, NULL
, NULL
,
439 /* make it look like a setting to the user */
440 MENUITEM_SETTING(sleeptimer_on_startup
,
441 &global_settings
.sleeptimer_on_startup
, NULL
);
442 MENUITEM_SETTING(keypress_restarts_sleeptimer
,
443 &global_settings
.keypress_restarts_sleeptimer
, NULL
);
445 MAKE_MENU(startup_shutdown_menu
, ID2P(LANG_STARTUP_SHUTDOWN
),
450 &sleeptimer_on_startup
,
451 &keypress_restarts_sleeptimer
454 /* STARTUP/SHUTDOWN MENU */
455 /***********************************/
457 /***********************************/
459 static int bmark_callback(int action
,const struct menu_item_ex
*this_item
)
464 case ACTION_EXIT_MENUITEM
: /* on exit */
465 if(global_settings
.autocreatebookmark
== BOOKMARK_RECENT_ONLY_YES
||
466 global_settings
.autocreatebookmark
== BOOKMARK_RECENT_ONLY_ASK
)
468 if(global_settings
.usemrb
== BOOKMARK_NO
)
469 global_settings
.usemrb
= BOOKMARK_YES
;
476 MENUITEM_SETTING(autocreatebookmark
,
477 &global_settings
.autocreatebookmark
, bmark_callback
);
478 MENUITEM_SETTING(autoupdatebookmark
, &global_settings
.autoupdatebookmark
, NULL
);
479 MENUITEM_SETTING(autoloadbookmark
, &global_settings
.autoloadbookmark
, NULL
);
480 MENUITEM_SETTING(usemrb
, &global_settings
.usemrb
, NULL
);
481 MAKE_MENU(bookmark_settings_menu
, ID2P(LANG_BOOKMARK_SETTINGS
), 0,
483 &autocreatebookmark
, &autoupdatebookmark
, &autoloadbookmark
, &usemrb
);
485 /***********************************/
487 /***********************************/
488 /* AUTORESUME MENU */
490 #if CONFIG_CODEC == SWCODEC
492 static int autoresume_callback(int action
, const struct menu_item_ex
*this_item
)
496 if (action
== ACTION_EXIT_MENUITEM
/* on exit */
497 && global_settings
.autoresume_enable
498 && !tagcache_is_usable())
500 static const char *lines
[] = {ID2P(LANG_TAGCACHE_BUSY
),
501 ID2P(LANG_TAGCACHE_FORCE_UPDATE
)};
502 static const struct text_message message
= {lines
, 2};
504 if (gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_YES
)
505 tagcache_rebuild_with_splash();
510 static int autoresume_nexttrack_callback(int action
,
511 const struct menu_item_ex
*this_item
)
514 static int oldval
= 0;
517 case ACTION_ENTER_MENUITEM
:
518 oldval
= global_settings
.autoresume_automatic
;
520 case ACTION_EXIT_MENUITEM
:
521 if (global_settings
.autoresume_automatic
== AUTORESUME_NEXTTRACK_CUSTOM
522 && kbd_input ((char*) &global_settings
.autoresume_paths
,
525 global_settings
.autoresume_automatic
= oldval
;
531 MENUITEM_SETTING(autoresume_enable
, &global_settings
.autoresume_enable
,
532 autoresume_callback
);
533 MENUITEM_SETTING(autoresume_automatic
, &global_settings
.autoresume_automatic
,
534 autoresume_nexttrack_callback
);
536 MAKE_MENU(autoresume_menu
, ID2P(LANG_AUTORESUME
),
538 &autoresume_enable
, &autoresume_automatic
);
540 #endif /* CONFIG_CODEC == SWCODEC */
541 #endif /* HAVE_TAGCACHE */
542 /* AUTORESUME MENU */
543 /***********************************/
545 /***********************************/
547 static int talk_callback(int action
,const struct menu_item_ex
*this_item
);
548 MENUITEM_SETTING(talk_menu_item
, &global_settings
.talk_menu
, NULL
);
549 MENUITEM_SETTING(talk_dir_item
, &global_settings
.talk_dir
, NULL
);
550 MENUITEM_SETTING(talk_dir_clip_item
, &global_settings
.talk_dir_clip
, talk_callback
);
551 MENUITEM_SETTING(talk_file_item
, &global_settings
.talk_file
, NULL
);
552 MENUITEM_SETTING(talk_file_clip_item
, &global_settings
.talk_file_clip
, talk_callback
);
553 static int talk_callback(int action
,const struct menu_item_ex
*this_item
)
555 static int oldval
= 0;
558 case ACTION_ENTER_MENUITEM
:
559 oldval
= global_settings
.talk_file_clip
;
561 case ACTION_EXIT_MENUITEM
:
562 #ifdef HAVE_CROSSFADE
563 audio_set_crossfade(global_settings
.crossfade
);
565 if (this_item
== &talk_dir_clip_item
)
567 if (!oldval
&& global_settings
.talk_file_clip
)
569 /* force reload if newly talking thumbnails,
570 because the clip presence is cached only if enabled */
577 MENUITEM_SETTING(talk_filetype_item
, &global_settings
.talk_filetype
, NULL
);
578 MENUITEM_SETTING(talk_battery_level_item
,
579 &global_settings
.talk_battery_level
, NULL
);
580 MAKE_MENU(voice_settings_menu
, ID2P(LANG_VOICE
), 0, Icon_Voice
,
581 &talk_menu_item
, &talk_dir_item
, &talk_dir_clip_item
,
582 &talk_file_item
, &talk_file_clip_item
, &talk_filetype_item
,
583 &talk_battery_level_item
);
585 /***********************************/
588 /***********************************/
591 MENUITEM_SETTING(hotkey_wps_item
, &global_settings
.hotkey_wps
, NULL
);
592 MENUITEM_SETTING(hotkey_tree_item
, &global_settings
.hotkey_tree
, NULL
);
593 MAKE_MENU(hotkey_menu
, ID2P(LANG_HOTKEY
), 0, Icon_NOICON
,
594 &hotkey_wps_item
, &hotkey_tree_item
);
595 #endif /*have_hotkey */
597 /***********************************/
600 /***********************************/
603 static struct browse_folder_info langs
= { LANG_DIR
, SHOW_LNG
};
605 MENUITEM_FUNCTION(browse_langs
, MENU_FUNC_USEPARAM
, ID2P(LANG_LANGUAGE
),
606 browse_folder
, (void*)&langs
, NULL
, Icon_Language
);
608 MAKE_MENU(settings_menu_item
, ID2P(LANG_GENERAL_SETTINGS
), 0,
609 Icon_General_settings_menu
,
610 &playlist_settings
, &file_menu
,
614 &display_menu
, &system_menu
,
615 &startup_shutdown_menu
,
616 &bookmark_settings_menu
,
618 #if CONFIG_CODEC == SWCODEC
622 &browse_langs
, &voice_settings_menu
,
628 /***********************************/