Correct the BBX clause (no visual changes)
[kugel-rb/myfork.git] / apps / settings.h
blob7f5f025a8fcb0b6be84f5dfd866950800293f6a7
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 */
181 /* Keyclick stuff */
183 /* Not really a setting but several files should stay synced */
184 #define KEYCLICK_DURATION 2
186 /** virtual pointer stuff.. move to another .h maybe? **/
187 /* These define "virtual pointers", which could either be a literal string,
188 or a mean a string ID if the pointer is in a certain range.
189 This helps to save space for menus and options. */
191 #define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
192 #if CONFIG_CPU==DM320
193 /* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
194 #define VIRT_PTR ((unsigned char*)0x4000)
195 #else
196 /* a location where we won't store strings, 0 is the fastest */
197 #define VIRT_PTR ((unsigned char*)0)
198 #endif
200 /* form a "virtual pointer" out of a language ID */
201 #define ID2P(id) (VIRT_PTR + id)
203 /* resolve a pointer which could be a virtualized ID or a literal */
204 #define P2STR(p) (char *)((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
206 /* get the string ID from a virtual pointer, -1 if not virtual */
207 #define P2ID(p) ((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
209 /* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
210 Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
211 simplicity. */
215 /** function prototypes **/
217 /* argument bits for settings_load() */
218 #define SETTINGS_RTC 1 /* only the settings from the RTC nonvolatile RAM */
219 #define SETTINGS_HD 2 /* only the settings from the disk sector */
220 #define SETTINGS_ALL 3 /* both */
221 void settings_load(int which);
222 bool settings_load_config(const char* file, bool apply);
224 void status_save(void);
225 int settings_save(void);
226 /* defines for the options paramater */
227 enum {
228 SETTINGS_SAVE_CHANGED = 0,
229 SETTINGS_SAVE_ALL,
230 SETTINGS_SAVE_THEME,
231 SETTINGS_SAVE_SOUND,
232 #ifdef HAVE_RECORDING
233 SETTINGS_SAVE_RECPRESETS,
234 #endif
235 #if CONFIG_CODEC == SWCODEC
236 SETTINGS_SAVE_EQPRESET,
237 #endif
239 bool settings_save_config(int options);
241 struct settings_list;
242 void reset_setting(const struct settings_list *setting, void *var);
243 void settings_reset(void);
244 void sound_settings_apply(void);
245 void settings_apply(bool read_disk);
246 void settings_apply_pm_range(void);
247 void settings_display(void);
249 enum optiontype { INT, BOOL };
251 const struct settings_list* find_setting(const void* variable, int *id);
252 bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
253 bool cfg_to_string(int setting_id, char* buf, int buf_len);
254 bool set_bool_options(const char* string, const bool* variable,
255 const char* yes_str, int yes_voice,
256 const char* no_str, int no_voice,
257 void (*function)(bool));
259 bool set_bool(const char* string, const bool* variable);
260 bool set_int(const unsigned char* string, const char* unit, int voice_unit,
261 const int* variable,
262 void (*function)(int), int step, int min, int max,
263 void (*formatter)(char*, size_t, int, const char*) );
265 /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
266 bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
267 const int* variable,
268 void (*function)(int), int step, int min, int max,
269 void (*formatter)(char*, size_t, int, const char*),
270 int32_t (*get_talk_id)(int, int));
272 void set_file(const char* filename, char* setting, int maxlen);
274 bool set_option(const char* string, const void* variable, enum optiontype type,
275 const struct opt_items* options, int numoptions, void (*function)(int));
279 /** global_settings and global_status struct definitions **/
281 struct system_status
283 int resume_index; /* index in playlist (-1 for no active resume) */
284 uint32_t resume_offset; /* byte offset in mp3 file */
285 int runtime; /* current runtime since last charge */
286 int topruntime; /* top known runtime */
287 #ifdef HAVE_DIRCACHE
288 int dircache_size; /* directory cache structure last size, 22 bits */
289 #endif
290 #if CONFIG_TUNER
291 int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
292 relative to MIN_FREQ */
293 #endif
294 signed char last_screen;
295 int viewer_icon_count;
298 struct user_settings
300 /* audio settings */
302 int volume; /* audio output volume in decibels range depends on the dac */
303 int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
304 int bass; /* bass boost/cut in decibels */
305 int treble; /* treble boost/cut in decibels */
306 int channel_config; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
307 int stereo_width; /* 0-255% */
309 #if CONFIG_CODEC != SWCODEC
310 int loudness; /* loudness eq: 0-100 0=off 100=max */
311 int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
312 int mdb_strength; /* 0-127dB */
313 int mdb_harmonics; /* 0-100% */
314 int mdb_center; /* 20-300Hz */
315 int mdb_shape; /* 50-300Hz */
316 bool mdb_enable; /* true/false */
317 bool superbass; /* true/false */
318 #endif
320 #ifdef HAVE_WM8758
321 int bass_cutoff;
322 int treble_cutoff;
323 #endif
325 #if CONFIG_CODEC == SWCODEC
326 /* Crossfade */
327 int crossfade; /* Enable crossfade (0=off, 1=shuffle, 2=trackskip,
328 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) */
335 /* Replaygain */
336 bool replaygain; /* enable replaygain */
337 bool replaygain_noclip; /* scale to prevent clips */
338 int replaygain_type; /* 0=track gain, 1=album gain, 2=track gain if
339 shuffle is on, album gain otherwise */
340 int replaygain_preamp; /* scale replaygained tracks by this */
342 /* Crossfeed */
343 bool crossfeed; /* enable crossfeed */
344 unsigned int crossfeed_direct_gain; /* dB x 10 */
345 unsigned int crossfeed_cross_gain; /* dB x 10 */
346 unsigned int crossfeed_hf_attenuation; /* dB x 10 */
347 unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
349 /* EQ */
350 bool eq_enabled; /* Enable equalizer */
351 unsigned int eq_precut; /* dB */
353 /* Order is important here, must be cutoff, q, then gain for each band.
354 See dsp_set_eq_coefs in dsp.c for why. */
356 /* Band 0 settings */
357 int eq_band0_cutoff; /* Hz */
358 int eq_band0_q;
359 int eq_band0_gain; /* +/- dB */
361 /* Band 1 settings */
362 int eq_band1_cutoff; /* Hz */
363 int eq_band1_q;
364 int eq_band1_gain; /* +/- dB */
366 /* Band 2 settings */
367 int eq_band2_cutoff; /* Hz */
368 int eq_band2_q;
369 int eq_band2_gain; /* +/- dB */
371 /* Band 3 settings */
372 int eq_band3_cutoff; /* Hz */
373 int eq_band3_q;
374 int eq_band3_gain; /* +/- dB */
376 /* Band 4 settings */
377 int eq_band4_cutoff; /* Hz */
378 int eq_band4_q;
379 int eq_band4_gain; /* +/- dB */
381 /* Misc. swcodec */
382 int beep; /* system beep volume when changing tracks etc. */
383 int keyclick; /* keyclick volume */
384 int keyclick_repeats; /* keyclick on repeats */
385 bool dithering_enabled;
386 #endif /* CONFIG_CODEC == SWCODEC */
388 #ifdef HAVE_RECORDING
389 #if CONFIG_CODEC == SWCODEC
390 int rec_format; /* record format index */
391 int rec_mono_mode; /* how to create mono: L, R, L+R */
393 /* Encoder Settings Start - keep these together */
394 struct mp3_enc_config mp3_enc_config;
395 #if 0 /* These currently contain no members but their places in line
396 should be held */
397 struct aiff_enc_config aiff_enc_config;
398 struct wav_enc_config wav_enc_config;
399 struct wavpack_enc_config wavpack_enc_config;
400 #endif
401 /* Encoder Settings End */
403 #else
404 int rec_quality; /* 0-7 */
405 #endif /* CONFIG_CODEC == SWCODEC */
406 int rec_source; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
407 int rec_frequency; /* 0 = 44.1kHz (depends on target)
408 1 = 48kHz
409 2 = 32kHz
410 3 = 22.05kHz
411 4 = 24kHz
412 5 = 16kHz */
413 int rec_channels; /* 0=Stereo, 1=Mono */
415 int rec_mic_gain; /* depends on target */
416 int rec_left_gain; /* depends on target */
417 int rec_right_gain; /* depends on target */
418 bool peak_meter_clipcounter; /* clipping count indicator */
419 bool rec_editable; /* true means that the bit reservoir is off */
421 /* note: timesplit setting is not saved */
422 int rec_timesplit; /* 0 = off,
423 1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
424 5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
425 9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
426 13= 24:00 */
427 int rec_sizesplit; /* 0 = off,
428 1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
429 5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
430 9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
431 13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
432 int rec_split_type; /* split/stop */
433 int rec_split_method; /* time/filesize */
435 int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
436 char rec_directory[MAX_FILENAME+1];
437 int cliplight; /* 0 = off
438 1 = main lcd
439 2 = main and remote lcd
440 3 = remote lcd */
442 int rec_start_thres_db;
443 int rec_start_thres_linear;
444 int rec_start_duration; /* index of trig_durations */
445 int rec_stop_thres_db;
446 int rec_stop_thres_linear;
447 int rec_stop_postrec;
448 int rec_stop_gap; /* index of trig_durations */
449 int rec_trigger_mode; /* see TRIG_MODE_XXX constants */
450 int rec_trigger_type; /* what to do when trigger released */
452 #ifdef HAVE_AGC
453 int rec_agc_preset_mic; /* AGC mic preset modes:
454 0 = Off
455 1 = Safety (clip)
456 2 = Live (slow)
457 3 = DJ-Set (slow)
458 4 = Medium
459 5 = Voice (fast) */
460 int rec_agc_preset_line; /* AGC line-in preset modes:
461 0 = Off
462 1 = Safety (clip)
463 2 = Live (slow)
464 3 = DJ-Set (slow)
465 4 = Medium
466 5 = Voice (fast) */
467 int rec_agc_maxgain_mic; /* AGC maximum mic gain */
468 int rec_agc_maxgain_line; /* AGC maximum line-in gain */
469 int rec_agc_cliptime; /* 0.2, 0.4, 0.6, 0.8, 1s */
470 #endif
471 #endif /* HAVE_RECORDING */
473 #if CONFIG_TUNER
474 int fm_region;
475 bool fm_force_mono; /* Forces Mono mode if true */
476 unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
477 #endif
479 /* misc options */
480 #ifndef HAVE_SCROLLWHEEL
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 #ifdef HAVE_HEADPHONE_DETECTION
490 int unplug_mode; /* pause on headphone unplug */
491 int unplug_rw; /* time in s to rewind when pausing */
492 bool unplug_autoresume; /* disable auto-resume if no phones */
493 #endif
495 #ifdef HAVE_QUICKSCREEN
496 /* these are split because settings_list cant handle arrays */
497 int qs_item_left;
498 int qs_item_right;
499 int qs_item_bottom;
500 #endif
502 #if CONFIG_RTC
503 int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
504 #endif
506 #ifdef HAVE_DISK_STORAGE
507 int disk_spindown; /* time until disk spindown, in seconds (0=off) */
508 int buffer_margin; /* audio buffer watermark margin, in seconds */
509 #endif
511 int dirfilter; /* 0=display all, 1=only supported, 2=only music,
512 3=dirs+playlists, 4=ID3 database */
513 int show_filename_ext; /* show filename extensions in file browser?
514 0 = no, 1 = yes, 2 = only unknown 0 */
515 int default_codepage; /* set default codepage for tag conversion */
516 bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
517 bool play_selected; /* Plays selected file even in shuffle mode */
518 bool party_mode; /* party mode - unstoppable music */
519 bool audioscrobbler; /* Audioscrobbler logging */
520 bool cuesheet;
521 bool car_adapter_mode; /* 0=off 1=on */
522 int start_in_screen;
523 #if defined(HAVE_RTC_ALARM) && \
524 (defined(HAVE_RECORDING) || CONFIG_TUNER)
525 int alarm_wake_up_screen;
526 #endif
527 int ff_rewind_min_step; /* FF/Rewind minimum step size */
528 int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
530 int peak_meter_release; /* units per read out */
531 int peak_meter_hold; /* hold time for peak meter in 1/100 s */
532 int peak_meter_clip_hold; /* hold time for clips */
533 bool peak_meter_dbfs; /* show linear or dbfs values */
534 int peak_meter_min; /* range minimum */
535 int peak_meter_max; /* range maximum */
537 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
538 unsigned char lang_file[MAX_FILENAME+1]; /* last language */
539 unsigned char playlist_catalog_dir[MAX_FILENAME+1];
540 int skip_length; /* skip length */
541 int max_files_in_dir; /* Max entries in directory (file browser) */
542 int max_files_in_playlist; /* Max entries in playlist */
543 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
544 int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
545 bool show_icons; /* 0=hide 1=show */
546 bool statusbar; /* 0=hide, 1=show */
548 #if CONFIG_KEYPAD == RECORDER_PAD
549 bool buttonbar; /* 0=hide, 1=show */
550 #endif
552 bool scrollbar; /* 0=hide, 1=show */
553 /* goto current song when exiting WPS */
554 bool browse_current; /* 1=goto current song,
555 0=goto previous location */
556 bool scroll_paginated; /* 0=dont 1=do */
557 int scroll_speed; /* long texts scrolling speed: 1-30 */
558 int bidir_limit; /* bidir scroll length limit */
559 int scroll_delay; /* delay (in 1/10s) before starting scroll */
560 int scroll_step; /* pixels to advance per update */
562 /* auto bookmark settings */
563 int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
564 int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
565 int usemrb; /* use MRB list: 0=No, 1=Yes*/
567 #ifdef HAVE_DIRCACHE
568 bool dircache; /* enable directory cache */
569 #endif
570 #ifdef HAVE_TAGCACHE
571 #ifdef HAVE_TC_RAMCACHE
572 bool tagcache_ram; /* load tagcache to ram? */
573 #endif
574 bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
575 bool runtimedb; /* runtime database active? */
576 #endif /* HAVE_TAGCACHE */
578 #if LCD_DEPTH > 1
579 unsigned char backdrop_file[MAX_FILENAME+1]; /* backdrop bitmap file */
580 #endif
582 #ifdef HAVE_LCD_COLOR
583 int bg_color; /* background color native format */
584 int fg_color; /* foreground color native format */
585 int lss_color; /* background color for the selector or start color for the gradient */
586 int lse_color; /* end color for the selector gradient */
587 int lst_color; /* color of the text for the selector */
588 unsigned char colors_file[MAX_FILENAME+1];
589 #endif
591 /* playlist/playback settings */
592 int repeat_mode; /* 0=off 1=repeat all 2=repeat one 3=shuffle 4=ab */
593 int next_folder; /* move to next folder */
594 int recursive_dir_insert; /* should directories be inserted recursively */
595 bool fade_on_stop; /* fade on pause/unpause/stop */
596 bool playlist_shuffle;
597 bool warnon_erase_dynplaylist; /* warn when erasing dynamic playlist */
599 /* playlist viewer settings */
600 bool playlist_viewer_icons; /* display icons on viewer */
601 bool playlist_viewer_indices; /* display playlist indices on viewer */
602 int playlist_viewer_track_display; /* how to display tracks in viewer */
604 /* voice UI settings */
605 bool talk_menu; /* enable voice UI */
606 int talk_dir; /* voiced directories mode: 0=off 1=number 2=spell */
607 bool talk_dir_clip; /* use directory .talk clips */
608 int talk_file; /* voice file mode: 0=off, 1=number, 2=spell */
609 bool talk_file_clip; /* use file .talk clips */
610 bool talk_filetype; /* say file type */
611 bool talk_battery_level;
613 /* file browser sorting */
614 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
615 int sort_file; /* 0=alpha, 1=date, 2=date (new first), 3=type */
616 int sort_dir; /* 0=alpha, 1=date (old first), 2=date (new first) */
618 /* power settings */
619 int poweroff; /* idle power off timer */
620 int battery_capacity; /* in mAh */
622 #if BATTERY_TYPES_COUNT > 1
623 int battery_type; /* for units which can take multiple types (Ondio). */
624 #endif
625 #ifdef HAVE_SPDIF_POWER
626 bool spdif_enable; /* S/PDIF power on/off */
627 #endif
628 #ifdef HAVE_USB_CHARGING_ENABLE
629 bool usb_charging;
630 #endif
632 /* device settings */
633 #ifdef HAVE_LCD_CONTRAST
634 int contrast; /* lcd contrast */
635 #endif
637 #ifdef HAVE_LCD_BITMAP
638 #ifdef HAVE_LCD_INVERT
639 bool invert; /* invert display */
640 #endif
641 #ifdef HAVE_LCD_FLIP
642 bool flip_display; /* turn display (and button layout) by 180 degrees */
643 #endif
644 int cursor_style; /* style of the selection cursor */
645 int screen_scroll_step;
646 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
647 bool offset_out_of_view;
648 unsigned char icon_file[MAX_FILENAME+1];
649 unsigned char viewers_icon_file[MAX_FILENAME+1];
650 unsigned char font_file[MAX_FILENAME+1]; /* last font */
651 unsigned char kbd_file[MAX_FILENAME+1]; /* last keyboard */
652 #endif /* HAVE_LCD_BITMAP */
654 #ifdef HAVE_LCD_CHARCELLS
655 int jump_scroll; /* Fast jump when scrolling */
656 int jump_scroll_delay; /* Delay between jump scroll screens */
657 #endif
659 int backlight_timeout; /* backlight off timeout: 0-18 0=never,
660 1=always,
661 then according to timeout_values[] */
662 bool caption_backlight; /* turn on backlight at end and start of track */
663 bool bl_filter_first_keypress; /* filter first keypress when dark? */
664 #if CONFIG_CHARGING
665 int backlight_timeout_plugged;
666 #endif
667 #ifdef HAS_BUTTON_HOLD
668 int backlight_on_button_hold; /* what to do with backlight when hold
669 switch is on */
670 #endif
671 #ifdef HAVE_LCD_SLEEP_SETTING
672 int lcd_sleep_after_backlight_off; /* when to put lcd to sleep after backlight
673 has turned off */
674 #endif
675 #if defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
676 int backlight_fade_in; /* backlight fade in timing: 0..3 */
677 int backlight_fade_out; /* backlight fade in timing: 0..7 */
678 #elif defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING)
679 bool backlight_fade_in;
680 bool backlight_fade_out;
681 #endif
682 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
683 int brightness;
684 #endif
686 #ifdef HAVE_REMOTE_LCD
687 /* remote lcd */
688 int remote_contrast; /* lcd contrast: 0-63 0=low 63=high */
689 int remote_backlight_timeout; /* backlight off timeout: 0-18 0=never,
690 1=always, then according to timeout_values[] */
691 int remote_backlight_timeout_plugged;
692 int remote_scroll_speed; /* long texts scrolling speed: 1-30 */
693 int remote_scroll_delay; /* delay (in 1/10s) before starting scroll */
694 int remote_scroll_step; /* pixels to advance per update */
695 int remote_bidir_limit; /* bidir scroll length limit */
696 bool remote_invert; /* invert display */
697 bool remote_flip_display; /* turn display (and button layout) by 180 degrees */
698 bool remote_caption_backlight; /* turn on backlight at end and start of track */
699 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
700 unsigned char remote_icon_file[MAX_FILENAME+1];
701 unsigned char remote_viewers_icon_file[MAX_FILENAME+1];
702 unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
703 #ifdef HAS_REMOTE_BUTTON_HOLD
704 int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
705 switch is on */
706 #endif
707 #ifdef HAVE_REMOTE_LCD_TICKING
708 bool remote_reduce_ticking; /* 0=normal operation,
709 1=EMI reduce on with cost more CPU. */
710 #endif
711 #endif /* HAVE_REMOTE_LCD */
713 #if CONFIG_CODEC == MAS3507D
714 bool line_in; /* false=off, true=active */
715 #endif
717 #ifdef HAVE_BUTTON_LIGHT
718 int buttonlight_timeout;
719 #endif
720 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
721 int buttonlight_brightness;
722 #endif
724 #ifdef IPOD_ACCESSORY_PROTOCOL
725 int serial_bitrate; /* 0=auto 1=9600 2=19200 3=38400 4=57600 */
726 #endif
727 #ifdef HAVE_ACCESSORY_SUPPLY
728 bool accessory_supply; /* 0=off 1=on, accessory power supply for iPod */
729 #endif
731 /* If values are just added to the end, no need to bump plugin API
732 version. */
733 /* new stuff to be added at the end */
736 /** global variables **/
737 extern long lasttime;
738 /* global settings */
739 extern struct user_settings global_settings;
740 /* global status */
741 extern struct system_status global_status;
743 #endif /* __SETTINGS_H__ */