2002-06-27 00:20:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-03-25 15:24:03 +00:00
|
|
|
* Copyright (C) 2002 by Stuart Martin
|
2002-06-27 00:20:00 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SETTINGS_H__
|
|
|
|
#define __SETTINGS_H__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2006-03-03 01:12:50 +00:00
|
|
|
#include "inttypes.h"
|
2003-07-15 02:34:10 +00:00
|
|
|
#include "config.h"
|
2002-08-16 14:41:47 +00:00
|
|
|
#include "file.h"
|
2005-10-07 17:38:05 +00:00
|
|
|
#include "dircache.h"
|
2004-04-20 10:23:57 +00:00
|
|
|
#include "timefuncs.h"
|
2006-07-10 16:47:30 +00:00
|
|
|
#include "tagcache.h"
|
2007-02-12 21:13:01 +00:00
|
|
|
#ifndef __PCTOOL__
|
2006-09-02 19:11:00 +00:00
|
|
|
#include "button.h"
|
2007-02-12 21:13:01 +00:00
|
|
|
#endif
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
#include "audio.h"
|
|
|
|
#endif
|
|
|
|
|
2005-12-22 13:31:14 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
|
|
|
#include "backlight.h" /* for [MIN|MAX]_BRIGHTNESS_SETTING */
|
|
|
|
#endif
|
|
|
|
|
2007-10-10 01:41:48 +00:00
|
|
|
struct opt_items {
|
|
|
|
unsigned const char* string;
|
2007-11-20 19:50:52 +00:00
|
|
|
int32_t voice_id;
|
2007-10-10 01:41:48 +00:00
|
|
|
};
|
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/** Setting values defines **/
|
|
|
|
|
|
|
|
/* name of directory where configuration, fonts and other data
|
|
|
|
* files are stored */
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
#define ROCKBOX_DIR "."
|
|
|
|
#define ROCKBOX_DIR_LEN 1
|
|
|
|
#else
|
2002-09-01 19:50:45 +00:00
|
|
|
#define ROCKBOX_DIR "/.rockbox"
|
2005-09-01 08:14:09 +00:00
|
|
|
#define ROCKBOX_DIR_LEN 9
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
|
|
|
|
2006-10-03 10:38:27 +00:00
|
|
|
#define FONT_DIR ROCKBOX_DIR "/fonts"
|
|
|
|
#define LANG_DIR ROCKBOX_DIR "/langs"
|
|
|
|
#define WPS_DIR ROCKBOX_DIR "/wps"
|
|
|
|
#define THEME_DIR ROCKBOX_DIR "/themes"
|
2007-04-16 09:14:36 +00:00
|
|
|
#define ICON_DIR ROCKBOX_DIR "/icons"
|
2007-08-06 13:42:52 +00:00
|
|
|
|
|
|
|
#define PLUGIN_DIR ROCKBOX_DIR "/rocks"
|
|
|
|
#define PLUGIN_GAMES_DIR PLUGIN_DIR "/games"
|
|
|
|
#define PLUGIN_APPS_DIR PLUGIN_DIR "/apps"
|
|
|
|
#define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos"
|
|
|
|
#define VIEWERS_DIR PLUGIN_DIR "/viewers"
|
|
|
|
|
2006-10-03 10:38:27 +00:00
|
|
|
#define BACKDROP_DIR ROCKBOX_DIR "/backdrops"
|
2007-07-10 07:41:37 +00:00
|
|
|
#define REC_BASE_DIR "/"
|
2006-10-03 10:38:27 +00:00
|
|
|
#define EQS_DIR ROCKBOX_DIR "/eqs"
|
2007-05-29 04:39:11 +00:00
|
|
|
#define CODECS_DIR ROCKBOX_DIR "/codecs"
|
|
|
|
#define RECPRESETS_DIR ROCKBOX_DIR "/recpresets"
|
2007-01-23 13:40:44 +00:00
|
|
|
#define FMPRESET_PATH ROCKBOX_DIR "/fmpresets"
|
2008-01-29 06:57:54 +00:00
|
|
|
#define PLAYLIST_CATALOG_DEFAULT_DIR "/Playlists"
|
2007-01-23 13:40:44 +00:00
|
|
|
|
2007-03-29 06:16:00 +00:00
|
|
|
#define VIEWERS_CONFIG ROCKBOX_DIR "/viewers.config"
|
|
|
|
#define CONFIGFILE ROCKBOX_DIR "/config.cfg"
|
|
|
|
#define FIXEDSETTINGSFILE ROCKBOX_DIR "/fixed.cfg"
|
2002-09-01 19:50:45 +00:00
|
|
|
|
2007-02-03 10:52:57 +00:00
|
|
|
#define MAX_FILENAME 32
|
2002-10-08 15:42:40 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2004-01-14 00:13:04 +00:00
|
|
|
#define BOOKMARK_NO 0
|
|
|
|
#define BOOKMARK_YES 1
|
|
|
|
#define BOOKMARK_ASK 2
|
|
|
|
#define BOOKMARK_UNIQUE_ONLY 2
|
|
|
|
#define BOOKMARK_RECENT_ONLY_YES 3
|
|
|
|
#define BOOKMARK_RECENT_ONLY_ASK 4
|
2002-09-04 03:38:37 +00:00
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
#define TRIG_MODE_OFF 0
|
|
|
|
#define TRIG_MODE_NOREARM 1
|
|
|
|
#define TRIG_MODE_REARM 2
|
|
|
|
|
|
|
|
#define TRIG_DURATION_COUNT 13
|
2007-10-10 01:41:48 +00:00
|
|
|
extern const struct opt_items trig_durations[TRIG_DURATION_COUNT];
|
2003-09-29 21:26:53 +00:00
|
|
|
|
2006-12-19 01:26:37 +00:00
|
|
|
#define CROSSFADE_ENABLE_SHUFFLE 1
|
|
|
|
#define CROSSFADE_ENABLE_TRACKSKIP 2
|
|
|
|
#define CROSSFADE_ENABLE_SHUFFLE_AND_TRACKSKIP 3
|
|
|
|
#define CROSSFADE_ENABLE_ALWAYS 4
|
2005-07-22 16:46:27 +00:00
|
|
|
|
2006-10-09 10:54:17 +00:00
|
|
|
#define FOLDER_ADVANCE_OFF 0
|
|
|
|
#define FOLDER_ADVANCE_NEXT 1
|
|
|
|
#define FOLDER_ADVANCE_RANDOM 2
|
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/* repeat mode options */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
REPEAT_OFF,
|
|
|
|
REPEAT_ALL,
|
|
|
|
REPEAT_ONE,
|
|
|
|
REPEAT_SHUFFLE,
|
2007-02-17 22:26:14 +00:00
|
|
|
#ifdef AB_REPEAT_ENABLE
|
2007-01-29 13:18:57 +00:00
|
|
|
REPEAT_AB,
|
|
|
|
#endif
|
|
|
|
NUM_REPEAT_MODES
|
|
|
|
};
|
|
|
|
|
|
|
|
/* dir filter options */
|
|
|
|
/* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
|
|
|
|
* Any new rockbox browse filter modes (accessible through the menu)
|
|
|
|
* must be added after NUM_FILTER_MODES. */
|
|
|
|
enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
|
|
|
|
NUM_FILTER_MODES,
|
|
|
|
SHOW_WPS, SHOW_RWPS, SHOW_FMR, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS};
|
|
|
|
|
|
|
|
/* recursive dir insert options */
|
|
|
|
enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
|
|
|
|
|
|
|
|
/* replaygain types */
|
|
|
|
enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE };
|
|
|
|
|
|
|
|
/* show path types */
|
|
|
|
enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
|
|
|
|
|
2007-03-07 01:16:25 +00:00
|
|
|
/* Alarm settings */
|
|
|
|
#ifdef HAVE_RTC_ALARM
|
|
|
|
enum { ALARM_START_WPS = 0,
|
|
|
|
#if CONFIG_TUNER
|
|
|
|
ALARM_START_FM,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
ALARM_START_REC,
|
|
|
|
#endif
|
|
|
|
ALARM_START_COUNT
|
|
|
|
};
|
|
|
|
#if CONFIG_TUNER && defined(HAVE_RECORDING)
|
|
|
|
#define ALARM_SETTING_TEXT "wps,fm,rec"
|
|
|
|
#elif CONFIG_TUNER
|
|
|
|
#define ALARM_SETTING_TEXT "wps,fm"
|
|
|
|
#elif defined(HAVE_RECORDING)
|
|
|
|
#define ALARM_SETTING_TEXT "wps,rec"
|
|
|
|
#endif
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2007-03-07 01:16:25 +00:00
|
|
|
#endif /* HAVE_RTC_ALARM */
|
2007-01-29 13:18:57 +00:00
|
|
|
/** virtual pointer stuff.. move to another .h maybe? **/
|
2004-07-23 23:01:20 +00:00
|
|
|
/* These define "virtual pointers", which could either be a literal string,
|
|
|
|
or a mean a string ID if the pointer is in a certain range.
|
|
|
|
This helps to save space for menus and options. */
|
|
|
|
|
|
|
|
#define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
/* a space which is defined in stubs.c */
|
2004-08-01 21:50:57 +00:00
|
|
|
extern unsigned char vp_dummy[VIRT_SIZE];
|
2004-07-23 23:01:20 +00:00
|
|
|
#define VIRT_PTR vp_dummy
|
2007-11-02 02:50:02 +00:00
|
|
|
#elif CONFIG_CPU==DM320
|
|
|
|
/* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
|
|
|
|
#define VIRT_PTR ((unsigned char*)0x4000)
|
2004-07-23 23:01:20 +00:00
|
|
|
#else
|
|
|
|
/* a location where we won't store strings, 0 is the fastest */
|
|
|
|
#define VIRT_PTR ((unsigned char*)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* form a "virtual pointer" out of a language ID */
|
|
|
|
#define ID2P(id) (VIRT_PTR + id)
|
|
|
|
|
|
|
|
/* resolve a pointer which could be a virtualized ID or a literal */
|
2005-12-05 22:44:42 +00:00
|
|
|
#define P2STR(p) (char *)((p>=VIRT_PTR && p<=VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
|
2004-07-23 23:01:20 +00:00
|
|
|
|
|
|
|
/* get the string ID from a virtual pointer, -1 if not virtual */
|
|
|
|
#define P2ID(p) ((p>=VIRT_PTR && p<=VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
|
|
|
|
|
2006-07-31 19:13:21 +00:00
|
|
|
/* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
|
|
|
|
Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
|
|
|
|
simplicity. */
|
2007-01-29 13:18:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** function prototypes **/
|
|
|
|
|
|
|
|
/* argument bits for settings_load() */
|
|
|
|
#define SETTINGS_RTC 1 /* only the settings from the RTC nonvolatile RAM */
|
|
|
|
#define SETTINGS_HD 2 /* only the settings from the disk sector */
|
|
|
|
#define SETTINGS_ALL 3 /* both */
|
2008-03-28 12:51:33 +00:00
|
|
|
void settings_load(int which);
|
|
|
|
bool settings_load_config(const char* file, bool apply);
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2008-03-25 15:24:03 +00:00
|
|
|
void status_save(void);
|
2007-01-29 13:18:57 +00:00
|
|
|
int settings_save(void);
|
2007-02-01 13:57:14 +00:00
|
|
|
/* defines for the options paramater */
|
2007-05-29 04:39:11 +00:00
|
|
|
enum {
|
|
|
|
SETTINGS_SAVE_CHANGED = 0,
|
|
|
|
SETTINGS_SAVE_ALL,
|
|
|
|
SETTINGS_SAVE_THEME,
|
2007-12-24 22:35:31 +00:00
|
|
|
SETTINGS_SAVE_SOUND,
|
2007-05-29 04:39:11 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
SETTINGS_SAVE_RECPRESETS,
|
|
|
|
#endif
|
2007-12-07 10:59:07 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
SETTINGS_SAVE_EQPRESET,
|
|
|
|
#endif
|
2007-05-29 04:39:11 +00:00
|
|
|
};
|
2008-03-28 12:51:33 +00:00
|
|
|
bool settings_save_config(int options);
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2008-04-20 14:12:28 +00:00
|
|
|
struct settings_list;
|
|
|
|
void reset_setting(const struct settings_list *setting, void *var);
|
2007-01-29 13:18:57 +00:00
|
|
|
void settings_reset(void);
|
|
|
|
void sound_settings_apply(void);
|
2008-03-28 12:51:33 +00:00
|
|
|
void settings_apply(bool read_disk);
|
2007-01-29 13:18:57 +00:00
|
|
|
void settings_apply_pm_range(void);
|
|
|
|
void settings_display(void);
|
|
|
|
|
|
|
|
enum optiontype { INT, BOOL };
|
|
|
|
|
2008-03-25 15:24:03 +00:00
|
|
|
const struct settings_list* find_setting(const void* variable, int *id);
|
2008-03-28 12:51:33 +00:00
|
|
|
bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
|
2008-03-25 15:24:03 +00:00
|
|
|
bool set_bool_options(const char* string, const bool* variable,
|
2008-03-28 12:51:33 +00:00
|
|
|
const char* yes_str, int yes_voice,
|
|
|
|
const char* no_str, int no_voice,
|
2007-01-29 13:18:57 +00:00
|
|
|
void (*function)(bool));
|
|
|
|
|
2008-03-25 15:24:03 +00:00
|
|
|
bool set_bool(const char* string, const bool* variable);
|
2008-03-28 12:51:33 +00:00
|
|
|
bool set_int(const unsigned char* string, const char* unit, int voice_unit,
|
2008-03-25 15:24:03 +00:00
|
|
|
const int* variable,
|
2008-03-28 12:51:33 +00:00
|
|
|
void (*function)(int), int step, int min, int max,
|
2007-08-19 10:22:46 +00:00
|
|
|
void (*formatter)(char*, size_t, int, const char*) );
|
2008-03-25 15:24:03 +00:00
|
|
|
|
2007-02-12 14:22:35 +00:00
|
|
|
/* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
|
2008-03-28 12:51:33 +00:00
|
|
|
bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
|
2008-03-25 15:24:03 +00:00
|
|
|
const int* variable,
|
2008-03-28 12:51:33 +00:00
|
|
|
void (*function)(int), int step, int min, int max,
|
2007-08-19 10:22:46 +00:00
|
|
|
void (*formatter)(char*, size_t, int, const char*),
|
2007-11-26 23:10:20 +00:00
|
|
|
int32_t (*get_talk_id)(int, int));
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2008-03-28 12:51:33 +00:00
|
|
|
void set_file(const char* filename, char* setting, int maxlen);
|
2008-03-25 15:24:03 +00:00
|
|
|
|
2008-03-28 12:51:33 +00:00
|
|
|
bool set_option(const char* string, const void* variable, enum optiontype type,
|
|
|
|
const struct opt_items* options, int numoptions, void (*function)(int));
|
2008-03-25 15:24:03 +00:00
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** global_settings and global_status struct definitions **/
|
|
|
|
|
2007-01-24 02:19:22 +00:00
|
|
|
struct system_status
|
|
|
|
{
|
|
|
|
int resume_index; /* index in playlist (-1 for no active resume) */
|
|
|
|
int resume_first_index; /* index of first track in playlist */
|
|
|
|
uint32_t resume_offset; /* byte offset in mp3 file */
|
|
|
|
int resume_seed; /* shuffle seed (-1=no resume shuffle 0=sorted
|
|
|
|
>0=shuffled) */
|
|
|
|
int runtime; /* current runtime since last charge */
|
|
|
|
int topruntime; /* top known runtime */
|
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
int dircache_size; /* directory cache structure last size, 22 bits */
|
|
|
|
#endif
|
2007-02-18 08:46:12 +00:00
|
|
|
#if CONFIG_TUNER
|
2007-01-24 02:19:22 +00:00
|
|
|
int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
|
|
|
|
relative to MIN_FREQ */
|
2008-01-10 06:46:04 +00:00
|
|
|
int statusbar_forced; /* fix the bug where the statusbar would stay shown
|
|
|
|
if powered off inside the fm screen...
|
|
|
|
for some reason the screen doesnt use global_settings.statusbar
|
|
|
|
obviously a better fix is to fix the screen... so remove this
|
|
|
|
when that happens */
|
2007-01-24 02:19:22 +00:00
|
|
|
#endif
|
2007-03-01 11:14:46 +00:00
|
|
|
char last_screen;
|
2007-04-22 08:50:24 +00:00
|
|
|
int viewer_icon_count;
|
2007-01-24 02:19:22 +00:00
|
|
|
};
|
2007-02-07 04:24:21 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
struct user_settings
|
|
|
|
{
|
|
|
|
/* audio settings */
|
|
|
|
|
2007-11-18 16:45:58 +00:00
|
|
|
int volume; /* audio output volume in decibels range depends on the dac */
|
|
|
|
int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
|
|
|
|
int bass; /* bass boost/cut in decibels */
|
|
|
|
int treble; /* treble boost/cut in decibels */
|
2005-01-12 00:24:15 +00:00
|
|
|
int channel_config; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
|
|
|
|
int stereo_width; /* 0-255% */
|
2007-11-18 16:45:58 +00:00
|
|
|
|
|
|
|
#if CONFIG_CODEC != SWCODEC
|
|
|
|
int loudness; /* loudness eq: 0-100 0=off 100=max */
|
|
|
|
int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
|
2004-07-06 12:17:14 +00:00
|
|
|
int mdb_strength; /* 0-127dB */
|
|
|
|
int mdb_harmonics; /* 0-100% */
|
|
|
|
int mdb_center; /* 20-300Hz */
|
|
|
|
int mdb_shape; /* 50-300Hz */
|
|
|
|
bool mdb_enable; /* true/false */
|
|
|
|
bool superbass; /* true/false */
|
2007-11-18 16:45:58 +00:00
|
|
|
#endif
|
2002-11-10 23:18:33 +00:00
|
|
|
|
2007-11-24 07:51:00 +00:00
|
|
|
#ifdef HAVE_WM8758
|
|
|
|
int bass_cutoff;
|
|
|
|
int treble_cutoff;
|
|
|
|
#endif
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2006-12-19 01:26:37 +00:00
|
|
|
int crossfade; /* Enable crossfade (0=off,1=shuffle,2=trackskip,3=shuff&trackskip,4=always) */
|
2005-11-06 16:40:20 +00:00
|
|
|
int crossfade_fade_in_delay; /* Fade in delay (0-15s) */
|
|
|
|
int crossfade_fade_out_delay; /* Fade out delay (0-15s) */
|
|
|
|
int crossfade_fade_in_duration; /* Fade in duration (0-15s) */
|
|
|
|
int crossfade_fade_out_duration; /* Fade out duration (0-15s) */
|
|
|
|
int crossfade_fade_out_mixmode; /* Fade out mode (0=crossfade,1=mix) */
|
2005-06-09 09:47:00 +00:00
|
|
|
#endif
|
2007-07-10 07:41:37 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2006-11-06 18:07:30 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
int rec_format; /* record format index */
|
|
|
|
#else
|
2002-11-10 23:18:33 +00:00
|
|
|
int rec_quality; /* 0-7 */
|
2006-11-06 18:07:30 +00:00
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
|
|
|
int rec_source; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
|
|
|
|
int rec_frequency; /* 0 = 44.1kHz (depends on target)
|
2002-11-10 23:18:33 +00:00
|
|
|
1 = 48kHz
|
|
|
|
2 = 32kHz
|
|
|
|
3 = 22.05kHz
|
|
|
|
4 = 24kHz
|
|
|
|
5 = 16kHz */
|
|
|
|
int rec_channels; /* 0=Stereo, 1=Mono */
|
2006-11-06 18:07:30 +00:00
|
|
|
int rec_mic_gain; /* depends on target */
|
|
|
|
int rec_left_gain; /* depends on target */
|
|
|
|
int rec_right_gain; /* depands on target */
|
2003-04-20 22:00:30 +00:00
|
|
|
bool rec_editable; /* true means that the bit reservoir is off */
|
2003-06-04 13:48:50 +00:00
|
|
|
|
|
|
|
/* note: timesplit setting is not saved */
|
2003-06-10 19:24:51 +00:00
|
|
|
int rec_timesplit; /* 0 = off,
|
|
|
|
1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
|
|
|
|
5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
|
|
|
|
9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
|
|
|
|
13= 24:00 */
|
2006-07-22 17:23:05 +00:00
|
|
|
int rec_sizesplit; /* 0 = off,
|
|
|
|
1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
|
|
|
|
5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
|
|
|
|
9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
|
|
|
|
13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
|
|
|
|
int rec_split_type; /* split/stop */
|
|
|
|
int rec_split_method; /* time/filesize */
|
2006-09-18 12:41:12 +00:00
|
|
|
|
2003-12-31 03:13:29 +00:00
|
|
|
int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
|
2007-07-10 07:41:37 +00:00
|
|
|
char rec_directory[MAX_FILENAME+1];
|
2006-02-17 22:47:56 +00:00
|
|
|
int cliplight; /* 0 = off
|
|
|
|
1 = main lcd
|
|
|
|
2 = main and remote lcd
|
|
|
|
3 = remote lcd */
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
int rec_start_thres; /* negative: db, positive: % range -87 .. 100 */
|
|
|
|
int rec_start_duration; /* index of trig_durations */
|
|
|
|
int rec_stop_thres; /* negative: db, positive: % */
|
|
|
|
int rec_stop_postrec; /* negative: db, positive: % range -87 .. 100 */
|
|
|
|
int rec_stop_gap; /* index of trig_durations */
|
|
|
|
int rec_trigger_mode; /* see TRIG_MODE_XXX constants */
|
2006-11-09 12:27:56 +00:00
|
|
|
int rec_trigger_type; /* what to do when trigger released */
|
2005-04-04 09:12:12 +00:00
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
int rec_agc_preset_mic; /* AGC mic preset modes:
|
|
|
|
0 = Off
|
|
|
|
1 = Safety (clip)
|
|
|
|
2 = Live (slow)
|
|
|
|
3 = DJ-Set (slow)
|
|
|
|
4 = Medium
|
|
|
|
5 = Voice (fast) */
|
|
|
|
int rec_agc_preset_line; /* AGC line-in preset modes:
|
|
|
|
0 = Off
|
|
|
|
1 = Safety (clip)
|
|
|
|
2 = Live (slow)
|
|
|
|
3 = DJ-Set (slow)
|
|
|
|
4 = Medium
|
|
|
|
5 = Voice (fast) */
|
|
|
|
int rec_agc_maxgain_mic; /* AGC maximum mic gain */
|
|
|
|
int rec_agc_maxgain_line; /* AGC maximum line-in gain */
|
|
|
|
int rec_agc_cliptime; /* 0.2, 0.4, 0.6, 0.8, 1s */
|
|
|
|
#endif
|
2007-07-10 07:41:37 +00:00
|
|
|
#endif /* HAVE_RECORDING */
|
2002-06-27 00:20:00 +00:00
|
|
|
/* device settings */
|
|
|
|
|
2006-07-31 19:13:21 +00:00
|
|
|
#ifdef HAVE_LCD_CONTRAST
|
2006-07-25 11:15:50 +00:00
|
|
|
int contrast; /* lcd contrast */
|
|
|
|
#endif
|
2003-02-27 14:22:30 +00:00
|
|
|
bool invert; /* invert display */
|
2007-09-27 15:42:55 +00:00
|
|
|
int cursor_style; /* style of the selection cursor */
|
2003-12-20 10:00:37 +00:00
|
|
|
bool flip_display; /* turn display (and button layout) by 180 degrees */
|
2002-09-23 11:42:48 +00:00
|
|
|
int poweroff; /* power off timer */
|
2002-11-10 23:18:33 +00:00
|
|
|
int backlight_timeout; /* backlight off timeout: 0-18 0=never,
|
|
|
|
1=always,
|
|
|
|
then according to timeout_values[] */
|
2007-11-18 18:27:36 +00:00
|
|
|
#if CONFIG_CHARGING
|
2005-11-23 20:12:33 +00:00
|
|
|
int backlight_timeout_plugged;
|
2007-11-18 18:27:36 +00:00
|
|
|
#endif
|
2007-11-18 17:04:46 +00:00
|
|
|
|
2006-03-19 17:42:58 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT_PWM_FADING
|
2005-06-20 17:03:09 +00:00
|
|
|
int backlight_fade_in; /* backlight fade in timing: 0..3 */
|
|
|
|
int backlight_fade_out; /* backlight fade in timing: 0..7 */
|
2007-11-18 16:45:58 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
|
|
|
int brightness;
|
2005-06-20 17:03:09 +00:00
|
|
|
#endif
|
2002-12-16 22:58:48 +00:00
|
|
|
int battery_capacity; /* in mAh */
|
2007-11-18 16:45:58 +00:00
|
|
|
#if BATTERY_TYPES_COUNT > 1
|
2005-01-30 16:25:46 +00:00
|
|
|
int battery_type; /* for units which can take multiple types (Ondio). */
|
2007-11-18 16:45:58 +00:00
|
|
|
#endif
|
2005-07-01 09:42:39 +00:00
|
|
|
#ifdef HAVE_SPDIF_POWER
|
|
|
|
bool spdif_enable; /* S/PDIF power on/off */
|
|
|
|
#endif
|
2005-09-10 12:28:16 +00:00
|
|
|
|
2007-02-18 08:46:12 +00:00
|
|
|
#if CONFIG_TUNER
|
2006-04-02 12:23:08 +00:00
|
|
|
unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
|
|
|
|
#endif
|
2008-02-23 00:17:13 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-10-08 15:42:40 +00:00
|
|
|
unsigned char font_file[MAX_FILENAME+1]; /* last font */
|
2008-02-23 00:17:13 +00:00
|
|
|
#endif
|
2002-10-08 15:42:40 +00:00
|
|
|
unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
|
|
|
|
unsigned char lang_file[MAX_FILENAME+1]; /* last language */
|
2006-09-27 21:36:50 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
/* misc options */
|
|
|
|
|
2005-08-21 23:01:12 +00:00
|
|
|
int repeat_mode; /* 0=off 1=repeat all 2=repeat one 3=shuffle 4=ab */
|
2005-01-17 11:37:36 +00:00
|
|
|
int dirfilter; /* 0=display all, 1=only supported, 2=only music,
|
|
|
|
3=dirs+playlists, 4=ID3 database */
|
2002-07-22 16:39:17 +00:00
|
|
|
bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
|
2007-08-13 19:29:49 +00:00
|
|
|
int show_filename_ext; /* show filename extensions in file browser?
|
|
|
|
0 = no, 1 = yes, 2 = only unknown 0 */
|
2002-10-26 05:26:23 +00:00
|
|
|
int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
|
2005-01-30 13:48:44 +00:00
|
|
|
int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
|
2002-10-14 12:50:20 +00:00
|
|
|
int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
|
2002-06-27 01:08:11 +00:00
|
|
|
bool playlist_shuffle;
|
2002-09-18 10:12:16 +00:00
|
|
|
bool play_selected; /* Plays selected file even in shuffle mode */
|
2002-09-04 03:38:37 +00:00
|
|
|
int ff_rewind_min_step; /* FF/Rewind minimum step size */
|
2002-08-28 19:34:07 +00:00
|
|
|
int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
|
2007-08-01 08:50:44 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_FLASH_STORAGE
|
2002-08-26 13:21:14 +00:00
|
|
|
int disk_spindown; /* time until disk spindown, in seconds (0=off) */
|
2002-12-05 13:09:51 +00:00
|
|
|
int buffer_margin; /* MP3 buffer watermark margin, in seconds */
|
2007-08-01 08:50:44 +00:00
|
|
|
#endif
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2002-09-27 09:31:31 +00:00
|
|
|
int peak_meter_release; /* units per read out */
|
|
|
|
int peak_meter_hold; /* hold time for peak meter in 1/100 s */
|
|
|
|
int peak_meter_clip_hold; /* hold time for clips */
|
2002-10-29 12:09:15 +00:00
|
|
|
bool peak_meter_dbfs; /* show linear or dbfs values */
|
2003-02-14 14:14:55 +00:00
|
|
|
int peak_meter_min; /* range minimum */
|
|
|
|
int peak_meter_max; /* range maximum */
|
2007-08-26 21:34:36 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2007-08-25 15:53:54 +00:00
|
|
|
bool peak_meter_clipcounter; /* clipping count indicator */
|
2007-08-26 21:34:36 +00:00
|
|
|
#endif
|
2003-10-17 14:49:00 +00:00
|
|
|
bool car_adapter_mode; /* 0=off 1=on */
|
2008-04-20 18:28:25 +00:00
|
|
|
#ifdef HAVE_ACCESSORY_SUPPLY
|
|
|
|
bool accessory_supply; /* 0=off 1=on, accessory power supply for iPod */
|
|
|
|
#endif
|
2002-09-27 09:31:31 +00:00
|
|
|
|
2002-08-07 10:35:26 +00:00
|
|
|
/* show status bar */
|
|
|
|
bool statusbar; /* 0=hide, 1=show */
|
2002-08-22 15:47:30 +00:00
|
|
|
|
2007-11-18 16:45:58 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
2004-03-16 13:44:56 +00:00
|
|
|
/* show button bar */
|
|
|
|
bool buttonbar; /* 0=hide, 1=show */
|
2007-11-18 16:45:58 +00:00
|
|
|
#endif
|
2004-03-16 13:44:56 +00:00
|
|
|
|
2002-08-30 13:49:32 +00:00
|
|
|
/* show scroll bar */
|
|
|
|
bool scrollbar; /* 0=hide, 1=show */
|
|
|
|
|
2002-09-09 14:25:39 +00:00
|
|
|
/* goto current song when exiting WPS */
|
|
|
|
bool browse_current; /* 1=goto current song,
|
|
|
|
0=goto previous location */
|
|
|
|
|
2006-05-25 13:34:51 +00:00
|
|
|
|
2006-05-22 16:40:41 +00:00
|
|
|
int scroll_speed; /* long texts scrolling speed: 1-30 */
|
2002-12-12 15:20:37 +00:00
|
|
|
int bidir_limit; /* bidir scroll length limit */
|
|
|
|
int scroll_delay; /* delay (in 1/10s) before starting scroll */
|
|
|
|
int scroll_step; /* pixels to advance per update */
|
2006-05-22 16:40:41 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
int remote_scroll_speed; /* long texts scrolling speed: 1-30 */
|
|
|
|
int remote_scroll_delay; /* delay (in 1/10s) before starting scroll */
|
|
|
|
int remote_scroll_step; /* pixels to advance per update */
|
2006-07-22 13:47:11 +00:00
|
|
|
int remote_bidir_limit; /* bidir scroll length limit */
|
2006-05-22 16:40:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-01-22 04:24:26 +00:00
|
|
|
bool offset_out_of_view;
|
|
|
|
int screen_scroll_step;
|
|
|
|
#endif
|
2004-01-14 00:13:04 +00:00
|
|
|
|
|
|
|
/* auto bookmark settings */
|
|
|
|
int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
|
|
|
|
int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
|
|
|
|
int usemrb; /* use MRB list: 0=No, 1=Yes*/
|
2003-05-22 06:42:14 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
int jump_scroll; /* Fast jump when scrolling */
|
2003-05-27 12:54:11 +00:00
|
|
|
int jump_scroll_delay; /* Delay between jump scroll screens */
|
2003-05-22 06:42:14 +00:00
|
|
|
#endif
|
2003-02-14 15:54:52 +00:00
|
|
|
bool fade_on_stop; /* fade on pause/unpause/stop */
|
2003-04-23 09:17:34 +00:00
|
|
|
bool caption_backlight; /* turn on backlight at end and start of track */
|
2003-05-09 16:01:21 +00:00
|
|
|
|
2007-02-18 08:46:12 +00:00
|
|
|
#if CONFIG_TUNER
|
2003-05-09 16:01:21 +00:00
|
|
|
int fm_freq_step; /* Frequency step for manual tuning, in kHz */
|
|
|
|
bool fm_force_mono; /* Forces Mono mode if true */
|
|
|
|
bool fm_full_range; /* Enables full 10MHz-160MHz range if true, else
|
|
|
|
only 88MHz-108MHz */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int max_files_in_dir; /* Max entries in directory (file browser) */
|
|
|
|
int max_files_in_playlist; /* Max entries in playlist */
|
2003-06-05 09:38:26 +00:00
|
|
|
bool show_icons; /* 0=hide 1=show */
|
2003-07-02 15:54:44 +00:00
|
|
|
int recursive_dir_insert; /* should directories be inserted recursively */
|
2003-11-03 23:36:36 +00:00
|
|
|
|
2007-11-18 16:45:58 +00:00
|
|
|
#if CONFIG_CODEC == MAS3507D
|
|
|
|
bool line_in; /* false=off, true=active */
|
|
|
|
#endif
|
2004-01-26 17:05:21 +00:00
|
|
|
|
|
|
|
/* playlist viewer settings */
|
|
|
|
bool playlist_viewer_icons; /* display icons on viewer */
|
|
|
|
bool playlist_viewer_indices; /* display playlist indices on viewer */
|
|
|
|
int playlist_viewer_track_display; /* how to display tracks in viewer */
|
2004-03-27 00:11:01 +00:00
|
|
|
|
|
|
|
/* voice UI settings */
|
|
|
|
bool talk_menu; /* enable voice UI */
|
2007-06-07 09:24:53 +00:00
|
|
|
int talk_dir; /* voiced directories mode: 0=off 1=number 2=spell */
|
|
|
|
bool talk_dir_clip; /* use directory .talk clips */
|
2008-01-21 09:48:44 +00:00
|
|
|
int talk_file; /* voice file mode: 0=off, 1=number, 2=spell */
|
2007-06-07 09:24:53 +00:00
|
|
|
bool talk_file_clip; /* use file .talk clips */
|
2007-11-07 03:25:33 +00:00
|
|
|
bool talk_filetype; /* say file type */
|
2007-11-03 05:00:49 +00:00
|
|
|
bool talk_battery_level;
|
2004-06-22 09:16:44 +00:00
|
|
|
|
|
|
|
/* file browser sorting */
|
|
|
|
int sort_file; /* 0=alpha, 1=date, 2=date (new first), 3=type */
|
|
|
|
int sort_dir; /* 0=alpha, 1=date (old first), 2=date (new first) */
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2005-04-15 12:08:49 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2005-07-05 22:27:54 +00:00
|
|
|
/* remote lcd */
|
2005-04-15 12:08:49 +00:00
|
|
|
int remote_contrast; /* lcd contrast: 0-63 0=low 63=high */
|
|
|
|
bool remote_invert; /* invert display */
|
|
|
|
bool remote_flip_display; /* turn display (and button layout) by 180 degrees */
|
|
|
|
int remote_backlight_timeout; /* backlight off timeout: 0-18 0=never,
|
|
|
|
1=always,
|
|
|
|
then according to timeout_values[] */
|
2005-11-23 20:12:33 +00:00
|
|
|
int remote_backlight_timeout_plugged;
|
2005-11-21 23:55:39 +00:00
|
|
|
bool remote_caption_backlight; /* turn on backlight at end and start of track */
|
2006-09-10 02:00:40 +00:00
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
|
|
|
int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
|
|
|
|
switch is on */
|
|
|
|
#endif
|
2005-11-21 23:55:39 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD_TICKING
|
2005-11-19 07:58:20 +00:00
|
|
|
bool remote_reduce_ticking; /* 0=normal operation,
|
|
|
|
1=EMI reduce on with cost more CPU. */
|
2005-11-19 09:26:02 +00:00
|
|
|
#endif
|
2006-09-10 02:00:40 +00:00
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2006-10-09 10:54:17 +00:00
|
|
|
int next_folder; /* move to next folder */
|
2005-07-02 10:50:42 +00:00
|
|
|
bool runtimedb; /* runtime database active? */
|
2005-07-24 15:32:28 +00:00
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2005-07-24 15:32:28 +00:00
|
|
|
bool replaygain; /* enable replaygain */
|
|
|
|
bool replaygain_noclip; /* scale to prevent clips */
|
2005-09-24 15:22:48 +00:00
|
|
|
int replaygain_type; /* 0=track gain, 1=album gain, 2=track gain if
|
|
|
|
shuffle is on, album gain otherwise */
|
2005-08-11 18:56:20 +00:00
|
|
|
int replaygain_preamp; /* scale replaygained tracks by this */
|
2005-08-20 21:17:41 +00:00
|
|
|
int beep; /* system beep volume when changing tracks etc. */
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2006-04-11 13:49:05 +00:00
|
|
|
/* Crossfeed settings */
|
|
|
|
bool crossfeed; /* enable crossfeed */
|
2007-12-08 01:45:04 +00:00
|
|
|
unsigned int crossfeed_direct_gain; /* dB x 10 */
|
|
|
|
unsigned int crossfeed_cross_gain; /* dB x 10 */
|
|
|
|
unsigned int crossfeed_hf_attenuation; /* dB x 10 */
|
2006-04-11 13:49:05 +00:00
|
|
|
unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
|
2005-07-24 15:32:28 +00:00
|
|
|
#endif
|
2005-10-07 17:38:05 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
bool dircache; /* enable directory cache */
|
|
|
|
#endif
|
2006-10-25 10:17:57 +00:00
|
|
|
#ifdef HAVE_TAGCACHE
|
2006-07-10 16:47:30 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
bool tagcache_ram; /* load tagcache to ram? */
|
|
|
|
#endif
|
|
|
|
bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
|
2006-10-25 10:17:57 +00:00
|
|
|
#endif
|
2005-12-06 13:27:15 +00:00
|
|
|
int default_codepage; /* set default codepage for tag conversion */
|
2005-11-17 20:14:59 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
|
|
|
|
#endif
|
2006-02-07 14:07:46 +00:00
|
|
|
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
bool eq_enabled; /* Enable equalizer */
|
2006-03-27 21:20:35 +00:00
|
|
|
unsigned int eq_precut; /* dB */
|
|
|
|
|
2006-02-07 14:07:46 +00:00
|
|
|
/* Order is important here, must be cutoff, q, then gain for each band.
|
|
|
|
See dsp_eq_update_data in dsp.c for why. */
|
2006-03-27 21:20:35 +00:00
|
|
|
|
2006-02-07 14:07:46 +00:00
|
|
|
/* Band 0 settings */
|
2006-03-27 21:20:35 +00:00
|
|
|
int eq_band0_cutoff; /* Hz */
|
|
|
|
int eq_band0_q;
|
|
|
|
int eq_band0_gain; /* +/- dB */
|
|
|
|
|
2006-02-07 14:07:46 +00:00
|
|
|
/* Band 1 settings */
|
2006-03-27 21:20:35 +00:00
|
|
|
int eq_band1_cutoff; /* Hz */
|
|
|
|
int eq_band1_q;
|
|
|
|
int eq_band1_gain; /* +/- dB */
|
|
|
|
|
2006-02-07 14:07:46 +00:00
|
|
|
/* Band 2 settings */
|
2006-03-27 21:20:35 +00:00
|
|
|
int eq_band2_cutoff; /* Hz */
|
|
|
|
int eq_band2_q;
|
|
|
|
int eq_band2_gain; /* +/- dB */
|
|
|
|
|
2006-02-07 14:07:46 +00:00
|
|
|
/* Band 3 settings */
|
2006-03-27 21:20:35 +00:00
|
|
|
int eq_band3_cutoff; /* Hz */
|
|
|
|
int eq_band3_q;
|
|
|
|
int eq_band3_gain; /* +/- dB */
|
|
|
|
|
2006-02-07 14:07:46 +00:00
|
|
|
/* Band 4 settings */
|
2006-03-27 21:20:35 +00:00
|
|
|
int eq_band4_cutoff; /* Hz */
|
|
|
|
int eq_band4_q;
|
|
|
|
int eq_band4_gain; /* +/- dB */
|
2006-10-27 20:41:33 +00:00
|
|
|
|
|
|
|
bool dithering_enabled;
|
2006-02-07 14:07:46 +00:00
|
|
|
#endif
|
|
|
|
|
2007-11-24 07:51:00 +00:00
|
|
|
|
2006-11-13 00:45:21 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-02-02 20:42:56 +00:00
|
|
|
unsigned char backdrop_file[MAX_FILENAME+1]; /* backdrop bitmap file */
|
|
|
|
#endif
|
2006-02-05 19:35:03 +00:00
|
|
|
|
|
|
|
bool warnon_erase_dynplaylist; /* warn when erasing dynamic playlist */
|
2006-02-13 19:39:48 +00:00
|
|
|
bool scroll_paginated; /* 0=dont 1=do */
|
2006-02-26 02:48:05 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
int bg_color; /* background color native format */
|
|
|
|
int fg_color; /* foreground color native format */
|
2007-09-27 15:42:55 +00:00
|
|
|
int lss_color; /* background color for the selector or start color for the gradient */
|
|
|
|
int lse_color; /* end color for the selector gradient */
|
|
|
|
int lst_color; /* color of the text for the selector */
|
2006-02-26 02:48:05 +00:00
|
|
|
#endif
|
2006-03-27 21:20:35 +00:00
|
|
|
bool party_mode; /* party mode - unstoppable music */
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-24 13:47:24 +00:00
|
|
|
bool bl_filter_first_keypress; /* filter first keypress when dark? */
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
|
|
|
|
#endif
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAS_BUTTON_HOLD
|
2006-09-10 02:00:40 +00:00
|
|
|
int backlight_on_button_hold; /* what to do with backlight when hold
|
|
|
|
switch is on */
|
2006-03-24 13:47:24 +00:00
|
|
|
#endif
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
2006-09-10 02:00:40 +00:00
|
|
|
int lcd_sleep_after_backlight_off; /* when to put lcd to sleep after backlight
|
|
|
|
has turned off */
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2007-04-12 22:12:13 +00:00
|
|
|
#endif /* HAVE_BACKLIGHT */
|
2006-03-29 16:21:42 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
unsigned char kbd_file[MAX_FILENAME+1]; /* last keyboard */
|
|
|
|
#endif
|
2006-08-14 10:52:05 +00:00
|
|
|
|
2007-02-01 10:47:22 +00:00
|
|
|
#ifdef HAVE_USB_POWER
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2007-02-01 10:47:22 +00:00
|
|
|
bool usb_charging;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
|
2008-01-13 09:29:45 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-08-15 09:38:13 +00:00
|
|
|
int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
|
2008-01-13 09:29:45 +00:00
|
|
|
#endif
|
2006-09-26 10:03:56 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_HEADPHONE_DETECTION
|
|
|
|
int unplug_mode; /* pause on headphone unplug */
|
|
|
|
int unplug_rw; /* time in s to rewind when pausing */
|
|
|
|
bool unplug_autoresume; /* disable auto-resume if no phones */
|
|
|
|
#endif
|
2007-02-18 08:46:12 +00:00
|
|
|
#if CONFIG_TUNER
|
2006-10-05 12:40:13 +00:00
|
|
|
int fm_region;
|
|
|
|
#endif
|
2006-10-19 09:42:58 +00:00
|
|
|
bool audioscrobbler; /* Audioscrobbler logging */
|
2006-10-05 12:40:13 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
/* If values are just added to the end, no need to bump plugin API
|
|
|
|
version. */
|
|
|
|
/* new stuff to be added at the end */
|
|
|
|
|
|
|
|
#if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
|
|
|
|
/* Encoder Settings Start - keep these together */
|
|
|
|
struct mp3_enc_config mp3_enc_config;
|
|
|
|
#if 0 /* These currently contain no members but their places in line
|
|
|
|
should be held */
|
2006-11-24 19:49:04 +00:00
|
|
|
struct aiff_enc_config aiff_enc_config;
|
2006-11-06 18:07:30 +00:00
|
|
|
struct wav_enc_config wav_enc_config;
|
|
|
|
struct wavpack_enc_config wavpack_enc_config;
|
|
|
|
#endif
|
|
|
|
/* Encoder Settings End */
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
2007-02-14 14:40:24 +00:00
|
|
|
bool cuesheet;
|
2007-03-01 11:14:46 +00:00
|
|
|
int start_in_screen;
|
2007-03-07 01:16:25 +00:00
|
|
|
#if defined(HAVE_RTC_ALARM) && \
|
|
|
|
(defined(HAVE_RECORDING) || CONFIG_TUNER)
|
|
|
|
int alarm_wake_up_screen;
|
|
|
|
#endif
|
2007-04-16 09:14:36 +00:00
|
|
|
/* customizable icons */
|
2007-04-16 14:33:29 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-04-16 09:14:36 +00:00
|
|
|
unsigned char icon_file[MAX_FILENAME+1];
|
|
|
|
unsigned char viewers_icon_file[MAX_FILENAME+1];
|
2007-04-16 14:33:29 +00:00
|
|
|
#endif
|
2007-04-16 09:14:36 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
unsigned char remote_icon_file[MAX_FILENAME+1];
|
|
|
|
unsigned char remote_viewers_icon_file[MAX_FILENAME+1];
|
|
|
|
#endif
|
2007-06-17 21:16:34 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
unsigned char colors_file[MAX_FILENAME+1];
|
|
|
|
#endif
|
2007-04-22 13:02:24 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2007-10-07 15:02:02 +00:00
|
|
|
int buttonlight_timeout;
|
2007-04-22 13:02:24 +00:00
|
|
|
#endif
|
2007-05-08 06:45:38 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
int buttonlight_brightness;
|
|
|
|
#endif
|
2007-07-22 21:02:24 +00:00
|
|
|
#ifndef HAVE_SCROLLWHEEL
|
2007-05-27 15:08:56 +00:00
|
|
|
int list_accel_start_delay; /* ms before we start increaseing step size */
|
|
|
|
int list_accel_wait; /* ms between increases */
|
2007-07-22 21:02:24 +00:00
|
|
|
#endif
|
2007-08-27 16:04:32 +00:00
|
|
|
#ifdef HAVE_USBSTACK
|
|
|
|
int usb_stack_mode; /* device or host */
|
|
|
|
unsigned char usb_stack_device_driver[32]; /* usb device driver to load */
|
|
|
|
#endif
|
2008-01-21 09:48:44 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
int keyclick; /* keyclick volume */
|
|
|
|
int keyclick_repeats; /* keyclick on repeats */
|
|
|
|
#endif
|
2008-01-29 06:57:54 +00:00
|
|
|
unsigned char playlist_catalog_dir[MAX_FILENAME+1];
|
2008-05-04 14:23:02 +00:00
|
|
|
bool study_mode; /* study mode enabled */
|
|
|
|
int study_hop_step; /* hop step in study mode, in seconds */
|
2002-06-27 00:20:00 +00:00
|
|
|
};
|
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/** global variables **/
|
|
|
|
extern long lasttime;
|
2002-06-27 00:20:00 +00:00
|
|
|
/* global settings */
|
|
|
|
extern struct user_settings global_settings;
|
2007-01-24 02:19:22 +00:00
|
|
|
/* global status */
|
|
|
|
extern struct system_status global_status;
|
2006-08-15 09:38:13 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
#endif /* __SETTINGS_H__ */
|