Fix reds. No need for #ifdef to save buttons anymore.
[maemo-rb.git] / apps / settings.h
blob7a6fa55e79d05cd39cc3dfe564e479aeb6a188ac
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 "audiohw.h" /* for the AUDIOHW_* defines */
30 #include "statusbar.h" /* for the statusbar values */
31 #include "quickscreen.h"
32 #include "button.h"
33 #if CONFIG_CODEC == SWCODEC
34 #include "audio.h"
35 #endif
36 #include "rbpaths.h"
38 struct opt_items {
39 unsigned const char* string;
40 int32_t voice_id;
43 /** Setting values defines **/
44 #define MAX_FILENAME 32
45 #define MAX_PATHNAME 80
48 enum {
49 BOOKMARK_NO = 0,
50 BOOKMARK_YES,
51 BOOKMARK_ASK,
52 BOOKMARK_UNIQUE_ONLY = 2,
53 BOOKMARK_RECENT_ONLY_YES,
54 BOOKMARK_RECENT_ONLY_ASK,
57 enum
59 TRIG_MODE_OFF = 0,
60 TRIG_MODE_NOREARM,
61 TRIG_MODE_REARM
64 enum
66 TRIG_TYPE_STOP = 0,
67 TRIG_TYPE_PAUSE,
68 TRIG_TYPE_NEW_FILE
71 #ifdef HAVE_CROSSFADE
72 enum {
73 CROSSFADE_ENABLE_OFF = 0,
74 CROSSFADE_ENABLE_AUTOSKIP,
75 CROSSFADE_ENABLE_MANSKIP,
76 CROSSFADE_ENABLE_SHUFFLE,
77 CROSSFADE_ENABLE_SHUFFLE_OR_MANSKIP,
78 CROSSFADE_ENABLE_ALWAYS,
80 #endif
82 enum {
83 FOLDER_ADVANCE_OFF = 0,
84 FOLDER_ADVANCE_NEXT,
85 FOLDER_ADVANCE_RANDOM,
88 /* repeat mode options */
89 enum
91 REPEAT_OFF = 0,
92 REPEAT_ALL,
93 REPEAT_ONE,
94 REPEAT_SHUFFLE,
95 #ifdef AB_REPEAT_ENABLE
96 REPEAT_AB,
97 #endif
98 NUM_REPEAT_MODES
102 /* dir filter options */
103 /* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
104 * Any new rockbox browse filter modes (accessible through the menu)
105 * must be added after NUM_FILTER_MODES. */
106 enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
107 NUM_FILTER_MODES,
108 SHOW_WPS, SHOW_RWPS, SHOW_FMS, SHOW_RFMS, SHOW_SBS, SHOW_RSBS, SHOW_FMR, SHOW_CFG,
109 SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS, SHOW_M3U};
111 /* file and dir sort options */
112 enum { SORT_ALPHA, SORT_DATE, SORT_DATE_REVERSED, SORT_TYPE, /* available as settings */
113 SORT_ALPHA_REVERSED, SORT_TYPE_REVERSED }; /* internal use only */
114 enum { SORT_INTERPRET_AS_DIGIT, SORT_INTERPRET_AS_NUMBER };
116 /* recursive dir insert options */
117 enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
119 /* replaygain types */
120 enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE, REPLAYGAIN_OFF };
122 /* show path types */
123 enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
125 /* scrollbar visibility/position */
126 enum { SCROLLBAR_OFF = 0, SCROLLBAR_LEFT, SCROLLBAR_RIGHT };
128 /* autoresume settings */
129 enum { AUTORESUME_NEXTTRACK_NEVER = 0, AUTORESUME_NEXTTRACK_ALWAYS,
130 AUTORESUME_NEXTTRACK_CUSTOM};
132 /* Alarm settings */
133 #ifdef HAVE_RTC_ALARM
134 enum { ALARM_START_WPS = 0,
135 #if CONFIG_TUNER
136 ALARM_START_FM,
137 #endif
138 #ifdef HAVE_RECORDING
139 ALARM_START_REC,
140 #endif
141 ALARM_START_COUNT
143 #if CONFIG_TUNER && defined(HAVE_RECORDING)
144 #define ALARM_SETTING_TEXT "wps,fm,rec"
145 #elif CONFIG_TUNER
146 #define ALARM_SETTING_TEXT "wps,fm"
147 #elif defined(HAVE_RECORDING)
148 #define ALARM_SETTING_TEXT "wps,rec"
149 #endif
151 #endif /* HAVE_RTC_ALARM */
153 /* Keyclick stuff */
155 /* Not really a setting but several files should stay synced */
156 #define KEYCLICK_DURATION 2
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 #if defined(CPU_S5L870X)
165 /* the S5L870X has IRAM at 0, so we use 0xffff bytes right after that */
166 #define VIRT_PTR ((unsigned char*)0x40000)
167 #elif CONFIG_CPU==DM320
168 /* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
169 #define VIRT_PTR ((unsigned char*)0x4000)
170 #else
171 /* a location where we won't store strings, 0 is the fastest */
172 #define VIRT_PTR ((unsigned char*)0)
173 #endif
175 /* form a "virtual pointer" out of a language ID */
176 #define ID2P(id) (VIRT_PTR + id)
178 /* resolve a pointer which could be a virtualized ID or a literal */
179 #define P2STR(p) (char *)((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
181 /* get the string ID from a virtual pointer, -1 if not virtual */
182 #define P2ID(p) ((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
184 /* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
185 Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
186 simplicity. */
190 /** function prototypes **/
192 /* argument bits for settings_load() */
193 #define SETTINGS_RTC (BIT_N(0)) /* only the settings from the RTC nonvolatile RAM */
194 #define SETTINGS_HD (BIT_N(1)) /* only the settings from the disk sector */
195 #define SETTINGS_ALL (SETTINGS_RTC|SETTINGS_HD) /* both */
196 void settings_load(int which) INIT_ATTR;
197 bool settings_load_config(const char* file, bool apply);
199 void status_save(void);
200 int settings_save(void);
201 /* defines for the options paramater */
202 enum {
203 SETTINGS_SAVE_CHANGED = 0,
204 SETTINGS_SAVE_ALL,
205 SETTINGS_SAVE_THEME,
206 SETTINGS_SAVE_SOUND,
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 struct settings_list;
217 void reset_setting(const struct settings_list *setting, void *var);
218 void settings_reset(void);
219 void sound_settings_apply(void);
221 /* call this after loading a .wps/.rwps or other skin files, so that the
222 * skin buffer is reset properly
224 void settings_apply_skins(void);
226 void settings_apply(bool read_disk);
227 void settings_apply_pm_range(void);
228 void settings_display(void);
230 enum optiontype { INT, BOOL };
232 const struct settings_list* find_setting(const void* variable, int *id);
233 const struct settings_list* find_setting_by_cfgname(const char* name, int *id);
234 bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
235 bool cfg_string_to_int(int setting_id, int* out, const char* str);
236 bool cfg_to_string(int setting_id, char* buf, int buf_len);
237 bool set_bool_options(const char* string, const bool* variable,
238 const char* yes_str, int yes_voice,
239 const char* no_str, int no_voice,
240 void (*function)(bool));
242 bool set_bool(const char* string, const bool* variable);
243 bool set_int(const unsigned char* string, const char* unit, int voice_unit,
244 const int* variable,
245 void (*function)(int), int step, int min, int max,
246 const char* (*formatter)(char*, size_t, int, const char*) );
248 /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
249 bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
250 const int* variable,
251 void (*function)(int), int step, int min, int max,
252 const char* (*formatter)(char*, size_t, int, const char*),
253 int32_t (*get_talk_id)(int, int));
255 void set_file(const char* filename, char* setting, const int maxlen);
257 bool set_option(const char* string, const void* variable, enum optiontype type,
258 const struct opt_items* options, int numoptions, void (*function)(int));
262 /** global_settings and global_status struct definitions **/
264 struct system_status
266 int resume_index; /* index in playlist (-1 for no active resume) */
267 uint32_t resume_offset; /* byte offset in mp3 file */
268 int runtime; /* current runtime since last charge */
269 int topruntime; /* top known runtime */
270 #ifdef HAVE_DIRCACHE
271 int dircache_size; /* directory cache structure last size, 22 bits */
272 #endif
273 #if CONFIG_TUNER
274 int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
275 relative to MIN_FREQ */
276 #endif
277 signed char last_screen;
278 int viewer_icon_count;
279 int last_volume_change; /* tick the last volume change happened. skins use this */
280 #ifdef HAVE_LCD_BITMAP
281 int font_id[NB_SCREENS]; /* font id of the settings font for each screen */
282 #endif
285 struct user_settings
287 /* audio settings */
289 int volume; /* audio output volume in decibels range depends on the dac */
290 int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
291 int bass; /* bass boost/cut in decibels */
292 int treble; /* treble boost/cut in decibels */
293 int channel_config; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
294 int stereo_width; /* 0-255% */
296 #if CONFIG_CODEC != SWCODEC
297 int loudness; /* loudness eq: 0-100 0=off 100=max */
298 int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
299 int mdb_strength; /* 0-127dB */
300 int mdb_harmonics; /* 0-100% */
301 int mdb_center; /* 20-300Hz */
302 int mdb_shape; /* 50-300Hz */
303 bool mdb_enable; /* true/false */
304 bool superbass; /* true/false */
305 #endif
307 #ifdef AUDIOHW_HAVE_BASS_CUTOFF
308 int bass_cutoff;
309 #endif
310 #ifdef AUDIOHW_HAVE_TREBLE_CUTOFF
311 int treble_cutoff;
312 #endif
314 #if CONFIG_CODEC == SWCODEC
315 #ifdef HAVE_CROSSFADE
316 /* Crossfade */
317 int crossfade; /* Enable crossfade (0=off, 1=shuffle, 2=trackskip,
318 3=shuff&trackskip, 4=always) */
319 int crossfade_fade_in_delay; /* Fade in delay (0-15s) */
320 int crossfade_fade_out_delay; /* Fade out delay (0-15s) */
321 int crossfade_fade_in_duration; /* Fade in duration (0-15s) */
322 int crossfade_fade_out_duration; /* Fade out duration (0-15s) */
323 int crossfade_fade_out_mixmode; /* Fade out mode (0=crossfade,1=mix) */
324 #endif
326 /* Replaygain */
327 bool replaygain_noclip; /* scale to prevent clips */
328 int replaygain_type; /* 0=track gain, 1=album gain, 2=track gain if
329 shuffle is on, album gain otherwise, 4=off */
330 int replaygain_preamp; /* scale replaygained tracks by this */
332 /* Crossfeed */
333 bool crossfeed; /* enable crossfeed */
334 unsigned int crossfeed_direct_gain; /* dB x 10 */
335 unsigned int crossfeed_cross_gain; /* dB x 10 */
336 unsigned int crossfeed_hf_attenuation; /* dB x 10 */
337 unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
339 /* EQ */
340 bool eq_enabled; /* Enable equalizer */
341 unsigned int eq_precut; /* dB */
343 /* Order is important here, must be cutoff, q, then gain for each band.
344 See dsp_set_eq_coefs in dsp.c for why. */
346 /* Band 0 settings */
347 int eq_band0_cutoff; /* Hz */
348 int eq_band0_q;
349 int eq_band0_gain; /* +/- dB */
351 /* Band 1 settings */
352 int eq_band1_cutoff; /* Hz */
353 int eq_band1_q;
354 int eq_band1_gain; /* +/- dB */
356 /* Band 2 settings */
357 int eq_band2_cutoff; /* Hz */
358 int eq_band2_q;
359 int eq_band2_gain; /* +/- dB */
361 /* Band 3 settings */
362 int eq_band3_cutoff; /* Hz */
363 int eq_band3_q;
364 int eq_band3_gain; /* +/- dB */
366 /* Band 4 settings */
367 int eq_band4_cutoff; /* Hz */
368 int eq_band4_q;
369 int eq_band4_gain; /* +/- dB */
371 /* Misc. swcodec */
372 int beep; /* system beep volume when changing tracks etc. */
373 int keyclick; /* keyclick volume */
374 int keyclick_repeats; /* keyclick on repeats */
375 bool dithering_enabled;
376 #ifdef HAVE_PITCHSCREEN
377 bool timestretch_enabled;
378 #endif
379 #endif /* CONFIG_CODEC == SWCODEC */
381 #ifdef HAVE_RECORDING
382 #if CONFIG_CODEC == SWCODEC
383 int rec_format; /* record format index */
384 int rec_mono_mode; /* how to create mono: L, R, L+R */
386 /* Encoder Settings Start - keep these together */
387 struct mp3_enc_config mp3_enc_config;
388 #if 0 /* These currently contain no members but their places in line
389 should be held */
390 struct aiff_enc_config aiff_enc_config;
391 struct wav_enc_config wav_enc_config;
392 struct wavpack_enc_config wavpack_enc_config;
393 #endif
394 /* Encoder Settings End */
396 #else
397 int rec_quality; /* 0-7 */
398 #endif /* CONFIG_CODEC == SWCODEC */
399 int rec_source; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
400 int rec_frequency; /* 0 = 44.1kHz (depends on target)
401 1 = 48kHz
402 2 = 32kHz
403 3 = 22.05kHz
404 4 = 24kHz
405 5 = 16kHz */
406 int rec_channels; /* 0=Stereo, 1=Mono */
408 int rec_mic_gain; /* depends on target */
409 int rec_left_gain; /* depends on target */
410 int rec_right_gain; /* depends on target */
411 bool peak_meter_clipcounter; /* clipping count indicator */
412 bool rec_editable; /* true means that the bit reservoir is off */
414 /* note: timesplit setting is not saved */
415 int rec_timesplit; /* 0 = off,
416 1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
417 5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
418 9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
419 13= 24:00 */
420 int rec_sizesplit; /* 0 = off,
421 1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
422 5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
423 9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
424 13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
425 int rec_split_type; /* split/stop */
426 int rec_split_method; /* time/filesize */
428 int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
429 char rec_directory[MAX_PATHNAME+1];
430 int cliplight; /* 0 = off
431 1 = main lcd
432 2 = main and remote lcd
433 3 = remote lcd */
435 int rec_start_thres_db;
436 int rec_start_thres_linear;
437 int rec_start_duration; /* index of trig_durations */
438 int rec_stop_thres_db;
439 int rec_stop_thres_linear;
440 int rec_stop_postrec;
441 int rec_stop_gap; /* index of trig_durations */
442 int rec_trigger_mode; /* see TRIG_MODE_XXX constants */
443 int rec_trigger_type; /* what to do when trigger released */
444 #ifdef HAVE_HISTOGRAM
445 int histogram_interval; /* recording peakmeter histogram */
446 #endif
448 #ifdef HAVE_AGC
449 int rec_agc_preset_mic; /* AGC mic preset modes:
450 0 = Off
451 1 = Safety (clip)
452 2 = Live (slow)
453 3 = DJ-Set (slow)
454 4 = Medium
455 5 = Voice (fast) */
456 int rec_agc_preset_line; /* AGC line-in preset modes:
457 0 = Off
458 1 = Safety (clip)
459 2 = Live (slow)
460 3 = DJ-Set (slow)
461 4 = Medium
462 5 = Voice (fast) */
463 int rec_agc_maxgain_mic; /* AGC maximum mic gain */
464 int rec_agc_maxgain_line; /* AGC maximum line-in gain */
465 int rec_agc_cliptime; /* 0.2, 0.4, 0.6, 0.8, 1s */
466 #endif
467 #endif /* HAVE_RECORDING */
469 #if CONFIG_TUNER
470 int fm_region;
471 bool fm_force_mono; /* Forces Mono mode if true */
472 unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
473 unsigned char fms_file[MAX_FILENAME+1]; /* last fms */
474 #ifdef HAVE_REMOTE_LCD
475 unsigned char rfms_file[MAX_FILENAME+1]; /* last remote-fms */
476 #endif
477 #endif /* CONFIG_TUNER */
479 /* misc options */
480 #ifndef HAVE_WHEEL_ACCELERATION
481 int list_accel_start_delay; /* ms before we start increaseing step size */
482 int list_accel_wait; /* ms between increases */
483 #endif
485 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
486 int touchpad_sensitivity;
487 #endif
489 int pause_rewind; /* time in s to rewind when pausing */
490 #ifdef HAVE_HEADPHONE_DETECTION
491 int unplug_mode; /* pause on headphone unplug */
492 bool unplug_autoresume; /* disable auto-resume if no phones */
493 #endif
495 #ifdef HAVE_QUICKSCREEN
496 int qs_items[QUICKSCREEN_ITEM_COUNT];
497 #endif
499 #if CONFIG_RTC
500 int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
501 #endif
503 #ifdef HAVE_DISK_STORAGE
504 int disk_spindown; /* time until disk spindown, in seconds (0=off) */
505 int buffer_margin; /* audio buffer watermark margin, in seconds */
506 #endif
508 int dirfilter; /* 0=display all, 1=only supported, 2=only music,
509 3=dirs+playlists, 4=ID3 database */
510 int show_filename_ext; /* show filename extensions in file browser?
511 0 = no, 1 = yes, 2 = only unknown 0 */
512 int default_codepage; /* set default codepage for tag conversion */
513 bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
514 bool play_selected; /* Plays selected file even in shuffle mode */
515 bool party_mode; /* party mode - unstoppable music */
516 bool audioscrobbler; /* Audioscrobbler logging */
517 bool cuesheet;
518 bool car_adapter_mode; /* 0=off 1=on */
519 int start_in_screen;
520 #if defined(HAVE_RTC_ALARM) && \
521 (defined(HAVE_RECORDING) || CONFIG_TUNER)
522 int alarm_wake_up_screen;
523 #endif
524 int ff_rewind_min_step; /* FF/Rewind minimum step size */
525 int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
527 int peak_meter_release; /* units per read out */
528 int peak_meter_hold; /* hold time for peak meter in 1/100 s */
529 int peak_meter_clip_hold; /* hold time for clips */
530 bool peak_meter_dbfs; /* show linear or dbfs values */
531 int peak_meter_min; /* range minimum */
532 int peak_meter_max; /* range maximum */
534 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
535 #ifdef HAVE_LCD_BITMAP
536 unsigned char sbs_file[MAX_FILENAME+1]; /* last statusbar skin */
537 #endif
538 #ifdef HAVE_REMOTE_LCD
539 unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
540 unsigned char rsbs_file[MAX_FILENAME+1]; /* last remote statusbar skin */
541 #endif
542 unsigned char lang_file[MAX_FILENAME+1]; /* last language */
543 unsigned char playlist_catalog_dir[MAX_PATHNAME+1];
544 int skip_length; /* skip length */
545 int max_files_in_dir; /* Max entries in directory (file browser) */
546 int max_files_in_playlist; /* Max entries in playlist */
547 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
548 int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
549 bool show_icons; /* 0=hide 1=show */
550 int statusbar; /* STATUSBAR_* enum values */
551 #ifdef HAVE_REMOTE_LCD
552 int remote_statusbar;
553 #endif
555 #if CONFIG_KEYPAD == RECORDER_PAD
556 bool buttonbar; /* 0=hide, 1=show */
557 #endif
559 #ifdef HAVE_LCD_BITMAP
560 int scrollbar; /* SCROLLBAR_* enum values */
561 int scrollbar_width;
562 #endif
564 #ifdef HAVE_TOUCHSCREEN
565 int list_line_padding;
566 #endif
568 /* goto current song when exiting WPS */
569 bool browse_current; /* 1=goto current song,
570 0=goto previous location */
571 bool scroll_paginated; /* 0=dont 1=do */
572 int scroll_speed; /* long texts scrolling speed: 1-30 */
573 int bidir_limit; /* bidir scroll length limit */
574 int scroll_delay; /* delay (in 1/10s) before starting scroll */
575 int scroll_step; /* pixels to advance per update */
577 /* auto bookmark settings */
578 int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
579 int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
580 bool autoupdatebookmark;/* auto update option */
581 int usemrb; /* use MRB list: 0=No, 1=Yes, 2=One per playlist */
583 #ifdef HAVE_DIRCACHE
584 bool dircache; /* enable directory cache */
585 #endif
586 #ifdef HAVE_TAGCACHE
587 #ifdef HAVE_TC_RAMCACHE
588 bool tagcache_ram; /* load tagcache to ram? */
589 #endif
590 bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
591 bool autoresume_enable; /* enable auto-resume feature? */
592 int autoresume_automatic; /* resume next track? 0=never, 1=always,
593 2=custom */
594 unsigned char autoresume_paths[MAX_PATHNAME+1]; /* colon-separated list */
595 bool runtimedb; /* runtime database active? */
596 #endif /* HAVE_TAGCACHE */
598 #if LCD_DEPTH > 1
599 unsigned char backdrop_file[MAX_PATHNAME+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 #if BATTERY_CAPACITY_DEFAULT > 0
642 int battery_capacity; /* in mAh */
643 #endif
645 #if BATTERY_TYPES_COUNT > 1
646 int battery_type; /* for units which can take multiple types (Ondio). */
647 #endif
648 #ifdef HAVE_SPDIF_POWER
649 bool spdif_enable; /* S/PDIF power on/off */
650 #endif
651 #ifdef HAVE_USB_CHARGING_ENABLE
652 int usb_charging;
653 #endif
655 /* device settings */
656 #ifdef HAVE_LCD_CONTRAST
657 int contrast; /* lcd contrast */
658 #endif
660 #ifdef HAVE_LCD_BITMAP
661 #ifdef HAVE_LCD_INVERT
662 bool invert; /* invert display */
663 #endif
664 #ifdef HAVE_LCD_FLIP
665 bool flip_display; /* turn display (and button layout) by 180 degrees */
666 #endif
667 int cursor_style; /* style of the selection cursor */
668 int screen_scroll_step;
669 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
670 bool offset_out_of_view;
671 unsigned char icon_file[MAX_FILENAME+1];
672 unsigned char viewers_icon_file[MAX_FILENAME+1];
673 unsigned char font_file[MAX_FILENAME+1]; /* last font */
674 int glyphs_to_cache; /* default font allocation size in glyphs */
675 #ifdef HAVE_REMOTE_LCD
676 unsigned char remote_font_file[MAX_FILENAME+1]; /* last font */
677 #endif
678 unsigned char kbd_file[MAX_FILENAME+1]; /* last keyboard */
679 #endif /* HAVE_LCD_BITMAP */
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 #ifdef HAS_REMOTE_BUTTON_HOLD
726 int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
727 switch is on */
728 #endif
729 #ifdef HAVE_REMOTE_LCD_TICKING
730 bool remote_reduce_ticking; /* 0=normal operation,
731 1=EMI reduce on with cost more CPU. */
732 #endif
733 #endif /* HAVE_REMOTE_LCD */
735 #if CONFIG_CODEC == MAS3507D
736 bool line_in; /* false=off, true=active */
737 #endif
739 #ifdef HAVE_BUTTON_LIGHT
740 int buttonlight_timeout;
741 #endif
742 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
743 int buttonlight_brightness;
744 #endif
746 #ifdef IPOD_ACCESSORY_PROTOCOL
747 int serial_bitrate; /* 0=auto 1=9600 2=19200 3=38400 4=57600 */
748 #endif
749 #ifdef HAVE_ACCESSORY_SUPPLY
750 bool accessory_supply; /* 0=off 1=on, accessory power supply for iPod */
751 #endif
752 #ifdef HAVE_LINEOUT_POWEROFF
753 bool lineout_active;
754 #endif
756 #ifdef HAVE_SPEAKER
757 bool speaker_enabled;
758 #endif
759 bool prevent_skip;
761 #ifdef HAVE_TOUCHSCREEN
762 int touch_mode;
763 struct touchscreen_parameter ts_calibration_data;
764 #endif
766 #ifdef HAVE_PITCHSCREEN
767 /* pitch screen settings */
768 bool pitch_mode_semitone;
769 #if CONFIG_CODEC == SWCODEC
770 bool pitch_mode_timestretch;
771 #endif
772 #endif
773 /* If values are just added to the end, no need to bump plugin API
774 version. */
775 /* new stuff to be added at the end */
777 #ifdef USB_ENABLE_HID
778 bool usb_hid;
779 int usb_keypad_mode;
780 #endif
782 #if defined(USB_ENABLE_STORAGE) && defined(HAVE_MULTIDRIVE)
783 bool usb_skip_first_drive;
784 #endif
786 #ifdef HAVE_LCD_BITMAP
787 unsigned char ui_vp_config[64]; /* viewport string for the lists */
788 #ifdef HAVE_REMOTE_LCD
789 unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */
790 #endif
791 #endif
793 #if CONFIG_CODEC == SWCODEC
794 int compressor_threshold;
795 int compressor_makeup_gain;
796 int compressor_ratio;
797 int compressor_knee;
798 int compressor_release_time;
799 #endif
801 int sleeptimer_duration; /* In minutes; 0=off */
802 bool sleeptimer_on_startup;
803 bool keypress_restarts_sleeptimer;
805 #ifdef HAVE_MORSE_INPUT
806 bool morse_input; /* text input method setting */
807 #endif
809 #ifdef HAVE_HOTKEY
810 /* hotkey assignments - acceptable values are in
811 hotkey_action enum in onplay.h */
812 int hotkey_wps;
813 int hotkey_tree;
814 #endif
816 #if CONFIG_CODEC == SWCODEC
817 /* When resuming playback (after a stop), rewind this number of seconds */
818 int resume_rewind;
819 #endif
821 #ifdef AUDIOHW_HAVE_DEPTH_3D
822 int depth_3d;
823 #endif
825 #ifdef AUDIOHW_HAVE_EQ
826 /** Hardware EQ tone controls **/
827 struct hw_eq_band
829 /* Maintain the order of members or sound_menu has to be changed */
830 int gain;
831 #ifdef AUDIOHW_HAVE_EQ_FREQUENCY
832 int frequency;
833 #endif
834 #ifdef AUDIOHW_HAVE_EQ_WIDTH
835 int width;
836 #endif
837 } hw_eq_bands[AUDIOHW_EQ_BAND_NUM];
838 #endif /* AUDIOHW_HAVE_EQ */
840 #ifdef HAVE_HARDWARE_CLICK
841 #if CONFIG_CODEC == SWCODEC
842 bool keyclick_hardware; /* hardware piezo keyclick */
843 #endif
844 #endif
846 char start_directory[MAX_PATHNAME+1];
849 /** global variables **/
850 extern long lasttime;
851 /* global settings */
852 extern struct user_settings global_settings;
853 /* global status */
854 extern struct system_status global_status;
856 #endif /* __SETTINGS_H__ */