2002-06-24 21:39:48 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* 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>
|
2002-08-31 04:58:35 +00:00
|
|
|
|
2002-06-24 21:39:48 +00:00
|
|
|
#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 */
|
2002-08-22 15:47:30 +00:00
|
|
|
#include "fat.h" /* For dotfile settings */
|
2002-08-06 10:52:51 +00:00
|
|
|
#include "powermgmt.h"
|
2002-08-09 12:38:45 +00:00
|
|
|
#include "rtc.h"
|
2002-08-26 13:21:14 +00:00
|
|
|
#include "ata.h"
|
2002-09-18 14:08:05 +00:00
|
|
|
#include "lang.h"
|
2002-06-24 21:39:48 +00:00
|
|
|
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu show_hidden_files(void)
|
2002-08-22 15:47:30 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_bool_options( str(LANG_HIDDEN), &global_settings.show_hidden_files,
|
|
|
|
str(LANG_HIDDEN_SHOW), str(LANG_HIDDEN_HIDE) );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-08-22 15:47:30 +00:00
|
|
|
}
|
2002-08-13 11:10:11 +00:00
|
|
|
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu contrast(void)
|
2002-08-13 11:10:11 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_int( str(LANG_CONTRAST), "", &global_settings.contrast,
|
2002-08-13 11:10:11 +00:00
|
|
|
lcd_set_contrast, 1, 0, MAX_CONTRAST_SETTING );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-08-13 11:10:11 +00:00
|
|
|
}
|
|
|
|
|
2002-09-03 15:58:47 +00:00
|
|
|
#ifndef HAVE_RECORDER_KEYPAD
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu shuffle(void)
|
2002-06-24 21:39:48 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_bool( str(LANG_SHUFFLE), &global_settings.playlist_shuffle );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-06-27 01:08:11 +00:00
|
|
|
}
|
2002-09-03 15:58:47 +00:00
|
|
|
#endif
|
2002-06-24 21:39:48 +00:00
|
|
|
|
2002-09-18 10:13:09 +00:00
|
|
|
static Menu play_selected(void)
|
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_bool( str(LANG_PLAY_SELECTED), &global_settings.play_selected );
|
2002-09-18 10:13:09 +00:00
|
|
|
return MENU_OK;
|
|
|
|
}
|
|
|
|
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu mp3_filter(void)
|
2002-06-27 01:08:11 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_bool( str(LANG_MP3FILTER), &global_settings.mp3filter );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu sort_case(void)
|
2002-07-22 16:39:17 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_bool( str(LANG_SORT_CASE), &global_settings.sort_case );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-07-22 16:39:17 +00:00
|
|
|
}
|
|
|
|
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu resume(void)
|
2002-08-16 14:41:47 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
char* names[] = { str(LANG_OFF),
|
|
|
|
str(LANG_RESUME_SETTING_ASK),
|
|
|
|
str(LANG_ON) };
|
|
|
|
set_option( str(LANG_RESUME), &global_settings.resume, names, 3, NULL );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-08-16 14:41:47 +00:00
|
|
|
}
|
|
|
|
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu backlight_timer(void)
|
2002-06-24 21:39:48 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
char* names[] = { str(LANG_OFF), str(LANG_ON),
|
2002-08-15 13:56:06 +00:00
|
|
|
"1s ", "2s ", "3s ", "4s ", "5s ",
|
|
|
|
"6s ", "7s ", "8s ", "9s ", "10s",
|
|
|
|
"15s", "20s", "25s", "30s", "45s",
|
|
|
|
"60s", "90s"};
|
2002-09-18 14:08:05 +00:00
|
|
|
set_option(str(LANG_BACKLIGHT), &global_settings.backlight, names, 19,
|
|
|
|
backlight_time );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu scroll_speed(void)
|
2002-06-24 21:39:48 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_int(str(LANG_SCROLL), "", &global_settings.scroll_speed,
|
2002-09-05 04:47:24 +00:00
|
|
|
&lcd_scroll_speed, 1, 1, 30 );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
2002-08-06 10:52:51 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu deep_discharge(void)
|
2002-08-06 10:52:51 +00:00
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_bool( str(LANG_DISCHARGE), &global_settings.discharge );
|
2002-09-04 04:02:46 +00:00
|
|
|
charge_restart_level = global_settings.discharge ?
|
|
|
|
CHARGE_RESTART_LO : CHARGE_RESTART_HI;
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-08-06 10:52:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-09-21 14:21:31 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-08-23 12:32:52 +00:00
|
|
|
static Menu timedate_set(void)
|
2002-08-09 12:38:45 +00:00
|
|
|
{
|
2002-08-09 13:50:58 +00:00
|
|
|
int timedate[7]; /* hour,minute,second,year,month,day,dayofweek */
|
2002-08-09 12:38:45 +00:00
|
|
|
|
2002-09-21 14:21:31 +00:00
|
|
|
#ifdef HAVE_RTC
|
2002-08-09 12:38:45 +00:00
|
|
|
timedate[0] = rtc_read(0x03); /* hour */
|
|
|
|
timedate[1] = rtc_read(0x02); /* minute */
|
|
|
|
timedate[2] = rtc_read(0x01); /* second */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[3] = rtc_read(0x07); /* year */
|
2002-08-09 12:38:45 +00:00
|
|
|
timedate[4] = rtc_read(0x06); /* month */
|
2002-08-09 13:50:58 +00:00
|
|
|
timedate[5] = rtc_read(0x05); /* day */
|
2002-08-09 12:38:45 +00:00
|
|
|
/* day of week not read, calculated */
|
2002-09-04 04:02:46 +00:00
|
|
|
/* hour */
|
|
|
|
timedate[0] = ((timedate[0] & 0x30) >> 4) * 10 + (timedate[0] & 0x0f);
|
|
|
|
/* minute */
|
|
|
|
timedate[1] = ((timedate[1] & 0x70) >> 4) * 10 + (timedate[1] & 0x0f);
|
|
|
|
/* second */
|
|
|
|
timedate[2] = ((timedate[2] & 0x70) >> 4) * 10 + (timedate[2] & 0x0f);
|
|
|
|
/* year */
|
|
|
|
timedate[3] = ((timedate[3] & 0xf0) >> 4) * 10 + (timedate[3] & 0x0f);
|
|
|
|
/* month */
|
|
|
|
timedate[4] = ((timedate[4] & 0x10) >> 4) * 10 + (timedate[4] & 0x0f);
|
|
|
|
/* day */
|
|
|
|
timedate[5] = ((timedate[5] & 0x30) >> 4) * 10 + (timedate[5] & 0x0f);
|
2002-09-21 14:21:31 +00:00
|
|
|
#else /* SIMULATOR */
|
|
|
|
/* hour */
|
|
|
|
timedate[0] = 0;
|
|
|
|
/* minute */
|
|
|
|
timedate[1] = 0;
|
|
|
|
/* second */
|
|
|
|
timedate[2] = 0;
|
|
|
|
/* year */
|
|
|
|
timedate[3] = 0;
|
|
|
|
/* month */
|
|
|
|
timedate[4] = 1;
|
|
|
|
/* day */
|
|
|
|
timedate[5] = 1;
|
|
|
|
#endif
|
2002-08-09 12:38:45 +00:00
|
|
|
|
2002-09-18 14:08:05 +00:00
|
|
|
set_time(str(LANG_TIME),timedate);
|
2002-08-09 12:38:45 +00:00
|
|
|
|
2002-09-21 14:21:31 +00:00
|
|
|
#ifdef HAVE_RTC
|
2002-08-09 12:38:45 +00:00
|
|
|
if(timedate[0] != -1) {
|
2002-09-04 04:02:46 +00:00
|
|
|
/* hour */
|
|
|
|
timedate[0] = ((timedate[0]/10) << 4 | timedate[0]%10) & 0x3f;
|
|
|
|
/* minute */
|
|
|
|
timedate[1] = ((timedate[1]/10) << 4 | timedate[1]%10) & 0x7f;
|
|
|
|
/* second */
|
|
|
|
timedate[2] = ((timedate[2]/10) << 4 | timedate[2]%10) & 0x7f;
|
|
|
|
/* year */
|
|
|
|
timedate[3] = ((timedate[3]/10) << 4 | timedate[3]%10) & 0xff;
|
|
|
|
/* month */
|
|
|
|
timedate[4] = ((timedate[4]/10) << 4 | timedate[4]%10) & 0x1f;
|
|
|
|
/* day */
|
|
|
|
timedate[5] = ((timedate[5]/10) << 4 | timedate[5]%10) & 0x3f;
|
|
|
|
|
2002-09-18 14:08:05 +00:00
|
|
|
rtc_write(0x03, timedate[0] | (rtc_read(0x03) & 0xc0)); /* hour */
|
|
|
|
rtc_write(0x02, timedate[1] | (rtc_read(0x02) & 0x80)); /* minute */
|
|
|
|
rtc_write(0x01, timedate[2] | (rtc_read(0x01) & 0x80)); /* second */
|
|
|
|
rtc_write(0x07, timedate[3]); /* year */
|
|
|
|
rtc_write(0x06, timedate[4] | (rtc_read(0x06) & 0xe0)); /* month */
|
|
|
|
rtc_write(0x05, timedate[5] | (rtc_read(0x05) & 0xc0)); /* day */
|
|
|
|
rtc_write(0x04, timedate[6] | (rtc_read(0x04) & 0xf8)); /* dayofweek */
|
|
|
|
rtc_write(0x00, 0x00); /* 0.1 + 0.01 seconds */
|
2002-08-09 12:38:45 +00:00
|
|
|
}
|
2002-09-21 14:21:31 +00:00
|
|
|
#endif
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-08-09 12:38:45 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-08-26 13:21:14 +00:00
|
|
|
static Menu spindown(void)
|
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_int(str(LANG_SPINDOWN), "s", &global_settings.disk_spindown,
|
2002-09-04 01:51:09 +00:00
|
|
|
ata_spindown, 1, 3, 254 );
|
2002-08-23 12:32:52 +00:00
|
|
|
return MENU_OK;
|
2002-08-14 19:23:34 +00:00
|
|
|
}
|
|
|
|
|
2002-09-04 03:38:37 +00:00
|
|
|
static Menu ff_rewind_min_step(void)
|
|
|
|
{
|
2002-09-10 05:31:12 +00:00
|
|
|
char* names[] = { "1s", "2s", "3s", "4s",
|
|
|
|
"5s", "6s", "8s", "10s",
|
2002-09-04 03:38:37 +00:00
|
|
|
"15s", "20s", "25s", "30s",
|
|
|
|
"45s", "60s" };
|
2002-09-18 14:08:05 +00:00
|
|
|
set_option(str(LANG_FFRW_STEP), &global_settings.ff_rewind_min_step,
|
2002-09-10 05:31:12 +00:00
|
|
|
names, 14, NULL );
|
2002-09-04 03:38:37 +00:00
|
|
|
return MENU_OK;
|
|
|
|
}
|
|
|
|
|
2002-08-29 05:41:35 +00:00
|
|
|
static Menu ff_rewind_accel(void)
|
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
char* names[] = { str(LANG_OFF), "2x/1s", "2x/2s", "2x/3s",
|
2002-09-10 05:31:12 +00:00
|
|
|
"2x/4s", "2x/5s", "2x/6s", "2x/7s",
|
|
|
|
"2x/8s", "2x/9s", "2x/10s", "2x/11s",
|
2002-08-29 04:50:39 +00:00
|
|
|
"2x/12s", "2x/13s", "2x/14s", "2x/15s", };
|
2002-09-18 14:08:05 +00:00
|
|
|
set_option(str(LANG_FFRW_ACCEL), &global_settings.ff_rewind_accel,
|
2002-09-10 05:31:12 +00:00
|
|
|
names, 16, NULL );
|
2002-08-29 05:41:35 +00:00
|
|
|
return MENU_OK;
|
|
|
|
}
|
2002-08-28 19:34:07 +00:00
|
|
|
|
2002-09-09 14:25:39 +00:00
|
|
|
static Menu browse_current(void)
|
|
|
|
{
|
2002-09-18 14:08:05 +00:00
|
|
|
set_bool( str(LANG_FOLLOW), &global_settings.browse_current );
|
2002-09-09 14:25:39 +00:00
|
|
|
return MENU_OK;
|
|
|
|
}
|
|
|
|
|
2002-09-05 04:42:12 +00:00
|
|
|
Menu playback_settings_menu(void)
|
|
|
|
{
|
|
|
|
int m;
|
|
|
|
Menu result;
|
|
|
|
|
2002-06-24 21:39:48 +00:00
|
|
|
struct menu_items items[] = {
|
2002-09-03 15:58:47 +00:00
|
|
|
#ifndef HAVE_RECORDER_KEYPAD
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_SHUFFLE), shuffle },
|
2002-08-07 10:35:26 +00:00
|
|
|
#endif
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_PLAY_SELECTED), play_selected },
|
|
|
|
{ str(LANG_RESUME), resume },
|
|
|
|
{ str(LANG_FFRW_STEP), ff_rewind_min_step },
|
|
|
|
{ str(LANG_FFRW_ACCEL), ff_rewind_accel },
|
2002-06-24 21:39:48 +00:00
|
|
|
};
|
2002-09-18 14:08:05 +00:00
|
|
|
|
2002-08-02 13:20:03 +00:00
|
|
|
bool old_shuffle = global_settings.playlist_shuffle;
|
2002-06-24 21:39:48 +00:00
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
2002-08-23 12:32:52 +00:00
|
|
|
result = menu_run(m);
|
2002-06-24 21:39:48 +00:00
|
|
|
menu_exit(m);
|
2002-08-02 13:20:03 +00:00
|
|
|
|
|
|
|
if (old_shuffle != global_settings.playlist_shuffle)
|
|
|
|
{
|
|
|
|
if (global_settings.playlist_shuffle)
|
|
|
|
{
|
2002-08-06 13:10:25 +00:00
|
|
|
randomise_playlist(current_tick);
|
2002-08-02 13:20:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-08-26 08:25:52 +00:00
|
|
|
sort_playlist(true);
|
2002-08-02 13:20:03 +00:00
|
|
|
}
|
|
|
|
}
|
2002-08-23 12:32:52 +00:00
|
|
|
return result;
|
2002-06-24 21:39:48 +00:00
|
|
|
}
|
2002-09-05 04:42:12 +00:00
|
|
|
|
2002-09-07 12:28:46 +00:00
|
|
|
static Menu reset_settings(void)
|
2002-09-06 07:00:20 +00:00
|
|
|
{
|
|
|
|
int button = 0;
|
|
|
|
|
|
|
|
lcd_clear_display();
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2002-09-18 14:08:05 +00:00
|
|
|
lcd_puts(0,0,str(LANG_RESET_ASK_PLAYER));
|
|
|
|
lcd_puts(0,1,str(LANG_RESET_CONFIRM_PLAYER));
|
2002-09-06 07:00:20 +00:00
|
|
|
#else
|
2002-09-18 14:08:05 +00:00
|
|
|
lcd_puts(0,0,str(LANG_RESET_ASK_RECORDER));
|
|
|
|
lcd_puts(0,1,str(LANG_RESET_CONFIRM_RECORDER));
|
|
|
|
lcd_puts(0,2,str(LANG_RESET_CANCEL_RECORDER));
|
2002-09-06 07:00:20 +00:00
|
|
|
#endif
|
2002-09-07 12:28:46 +00:00
|
|
|
lcd_update();
|
2002-09-06 07:00:20 +00:00
|
|
|
button = button_get(true);
|
|
|
|
if (button == BUTTON_PLAY) {
|
|
|
|
settings_reset();
|
|
|
|
lcd_clear_display();
|
2002-09-18 14:08:05 +00:00
|
|
|
lcd_puts(0,0,str(LANG_RESET_DONE_SETTING));
|
|
|
|
lcd_puts(0,1,str(LANG_RESET_DONE_CLEAR));
|
2002-09-07 12:28:46 +00:00
|
|
|
lcd_update();
|
2002-09-06 07:00:20 +00:00
|
|
|
sleep(HZ);
|
|
|
|
return(true);
|
|
|
|
} else {
|
|
|
|
lcd_clear_display();
|
2002-09-18 14:08:05 +00:00
|
|
|
lcd_puts(0,0,str(LANG_RESET_DONE_CANCEL));
|
2002-09-07 12:28:46 +00:00
|
|
|
lcd_update();
|
2002-09-06 07:00:20 +00:00
|
|
|
sleep(HZ);
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-07 12:28:46 +00:00
|
|
|
static Menu fileview_settings_menu(void)
|
2002-09-05 04:42:12 +00:00
|
|
|
{
|
|
|
|
int m;
|
|
|
|
Menu result;
|
|
|
|
|
|
|
|
struct menu_items items[] = {
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_CASE_MENU), sort_case },
|
|
|
|
{ str(LANG_MP3FILTER), mp3_filter },
|
|
|
|
{ str(LANG_HIDDEN), show_hidden_files },
|
|
|
|
{ str(LANG_FOLLOW), browse_current },
|
2002-09-05 04:42:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
|
|
result = menu_run(m);
|
|
|
|
menu_exit(m);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-09-07 12:28:46 +00:00
|
|
|
static Menu display_settings_menu(void)
|
2002-09-05 04:42:12 +00:00
|
|
|
{
|
|
|
|
int m;
|
|
|
|
Menu result;
|
|
|
|
|
|
|
|
struct menu_items items[] = {
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_SCROLL_MENU), scroll_speed },
|
|
|
|
{ str(LANG_BACKLIGHT), backlight_timer },
|
|
|
|
{ str(LANG_CONTRAST), contrast },
|
2002-09-05 04:42:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
|
|
result = menu_run(m);
|
|
|
|
menu_exit(m);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-09-07 12:28:46 +00:00
|
|
|
static Menu system_settings_menu(void)
|
2002-09-05 04:42:12 +00:00
|
|
|
{
|
|
|
|
int m;
|
|
|
|
Menu result;
|
|
|
|
|
|
|
|
struct menu_items items[] = {
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_SPINDOWN), spindown },
|
2002-09-05 04:42:12 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_DISCHARGE), deep_discharge },
|
2002-09-05 04:42:12 +00:00
|
|
|
#endif
|
2002-09-21 14:21:31 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_TIME), timedate_set },
|
2002-09-05 04:42:12 +00:00
|
|
|
#endif
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_RESET), reset_settings },
|
2002-09-05 04:42:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
|
|
result = menu_run(m);
|
|
|
|
menu_exit(m);
|
|
|
|
return result;
|
|
|
|
}
|
2002-09-07 12:28:46 +00:00
|
|
|
|
|
|
|
Menu settings_menu(void)
|
|
|
|
{
|
|
|
|
int m;
|
|
|
|
Menu result;
|
|
|
|
|
|
|
|
struct menu_items items[] = {
|
2002-09-18 14:08:05 +00:00
|
|
|
{ str(LANG_PLAYBACK), playback_settings_menu },
|
|
|
|
{ str(LANG_FILE), fileview_settings_menu },
|
|
|
|
{ str(LANG_DISPLAY), display_settings_menu },
|
|
|
|
{ str(LANG_SYSTEM), system_settings_menu },
|
2002-09-07 12:28:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
m=menu_init( items, sizeof items / sizeof(struct menu_items) );
|
|
|
|
result = menu_run(m);
|
|
|
|
menu_exit(m);
|
|
|
|
return result;
|
|
|
|
}
|