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