de8fbf00a8
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1582 a1c6a512-1295-4272-9138-f99709370657
121 lines
3.2 KiB
C
121 lines
3.2 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2002 Robert Hak
|
|
*
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "lcd.h"
|
|
#include "menu.h"
|
|
#include "mpeg.h"
|
|
#include "button.h"
|
|
#include "kernel.h"
|
|
#include "sprintf.h"
|
|
|
|
#include "settings.h"
|
|
#include "settings_menu.h"
|
|
#include "backlight.h"
|
|
#include "playlist.h" /* for playlist_shuffle */
|
|
#include "powermgmt.h"
|
|
|
|
static void shuffle(void)
|
|
{
|
|
set_bool( "[Shuffle]", &global_settings.playlist_shuffle );
|
|
}
|
|
|
|
static void mp3_filter(void)
|
|
{
|
|
set_bool( "[MP3/M3U filter]", &global_settings.mp3filter );
|
|
}
|
|
|
|
static void sort_case(void)
|
|
{
|
|
set_bool( "[Sort case sensitive]", &global_settings.sort_case );
|
|
}
|
|
|
|
static void backlight_timer(void)
|
|
{
|
|
set_int( "[Backlight]", "s", &global_settings.backlight,
|
|
backlight_time, 1, 0, 60 );
|
|
backlight_on();
|
|
}
|
|
|
|
static void scroll_speed(void)
|
|
{
|
|
set_int("Scroll speed indicator...", "", &global_settings.scroll_speed,
|
|
&lcd_scroll_speed, 1, 1, 20 );
|
|
}
|
|
|
|
static void wps_set(void)
|
|
{
|
|
char* names[] = { "Id3 ", "File ", "Parse" };
|
|
set_option("[WPS display]", &global_settings.wps_display, names, 3 );
|
|
}
|
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
|
static void deep_discharge(void)
|
|
{
|
|
set_bool( "[Deep discharge]", &global_settings.discharge );
|
|
charge_restart_level = global_settings.discharge ? CHARGE_RESTART_LO : CHARGE_RESTART_HI;
|
|
}
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
static void statusbar(void)
|
|
{
|
|
set_bool( "[Show status bar]", &global_settings.statusbar );
|
|
}
|
|
#endif
|
|
|
|
void settings_menu(void)
|
|
{
|
|
int m;
|
|
struct menu_items items[] = {
|
|
{ "Shuffle", shuffle },
|
|
{ "MP3/M3U filter", mp3_filter },
|
|
{ "Sort mode", sort_case },
|
|
{ "Backlight Timer", backlight_timer },
|
|
{ "Scroll speed", scroll_speed },
|
|
{ "While Playing", wps_set },
|
|
#ifdef HAVE_CHARGE_CTRL
|
|
{ "Deep discharge", deep_discharge },
|
|
#endif
|
|
#ifdef HAVE_LCD_BITMAP
|
|
{ "Status bar", statusbar },
|
|
#endif
|
|
};
|
|
bool old_shuffle = global_settings.playlist_shuffle;
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
menu_run(m);
|
|
menu_exit(m);
|
|
settings_save();
|
|
|
|
if (old_shuffle != global_settings.playlist_shuffle)
|
|
{
|
|
if (global_settings.playlist_shuffle)
|
|
{
|
|
randomise_playlist(current_tick);
|
|
}
|
|
else
|
|
{
|
|
sort_playlist();
|
|
}
|
|
}
|
|
}
|