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