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