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