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