move w32-specific resources to a separate file to prevent building them on other...
[Rockbox.git] / apps / settings.h
blobd0e2a490a4a57ab67f95beb1413d392e53bd3008
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by wavey@wavey.org
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #ifndef __SETTINGS_H__
21 #define __SETTINGS_H__
23 #include <stdbool.h>
24 #include "inttypes.h"
25 #include "config.h"
26 #include "file.h"
27 #include "dircache.h"
28 #include "timefuncs.h"
29 #include "tagcache.h"
30 #ifndef __PCTOOL__
31 #include "button.h"
32 #endif
34 #if CONFIG_CODEC == SWCODEC
35 #include "audio.h"
36 #endif
38 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
39 #include "backlight.h" /* for [MIN|MAX]_BRIGHTNESS_SETTING */
40 #endif
42 struct opt_items {
43 unsigned const char* string;
44 int32_t voice_id;
47 /** Setting values defines **/
49 /* name of directory where configuration, fonts and other data
50 * files are stored */
51 #ifdef __PCTOOL__
52 #define ROCKBOX_DIR "."
53 #define ROCKBOX_DIR_LEN 1
54 #else
55 #define ROCKBOX_DIR "/.rockbox"
56 #define ROCKBOX_DIR_LEN 9
57 #endif
59 #define FONT_DIR ROCKBOX_DIR "/fonts"
60 #define LANG_DIR ROCKBOX_DIR "/langs"
61 #define WPS_DIR ROCKBOX_DIR "/wps"
62 #define THEME_DIR ROCKBOX_DIR "/themes"
63 #define ICON_DIR ROCKBOX_DIR "/icons"
65 #define PLUGIN_DIR ROCKBOX_DIR "/rocks"
66 #define PLUGIN_GAMES_DIR PLUGIN_DIR "/games"
67 #define PLUGIN_APPS_DIR PLUGIN_DIR "/apps"
68 #define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos"
69 #define VIEWERS_DIR PLUGIN_DIR "/viewers"
71 #define BACKDROP_DIR ROCKBOX_DIR "/backdrops"
72 #define REC_BASE_DIR "/"
73 #define EQS_DIR ROCKBOX_DIR "/eqs"
74 #define CODECS_DIR ROCKBOX_DIR "/codecs"
75 #define RECPRESETS_DIR ROCKBOX_DIR "/recpresets"
76 #define FMPRESET_PATH ROCKBOX_DIR "/fmpresets"
78 #define VIEWERS_CONFIG ROCKBOX_DIR "/viewers.config"
79 #define CONFIGFILE ROCKBOX_DIR "/config.cfg"
80 #define FIXEDSETTINGSFILE ROCKBOX_DIR "/fixed.cfg"
82 #define MAX_FILENAME 32
85 #define BOOKMARK_NO 0
86 #define BOOKMARK_YES 1
87 #define BOOKMARK_ASK 2
88 #define BOOKMARK_UNIQUE_ONLY 2
89 #define BOOKMARK_RECENT_ONLY_YES 3
90 #define BOOKMARK_RECENT_ONLY_ASK 4
92 #define TRIG_MODE_OFF 0
93 #define TRIG_MODE_NOREARM 1
94 #define TRIG_MODE_REARM 2
96 #define TRIG_DURATION_COUNT 13
97 extern const struct opt_items trig_durations[TRIG_DURATION_COUNT];
99 #define CROSSFADE_ENABLE_SHUFFLE 1
100 #define CROSSFADE_ENABLE_TRACKSKIP 2
101 #define CROSSFADE_ENABLE_SHUFFLE_AND_TRACKSKIP 3
102 #define CROSSFADE_ENABLE_ALWAYS 4
104 #define FOLDER_ADVANCE_OFF 0
105 #define FOLDER_ADVANCE_NEXT 1
106 #define FOLDER_ADVANCE_RANDOM 2
108 /* repeat mode options */
109 enum
111 REPEAT_OFF,
112 REPEAT_ALL,
113 REPEAT_ONE,
114 REPEAT_SHUFFLE,
115 #ifdef AB_REPEAT_ENABLE
116 REPEAT_AB,
117 #endif
118 NUM_REPEAT_MODES
121 /* dir filter options */
122 /* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
123 * Any new rockbox browse filter modes (accessible through the menu)
124 * must be added after NUM_FILTER_MODES. */
125 enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
126 NUM_FILTER_MODES,
127 SHOW_WPS, SHOW_RWPS, SHOW_FMR, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS};
129 /* recursive dir insert options */
130 enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
132 /* replaygain types */
133 enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE };
135 /* show path types */
136 enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
138 /* Alarm settings */
139 #ifdef HAVE_RTC_ALARM
140 enum { ALARM_START_WPS = 0,
141 #if CONFIG_TUNER
142 ALARM_START_FM,
143 #endif
144 #ifdef HAVE_RECORDING
145 ALARM_START_REC,
146 #endif
147 ALARM_START_COUNT
149 #if CONFIG_TUNER && defined(HAVE_RECORDING)
150 #define ALARM_SETTING_TEXT "wps,fm,rec"
151 #elif CONFIG_TUNER
152 #define ALARM_SETTING_TEXT "wps,fm"
153 #elif defined(HAVE_RECORDING)
154 #define ALARM_SETTING_TEXT "wps,rec"
155 #endif
157 #endif /* HAVE_RTC_ALARM */
158 /** virtual pointer stuff.. move to another .h maybe? **/
159 /* These define "virtual pointers", which could either be a literal string,
160 or a mean a string ID if the pointer is in a certain range.
161 This helps to save space for menus and options. */
163 #define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
164 #ifdef SIMULATOR
165 /* a space which is defined in stubs.c */
166 extern unsigned char vp_dummy[VIRT_SIZE];
167 #define VIRT_PTR vp_dummy
168 #elif CONFIG_CPU==DM320
169 /* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
170 #define VIRT_PTR ((unsigned char*)0x4000)
171 #else
172 /* a location where we won't store strings, 0 is the fastest */
173 #define VIRT_PTR ((unsigned char*)0)
174 #endif
176 /* form a "virtual pointer" out of a language ID */
177 #define ID2P(id) (VIRT_PTR + id)
179 /* resolve a pointer which could be a virtualized ID or a literal */
180 #define P2STR(p) (char *)((p>=VIRT_PTR && p<=VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
182 /* get the string ID from a virtual pointer, -1 if not virtual */
183 #define P2ID(p) ((p>=VIRT_PTR && p<=VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
185 /* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
186 Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
187 simplicity. */
191 /** function prototypes **/
193 /* argument bits for settings_load() */
194 #define SETTINGS_RTC 1 /* only the settings from the RTC nonvolatile RAM */
195 #define SETTINGS_HD 2 /* only the settings from the disk sector */
196 #define SETTINGS_ALL 3 /* both */
197 void settings_load(int which);
198 bool settings_load_config(const char* file, bool apply);
200 void status_save( void );
201 int settings_save(void);
202 /* defines for the options paramater */
203 enum {
204 SETTINGS_SAVE_CHANGED = 0,
205 SETTINGS_SAVE_ALL,
206 SETTINGS_SAVE_THEME,
207 #ifdef HAVE_RECORDING
208 SETTINGS_SAVE_RECPRESETS,
209 #endif
210 #if CONFIG_CODEC == SWCODEC
211 SETTINGS_SAVE_EQPRESET,
212 #endif
214 bool settings_save_config(int options);
216 void settings_reset(void);
217 void sound_settings_apply(void);
218 void settings_apply(void);
219 void settings_apply_pm_range(void);
220 void settings_display(void);
222 enum optiontype { INT, BOOL };
224 const struct settings_list* find_setting(void* variable, int *id);
225 bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
226 void talk_setting(void *global_settings_variable);
227 bool set_sound(const unsigned char * string,
228 int* variable, int setting);
229 bool set_bool_options(const char* string, bool* variable,
230 const char* yes_str, int yes_voice,
231 const char* no_str, int no_voice,
232 void (*function)(bool));
234 bool set_bool(const char* string, bool* variable );
235 bool set_option(const char* string, void* variable, enum optiontype type,
236 const struct opt_items* options, int numoptions, void (*function)(int));
237 bool set_int(const unsigned char* string, const char* unit, int voice_unit,
238 int* variable,
239 void (*function)(int), int step, int min, int max,
240 void (*formatter)(char*, size_t, int, const char*) );
241 /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
242 bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
243 int* variable,
244 void (*function)(int), int step, int min, int max,
245 void (*formatter)(char*, size_t, int, const char*),
246 int32_t (*get_talk_id)(int, int));
248 /* the following are either not in setting.c or shouldnt be */
249 bool set_time_screen(const char* string, struct tm *tm);
250 int read_line(int fd, char* buffer, int buffer_size);
251 void set_file(char* filename, char* setting, int maxlen);
254 /** global_settings and global_status struct definitions **/
256 struct system_status
258 int resume_index; /* index in playlist (-1 for no active resume) */
259 int resume_first_index; /* index of first track in playlist */
260 uint32_t resume_offset; /* byte offset in mp3 file */
261 int resume_seed; /* shuffle seed (-1=no resume shuffle 0=sorted
262 >0=shuffled) */
263 int runtime; /* current runtime since last charge */
264 int topruntime; /* top known runtime */
265 #ifdef HAVE_DIRCACHE
266 int dircache_size; /* directory cache structure last size, 22 bits */
267 #endif
268 #if CONFIG_TUNER
269 int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
270 relative to MIN_FREQ */
271 #endif
272 char last_screen;
273 int viewer_icon_count;
276 struct user_settings
278 /* audio settings */
280 int volume; /* audio output volume in decibels range depends on the dac */
281 int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
282 int bass; /* bass boost/cut in decibels */
283 int treble; /* treble boost/cut in decibels */
284 int channel_config; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
285 int stereo_width; /* 0-255% */
287 #if CONFIG_CODEC != SWCODEC
288 int loudness; /* loudness eq: 0-100 0=off 100=max */
289 int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
290 int mdb_strength; /* 0-127dB */
291 int mdb_harmonics; /* 0-100% */
292 int mdb_center; /* 20-300Hz */
293 int mdb_shape; /* 50-300Hz */
294 bool mdb_enable; /* true/false */
295 bool superbass; /* true/false */
296 #endif
298 #ifdef HAVE_WM8758
299 int bass_cutoff;
300 int treble_cutoff;
301 #endif
303 #if CONFIG_CODEC == SWCODEC
304 int crossfade; /* Enable crossfade (0=off,1=shuffle,2=trackskip,3=shuff&trackskip,4=always) */
305 int crossfade_fade_in_delay; /* Fade in delay (0-15s) */
306 int crossfade_fade_out_delay; /* Fade out delay (0-15s) */
307 int crossfade_fade_in_duration; /* Fade in duration (0-15s) */
308 int crossfade_fade_out_duration; /* Fade out duration (0-15s) */
309 int crossfade_fade_out_mixmode; /* Fade out mode (0=crossfade,1=mix) */
310 #endif
311 #ifdef HAVE_RECORDING
312 #if CONFIG_CODEC == SWCODEC
313 int rec_format; /* record format index */
314 #else
315 int rec_quality; /* 0-7 */
316 #endif /* CONFIG_CODEC == SWCODEC */
317 int rec_source; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
318 int rec_frequency; /* 0 = 44.1kHz (depends on target)
319 1 = 48kHz
320 2 = 32kHz
321 3 = 22.05kHz
322 4 = 24kHz
323 5 = 16kHz */
324 int rec_channels; /* 0=Stereo, 1=Mono */
325 int rec_mic_gain; /* depends on target */
326 int rec_left_gain; /* depends on target */
327 int rec_right_gain; /* depands on target */
328 bool rec_editable; /* true means that the bit reservoir is off */
330 /* note: timesplit setting is not saved */
331 int rec_timesplit; /* 0 = off,
332 1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
333 5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
334 9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
335 13= 24:00 */
336 int rec_sizesplit; /* 0 = off,
337 1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
338 5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
339 9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
340 13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
341 int rec_split_type; /* split/stop */
342 int rec_split_method; /* time/filesize */
344 int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
345 char rec_directory[MAX_FILENAME+1];
346 int cliplight; /* 0 = off
347 1 = main lcd
348 2 = main and remote lcd
349 3 = remote lcd */
351 int rec_start_thres; /* negative: db, positive: % range -87 .. 100 */
352 int rec_start_duration; /* index of trig_durations */
353 int rec_stop_thres; /* negative: db, positive: % */
354 int rec_stop_postrec; /* negative: db, positive: % range -87 .. 100 */
355 int rec_stop_gap; /* index of trig_durations */
356 int rec_trigger_mode; /* see TRIG_MODE_XXX constants */
357 int rec_trigger_type; /* what to do when trigger released */
359 #ifdef HAVE_AGC
360 int rec_agc_preset_mic; /* AGC mic preset modes:
361 0 = Off
362 1 = Safety (clip)
363 2 = Live (slow)
364 3 = DJ-Set (slow)
365 4 = Medium
366 5 = Voice (fast) */
367 int rec_agc_preset_line; /* AGC line-in preset modes:
368 0 = Off
369 1 = Safety (clip)
370 2 = Live (slow)
371 3 = DJ-Set (slow)
372 4 = Medium
373 5 = Voice (fast) */
374 int rec_agc_maxgain_mic; /* AGC maximum mic gain */
375 int rec_agc_maxgain_line; /* AGC maximum line-in gain */
376 int rec_agc_cliptime; /* 0.2, 0.4, 0.6, 0.8, 1s */
377 #endif
378 #endif /* HAVE_RECORDING */
379 /* device settings */
381 #ifdef HAVE_LCD_CONTRAST
382 int contrast; /* lcd contrast */
383 #endif
384 bool invert; /* invert display */
385 int cursor_style; /* style of the selection cursor */
386 bool flip_display; /* turn display (and button layout) by 180 degrees */
387 int poweroff; /* power off timer */
388 int backlight_timeout; /* backlight off timeout: 0-18 0=never,
389 1=always,
390 then according to timeout_values[] */
391 #if CONFIG_CHARGING
392 int backlight_timeout_plugged;
393 #endif
395 #ifdef HAVE_BACKLIGHT_PWM_FADING
396 int backlight_fade_in; /* backlight fade in timing: 0..3 */
397 int backlight_fade_out; /* backlight fade in timing: 0..7 */
398 #endif
399 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
400 int brightness;
401 #endif
402 int battery_capacity; /* in mAh */
403 #if BATTERY_TYPES_COUNT > 1
404 int battery_type; /* for units which can take multiple types (Ondio). */
405 #endif
406 #ifdef HAVE_SPDIF_POWER
407 bool spdif_enable; /* S/PDIF power on/off */
408 #endif
410 #if CONFIG_TUNER
411 unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
412 #endif
413 unsigned char font_file[MAX_FILENAME+1]; /* last font */
414 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
415 unsigned char lang_file[MAX_FILENAME+1]; /* last language */
417 /* misc options */
419 int repeat_mode; /* 0=off 1=repeat all 2=repeat one 3=shuffle 4=ab */
420 int dirfilter; /* 0=display all, 1=only supported, 2=only music,
421 3=dirs+playlists, 4=ID3 database */
422 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
423 int show_filename_ext; /* show filename extensions in file browser?
424 0 = no, 1 = yes, 2 = only unknown 0 */
425 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
426 int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
427 int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
428 bool playlist_shuffle;
429 bool play_selected; /* Plays selected file even in shuffle mode */
430 int ff_rewind_min_step; /* FF/Rewind minimum step size */
431 int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
433 #ifndef HAVE_FLASH_STORAGE
434 int disk_spindown; /* time until disk spindown, in seconds (0=off) */
435 int buffer_margin; /* MP3 buffer watermark margin, in seconds */
436 #endif
438 int peak_meter_release; /* units per read out */
439 int peak_meter_hold; /* hold time for peak meter in 1/100 s */
440 int peak_meter_clip_hold; /* hold time for clips */
441 bool peak_meter_dbfs; /* show linear or dbfs values */
442 int peak_meter_min; /* range minimum */
443 int peak_meter_max; /* range maximum */
444 #ifdef HAVE_RECORDING
445 bool peak_meter_clipcounter; /* clipping count indicator */
446 #endif
447 bool car_adapter_mode; /* 0=off 1=on */
449 /* show status bar */
450 bool statusbar; /* 0=hide, 1=show */
452 #if CONFIG_KEYPAD == RECORDER_PAD
453 /* show button bar */
454 bool buttonbar; /* 0=hide, 1=show */
455 #endif
457 /* show scroll bar */
458 bool scrollbar; /* 0=hide, 1=show */
460 /* goto current song when exiting WPS */
461 bool browse_current; /* 1=goto current song,
462 0=goto previous location */
465 int scroll_speed; /* long texts scrolling speed: 1-30 */
466 int bidir_limit; /* bidir scroll length limit */
467 int scroll_delay; /* delay (in 1/10s) before starting scroll */
468 int scroll_step; /* pixels to advance per update */
469 #ifdef HAVE_REMOTE_LCD
470 int remote_scroll_speed; /* long texts scrolling speed: 1-30 */
471 int remote_scroll_delay; /* delay (in 1/10s) before starting scroll */
472 int remote_scroll_step; /* pixels to advance per update */
473 int remote_bidir_limit; /* bidir scroll length limit */
474 #endif
476 #ifdef HAVE_LCD_BITMAP
477 bool offset_out_of_view;
478 int screen_scroll_step;
479 #endif
481 /* auto bookmark settings */
482 int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
483 int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
484 int usemrb; /* use MRB list: 0=No, 1=Yes*/
485 #ifdef HAVE_LCD_CHARCELLS
486 int jump_scroll; /* Fast jump when scrolling */
487 int jump_scroll_delay; /* Delay between jump scroll screens */
488 #endif
489 bool fade_on_stop; /* fade on pause/unpause/stop */
490 bool caption_backlight; /* turn on backlight at end and start of track */
492 #if CONFIG_TUNER
493 int fm_freq_step; /* Frequency step for manual tuning, in kHz */
494 bool fm_force_mono; /* Forces Mono mode if true */
495 bool fm_full_range; /* Enables full 10MHz-160MHz range if true, else
496 only 88MHz-108MHz */
497 #endif
499 int max_files_in_dir; /* Max entries in directory (file browser) */
500 int max_files_in_playlist; /* Max entries in playlist */
501 bool show_icons; /* 0=hide 1=show */
502 int recursive_dir_insert; /* should directories be inserted recursively */
504 #if CONFIG_CODEC == MAS3507D
505 bool line_in; /* false=off, true=active */
506 #endif
508 /* playlist viewer settings */
509 bool playlist_viewer_icons; /* display icons on viewer */
510 bool playlist_viewer_indices; /* display playlist indices on viewer */
511 int playlist_viewer_track_display; /* how to display tracks in viewer */
513 /* voice UI settings */
514 bool talk_menu; /* enable voice UI */
515 int talk_dir; /* voiced directories mode: 0=off 1=number 2=spell */
516 bool talk_dir_clip; /* use directory .talk clips */
517 int talk_file; /* voice file mode: 0=off, 1=number, 2=spell */
518 bool talk_file_clip; /* use file .talk clips */
519 bool talk_filetype; /* say file type */
520 bool talk_battery_level;
522 /* file browser sorting */
523 int sort_file; /* 0=alpha, 1=date, 2=date (new first), 3=type */
524 int sort_dir; /* 0=alpha, 1=date (old first), 2=date (new first) */
526 #ifdef HAVE_REMOTE_LCD
527 /* remote lcd */
528 int remote_contrast; /* lcd contrast: 0-63 0=low 63=high */
529 bool remote_invert; /* invert display */
530 bool remote_flip_display; /* turn display (and button layout) by 180 degrees */
531 int remote_backlight_timeout; /* backlight off timeout: 0-18 0=never,
532 1=always,
533 then according to timeout_values[] */
534 int remote_backlight_timeout_plugged;
535 bool remote_caption_backlight; /* turn on backlight at end and start of track */
536 #ifdef HAS_REMOTE_BUTTON_HOLD
537 int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
538 switch is on */
539 #endif
540 #ifdef HAVE_REMOTE_LCD_TICKING
541 bool remote_reduce_ticking; /* 0=normal operation,
542 1=EMI reduce on with cost more CPU. */
543 #endif
544 #endif /* HAVE_REMOTE_LCD */
546 int next_folder; /* move to next folder */
547 bool runtimedb; /* runtime database active? */
549 #if CONFIG_CODEC == SWCODEC
550 bool replaygain; /* enable replaygain */
551 bool replaygain_noclip; /* scale to prevent clips */
552 int replaygain_type; /* 0=track gain, 1=album gain, 2=track gain if
553 shuffle is on, album gain otherwise */
554 int replaygain_preamp; /* scale replaygained tracks by this */
555 int beep; /* system beep volume when changing tracks etc. */
557 /* Crossfeed settings */
558 bool crossfeed; /* enable crossfeed */
559 unsigned int crossfeed_direct_gain; /* dB x 10 */
560 unsigned int crossfeed_cross_gain; /* dB x 10 */
561 unsigned int crossfeed_hf_attenuation; /* dB x 10 */
562 unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
563 #endif
564 #ifdef HAVE_DIRCACHE
565 bool dircache; /* enable directory cache */
566 #endif
567 #ifdef HAVE_TAGCACHE
568 #ifdef HAVE_TC_RAMCACHE
569 bool tagcache_ram; /* load tagcache to ram? */
570 #endif
571 bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
572 #endif
573 int default_codepage; /* set default codepage for tag conversion */
574 #ifdef HAVE_REMOTE_LCD
575 unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
576 #endif
578 #if CONFIG_CODEC == SWCODEC
579 bool eq_enabled; /* Enable equalizer */
580 unsigned int eq_precut; /* dB */
582 /* Order is important here, must be cutoff, q, then gain for each band.
583 See dsp_eq_update_data in dsp.c for why. */
585 /* Band 0 settings */
586 int eq_band0_cutoff; /* Hz */
587 int eq_band0_q;
588 int eq_band0_gain; /* +/- dB */
590 /* Band 1 settings */
591 int eq_band1_cutoff; /* Hz */
592 int eq_band1_q;
593 int eq_band1_gain; /* +/- dB */
595 /* Band 2 settings */
596 int eq_band2_cutoff; /* Hz */
597 int eq_band2_q;
598 int eq_band2_gain; /* +/- dB */
600 /* Band 3 settings */
601 int eq_band3_cutoff; /* Hz */
602 int eq_band3_q;
603 int eq_band3_gain; /* +/- dB */
605 /* Band 4 settings */
606 int eq_band4_cutoff; /* Hz */
607 int eq_band4_q;
608 int eq_band4_gain; /* +/- dB */
610 bool dithering_enabled;
611 #endif
614 #if LCD_DEPTH > 1
615 unsigned char backdrop_file[MAX_FILENAME+1]; /* backdrop bitmap file */
616 #endif
618 bool warnon_erase_dynplaylist; /* warn when erasing dynamic playlist */
619 bool scroll_paginated; /* 0=dont 1=do */
620 #ifdef HAVE_LCD_COLOR
621 int bg_color; /* background color native format */
622 int fg_color; /* foreground color native format */
623 int lss_color; /* background color for the selector or start color for the gradient */
624 int lse_color; /* end color for the selector gradient */
625 int lst_color; /* color of the text for the selector */
626 #endif
627 bool party_mode; /* party mode - unstoppable music */
629 #ifdef HAVE_BACKLIGHT
630 bool bl_filter_first_keypress; /* filter first keypress when dark? */
631 #ifdef HAVE_REMOTE_LCD
632 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
633 #endif
634 #ifdef HAS_BUTTON_HOLD
635 int backlight_on_button_hold; /* what to do with backlight when hold
636 switch is on */
637 #endif
638 #ifdef HAVE_LCD_SLEEP
639 int lcd_sleep_after_backlight_off; /* when to put lcd to sleep after backlight
640 has turned off */
641 #endif
642 #endif /* HAVE_BACKLIGHT */
644 #ifdef HAVE_LCD_BITMAP
645 unsigned char kbd_file[MAX_FILENAME+1]; /* last keyboard */
646 #endif
648 #ifdef HAVE_USB_POWER
649 #if CONFIG_CHARGING
650 bool usb_charging;
651 #endif
652 #endif
654 bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
655 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
657 #ifdef HAVE_HEADPHONE_DETECTION
658 int unplug_mode; /* pause on headphone unplug */
659 int unplug_rw; /* time in s to rewind when pausing */
660 bool unplug_autoresume; /* disable auto-resume if no phones */
661 #endif
662 #if CONFIG_TUNER
663 int fm_region;
664 #endif
665 bool audioscrobbler; /* Audioscrobbler logging */
667 /* If values are just added to the end, no need to bump plugin API
668 version. */
669 /* new stuff to be added at the end */
671 #if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
672 /* Encoder Settings Start - keep these together */
673 struct mp3_enc_config mp3_enc_config;
674 #if 0 /* These currently contain no members but their places in line
675 should be held */
676 struct aiff_enc_config aiff_enc_config;
677 struct wav_enc_config wav_enc_config;
678 struct wavpack_enc_config wavpack_enc_config;
679 #endif
680 /* Encoder Settings End */
681 #endif /* CONFIG_CODEC == SWCODEC */
682 bool cuesheet;
683 int start_in_screen;
684 #if defined(HAVE_RTC_ALARM) && \
685 (defined(HAVE_RECORDING) || CONFIG_TUNER)
686 int alarm_wake_up_screen;
687 #endif
688 /* customizable icons */
689 #ifdef HAVE_LCD_BITMAP
690 unsigned char icon_file[MAX_FILENAME+1];
691 unsigned char viewers_icon_file[MAX_FILENAME+1];
692 #endif
693 #ifdef HAVE_REMOTE_LCD
694 unsigned char remote_icon_file[MAX_FILENAME+1];
695 unsigned char remote_viewers_icon_file[MAX_FILENAME+1];
696 #endif
697 #ifdef HAVE_LCD_COLOR
698 unsigned char colors_file[MAX_FILENAME+1];
699 #endif
700 #ifdef HAVE_BUTTON_LIGHT
701 int buttonlight_timeout;
702 #endif
703 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
704 int buttonlight_brightness;
705 #endif
706 #ifndef HAVE_SCROLLWHEEL
707 int list_accel_start_delay; /* ms before we start increaseing step size */
708 int list_accel_wait; /* ms between increases */
709 #endif
710 #ifdef HAVE_USBSTACK
711 int usb_stack_mode; /* device or host */
712 unsigned char usb_stack_device_driver[32]; /* usb device driver to load */
713 #endif
716 /** global variables **/
717 extern long lasttime;
718 /* global settings */
719 extern struct user_settings global_settings;
720 /* global status */
721 extern struct system_status global_status;
723 #endif /* __SETTINGS_H__ */