fix touchscreen errors
[kugel-rb.git] / apps / settings.h
blob63305b5ae7bcf6aea42e00476cc0c4d3a2d410c4
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Stuart Martin
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef __SETTINGS_H__
23 #define __SETTINGS_H__
25 #include <stdbool.h>
26 #include <stddef.h>
27 #include "inttypes.h"
28 #include "config.h"
29 #include "audiohw.h" /* for the AUDIOHW_* defines */
30 #include "statusbar.h" /* for the statusbar values */
31 #include "quickscreen.h"
32 #include "button.h"
33 #if CONFIG_CODEC == SWCODEC
34 #include "audio.h"
35 #endif
37 struct opt_items {
38 unsigned const char* string;
39 int32_t voice_id;
42 /** Setting values defines **/
44 /* name of directory where configuration, fonts and other data
45 * files are stored */
46 #ifdef __PCTOOL__
47 #undef ROCKBOX_DIR
48 #undef ROCKBOX_DIR_LEN
49 #undef WPS_DIR
50 #define ROCKBOX_DIR "."
51 #define ROCKBOX_DIR_LEN 1
52 #else
54 /* ROCKBOX_DIR is now defined in autoconf.h for flexible build types */
55 #ifndef ROCKBOX_DIR
56 #error ROCKBOX_DIR not defined (should be in autoconf.h)
57 #endif
58 #define ROCKBOX_DIR_LEN (sizeof(ROCKBOX_DIR)-1)
59 #endif /* def __PCTOOL__ */
62 #define FONT_DIR ROCKBOX_DIR "/fonts"
63 #define LANG_DIR ROCKBOX_DIR "/langs"
64 #define WPS_DIR ROCKBOX_DIR "/wps"
65 #define SBS_DIR WPS_DIR
66 #define THEME_DIR ROCKBOX_DIR "/themes"
67 #define ICON_DIR ROCKBOX_DIR "/icons"
69 #define PLUGIN_DIR ROCKBOX_DIR "/rocks"
70 #define PLUGIN_GAMES_DIR PLUGIN_DIR "/games"
71 #define PLUGIN_APPS_DIR PLUGIN_DIR "/apps"
72 #define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos"
73 #define VIEWERS_DIR PLUGIN_DIR "/viewers"
75 #define BACKDROP_DIR ROCKBOX_DIR "/backdrops"
76 #define REC_BASE_DIR "/"
77 #define EQS_DIR ROCKBOX_DIR "/eqs"
78 #define CODECS_DIR ROCKBOX_DIR "/codecs"
79 #define RECPRESETS_DIR ROCKBOX_DIR "/recpresets"
80 #define FMPRESET_PATH ROCKBOX_DIR "/fmpresets"
81 #define PLAYLIST_CATALOG_DEFAULT_DIR "/Playlists"
83 #define VIEWERS_CONFIG ROCKBOX_DIR "/viewers.config"
84 #define CONFIGFILE ROCKBOX_DIR "/config.cfg"
85 #define FIXEDSETTINGSFILE ROCKBOX_DIR "/fixed.cfg"
87 #define MAX_FILENAME 32
90 enum {
91 BOOKMARK_NO = 0,
92 BOOKMARK_YES,
93 BOOKMARK_ASK,
94 BOOKMARK_UNIQUE_ONLY = 2,
95 BOOKMARK_RECENT_ONLY_YES,
96 BOOKMARK_RECENT_ONLY_ASK,
99 enum
101 TRIG_MODE_OFF = 0,
102 TRIG_MODE_NOREARM,
103 TRIG_MODE_REARM
106 enum
108 TRIG_TYPE_STOP = 0,
109 TRIG_TYPE_PAUSE,
110 TRIG_TYPE_NEW_FILE
113 #ifdef HAVE_CROSSFADE
114 enum {
115 CROSSFADE_ENABLE_OFF = 0,
116 CROSSFADE_ENABLE_AUTOSKIP,
117 CROSSFADE_ENABLE_MANSKIP,
118 CROSSFADE_ENABLE_SHUFFLE,
119 CROSSFADE_ENABLE_SHUFFLE_OR_MANSKIP,
120 CROSSFADE_ENABLE_ALWAYS,
122 #endif
124 enum {
125 FOLDER_ADVANCE_OFF = 0,
126 FOLDER_ADVANCE_NEXT,
127 FOLDER_ADVANCE_RANDOM,
130 /* repeat mode options */
131 enum
133 REPEAT_OFF = 0,
134 REPEAT_ALL,
135 REPEAT_ONE,
136 REPEAT_SHUFFLE,
137 #ifdef AB_REPEAT_ENABLE
138 REPEAT_AB,
139 #endif
140 NUM_REPEAT_MODES
144 /* dir filter options */
145 /* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
146 * Any new rockbox browse filter modes (accessible through the menu)
147 * must be added after NUM_FILTER_MODES. */
148 enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
149 NUM_FILTER_MODES,
150 SHOW_WPS, SHOW_RWPS, SHOW_FMS, SHOW_RFMS, SHOW_SBS, SHOW_RSBS, SHOW_FMR, SHOW_CFG,
151 SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS};
153 /* file and dir sort options */
154 enum { SORT_ALPHA, SORT_DATE, SORT_DATE_REVERSED, SORT_TYPE, /* available as settings */
155 SORT_ALPHA_REVERSED, SORT_TYPE_REVERSED }; /* internal use only */
156 enum { SORT_INTERPRET_AS_DIGIT, SORT_INTERPRET_AS_NUMBER };
158 /* recursive dir insert options */
159 enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
161 /* replaygain types */
162 enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE, REPLAYGAIN_OFF };
164 /* show path types */
165 enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
167 /* scrollbar visibility/position */
168 enum { SCROLLBAR_OFF = 0, SCROLLBAR_LEFT, SCROLLBAR_RIGHT };
170 /* Alarm settings */
171 #ifdef HAVE_RTC_ALARM
172 enum { ALARM_START_WPS = 0,
173 #if CONFIG_TUNER
174 ALARM_START_FM,
175 #endif
176 #ifdef HAVE_RECORDING
177 ALARM_START_REC,
178 #endif
179 ALARM_START_COUNT
181 #if CONFIG_TUNER && defined(HAVE_RECORDING)
182 #define ALARM_SETTING_TEXT "wps,fm,rec"
183 #elif CONFIG_TUNER
184 #define ALARM_SETTING_TEXT "wps,fm"
185 #elif defined(HAVE_RECORDING)
186 #define ALARM_SETTING_TEXT "wps,rec"
187 #endif
189 #endif /* HAVE_RTC_ALARM */
191 /* Keyclick stuff */
193 /* Not really a setting but several files should stay synced */
194 #define KEYCLICK_DURATION 2
196 /** virtual pointer stuff.. move to another .h maybe? **/
197 /* These define "virtual pointers", which could either be a literal string,
198 or a mean a string ID if the pointer is in a certain range.
199 This helps to save space for menus and options. */
201 #define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
202 #if defined(CPU_S5L870X)
203 /* the S5L870X has IRAM at 0, so we use 0xffff bytes right after that */
204 #define VIRT_PTR ((unsigned char*)0x40000)
205 #elif CONFIG_CPU==DM320
206 /* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
207 #define VIRT_PTR ((unsigned char*)0x4000)
208 #else
209 /* a location where we won't store strings, 0 is the fastest */
210 #define VIRT_PTR ((unsigned char*)0)
211 #endif
213 /* form a "virtual pointer" out of a language ID */
214 #define ID2P(id) (VIRT_PTR + id)
216 /* resolve a pointer which could be a virtualized ID or a literal */
217 #define P2STR(p) (char *)((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
219 /* get the string ID from a virtual pointer, -1 if not virtual */
220 #define P2ID(p) ((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
222 /* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
223 Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
224 simplicity. */
228 /** function prototypes **/
230 /* argument bits for settings_load() */
231 #define SETTINGS_RTC (BIT_N(0)) /* only the settings from the RTC nonvolatile RAM */
232 #define SETTINGS_HD (BIT_N(1)) /* only the settings from the disk sector */
233 #define SETTINGS_ALL (SETTINGS_RTC|SETTINGS_HD) /* both */
234 void settings_load(int which);
235 bool settings_load_config(const char* file, bool apply);
237 void status_save(void);
238 int settings_save(void);
239 /* defines for the options paramater */
240 enum {
241 SETTINGS_SAVE_CHANGED = 0,
242 SETTINGS_SAVE_ALL,
243 SETTINGS_SAVE_THEME,
244 SETTINGS_SAVE_SOUND,
245 #ifdef HAVE_RECORDING
246 SETTINGS_SAVE_RECPRESETS,
247 #endif
248 #if CONFIG_CODEC == SWCODEC
249 SETTINGS_SAVE_EQPRESET,
250 #endif
252 bool settings_save_config(int options);
254 struct settings_list;
255 void reset_setting(const struct settings_list *setting, void *var);
256 void settings_reset(void);
257 void sound_settings_apply(void);
259 /* call this after loading a .wps/.rwps pr other skin files, so that the
260 * skin buffer is reset properly
262 void settings_apply_skins(void);
263 void theme_init_buffer(void);
265 void settings_apply(bool read_disk);
266 void settings_apply_pm_range(void);
267 void settings_display(void);
269 enum optiontype { INT, BOOL };
271 const struct settings_list* find_setting(const void* variable, int *id);
272 bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
273 bool cfg_to_string(int setting_id, char* buf, int buf_len);
274 bool set_bool_options(const char* string, const bool* variable,
275 const char* yes_str, int yes_voice,
276 const char* no_str, int no_voice,
277 void (*function)(bool));
279 bool set_bool(const char* string, const bool* variable);
280 bool set_int(const unsigned char* string, const char* unit, int voice_unit,
281 const int* variable,
282 void (*function)(int), int step, int min, int max,
283 const char* (*formatter)(char*, size_t, int, const char*) );
285 /* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
286 bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
287 const int* variable,
288 void (*function)(int), int step, int min, int max,
289 const char* (*formatter)(char*, size_t, int, const char*),
290 int32_t (*get_talk_id)(int, int));
292 void set_file(const char* filename, char* setting, const int maxlen);
294 bool set_option(const char* string, const void* variable, enum optiontype type,
295 const struct opt_items* options, int numoptions, void (*function)(int));
299 /** global_settings and global_status struct definitions **/
301 struct system_status
303 int resume_index; /* index in playlist (-1 for no active resume) */
304 uint32_t resume_offset; /* byte offset in mp3 file */
305 int runtime; /* current runtime since last charge */
306 int topruntime; /* top known runtime */
307 #ifdef HAVE_DIRCACHE
308 int dircache_size; /* directory cache structure last size, 22 bits */
309 #endif
310 #if CONFIG_TUNER
311 int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
312 relative to MIN_FREQ */
313 #endif
314 signed char last_screen;
315 int viewer_icon_count;
316 int last_volume_change; /* tick the last volume change happened. skins use this */
319 struct user_settings
321 /* audio settings */
323 int volume; /* audio output volume in decibels range depends on the dac */
324 int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
325 int bass; /* bass boost/cut in decibels */
326 int treble; /* treble boost/cut in decibels */
327 int channel_config; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
328 int stereo_width; /* 0-255% */
330 #if CONFIG_CODEC != SWCODEC
331 int loudness; /* loudness eq: 0-100 0=off 100=max */
332 int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
333 int mdb_strength; /* 0-127dB */
334 int mdb_harmonics; /* 0-100% */
335 int mdb_center; /* 20-300Hz */
336 int mdb_shape; /* 50-300Hz */
337 bool mdb_enable; /* true/false */
338 bool superbass; /* true/false */
339 #endif
341 #ifdef AUDIOHW_HAVE_BASS_CUTOFF
342 int bass_cutoff;
343 #endif
344 #ifdef AUDIOHW_HAVE_TREBLE_CUTOFF
345 int treble_cutoff;
346 #endif
348 #if CONFIG_CODEC == SWCODEC
349 #ifdef HAVE_CROSSFADE
350 /* Crossfade */
351 int crossfade; /* Enable crossfade (0=off, 1=shuffle, 2=trackskip,
352 3=shuff&trackskip, 4=always) */
353 int crossfade_fade_in_delay; /* Fade in delay (0-15s) */
354 int crossfade_fade_out_delay; /* Fade out delay (0-15s) */
355 int crossfade_fade_in_duration; /* Fade in duration (0-15s) */
356 int crossfade_fade_out_duration; /* Fade out duration (0-15s) */
357 int crossfade_fade_out_mixmode; /* Fade out mode (0=crossfade,1=mix) */
358 #endif
360 /* Replaygain */
361 bool replaygain_noclip; /* scale to prevent clips */
362 int replaygain_type; /* 0=track gain, 1=album gain, 2=track gain if
363 shuffle is on, album gain otherwise, 4=off */
364 int replaygain_preamp; /* scale replaygained tracks by this */
366 /* Crossfeed */
367 bool crossfeed; /* enable crossfeed */
368 unsigned int crossfeed_direct_gain; /* dB x 10 */
369 unsigned int crossfeed_cross_gain; /* dB x 10 */
370 unsigned int crossfeed_hf_attenuation; /* dB x 10 */
371 unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
373 /* EQ */
374 bool eq_enabled; /* Enable equalizer */
375 unsigned int eq_precut; /* dB */
377 /* Order is important here, must be cutoff, q, then gain for each band.
378 See dsp_set_eq_coefs in dsp.c for why. */
380 /* Band 0 settings */
381 int eq_band0_cutoff; /* Hz */
382 int eq_band0_q;
383 int eq_band0_gain; /* +/- dB */
385 /* Band 1 settings */
386 int eq_band1_cutoff; /* Hz */
387 int eq_band1_q;
388 int eq_band1_gain; /* +/- dB */
390 /* Band 2 settings */
391 int eq_band2_cutoff; /* Hz */
392 int eq_band2_q;
393 int eq_band2_gain; /* +/- dB */
395 /* Band 3 settings */
396 int eq_band3_cutoff; /* Hz */
397 int eq_band3_q;
398 int eq_band3_gain; /* +/- dB */
400 /* Band 4 settings */
401 int eq_band4_cutoff; /* Hz */
402 int eq_band4_q;
403 int eq_band4_gain; /* +/- dB */
405 /* Misc. swcodec */
406 int beep; /* system beep volume when changing tracks etc. */
407 int keyclick; /* keyclick volume */
408 int keyclick_repeats; /* keyclick on repeats */
409 bool dithering_enabled;
410 bool timestretch_enabled;
411 #endif /* CONFIG_CODEC == SWCODEC */
413 #ifdef HAVE_RECORDING
414 #if CONFIG_CODEC == SWCODEC
415 int rec_format; /* record format index */
416 int rec_mono_mode; /* how to create mono: L, R, L+R */
418 /* Encoder Settings Start - keep these together */
419 struct mp3_enc_config mp3_enc_config;
420 #if 0 /* These currently contain no members but their places in line
421 should be held */
422 struct aiff_enc_config aiff_enc_config;
423 struct wav_enc_config wav_enc_config;
424 struct wavpack_enc_config wavpack_enc_config;
425 #endif
426 /* Encoder Settings End */
428 #else
429 int rec_quality; /* 0-7 */
430 #endif /* CONFIG_CODEC == SWCODEC */
431 int rec_source; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
432 int rec_frequency; /* 0 = 44.1kHz (depends on target)
433 1 = 48kHz
434 2 = 32kHz
435 3 = 22.05kHz
436 4 = 24kHz
437 5 = 16kHz */
438 int rec_channels; /* 0=Stereo, 1=Mono */
440 int rec_mic_gain; /* depends on target */
441 int rec_left_gain; /* depends on target */
442 int rec_right_gain; /* depends on target */
443 bool peak_meter_clipcounter; /* clipping count indicator */
444 bool rec_editable; /* true means that the bit reservoir is off */
446 /* note: timesplit setting is not saved */
447 int rec_timesplit; /* 0 = off,
448 1 = 00:05, 2 = 00:10, 3 = 00:15, 4 = 00:30
449 5 = 01:00, 6 = 02:00, 7 = 04:00, 8 = 06:00
450 9 = 08:00, 10= 10:00, 11= 12:00, 12= 18:00,
451 13= 24:00 */
452 int rec_sizesplit; /* 0 = off,
453 1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
454 5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
455 9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
456 13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
457 int rec_split_type; /* split/stop */
458 int rec_split_method; /* time/filesize */
460 int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
461 char rec_directory[MAX_FILENAME+1];
462 int cliplight; /* 0 = off
463 1 = main lcd
464 2 = main and remote lcd
465 3 = remote lcd */
467 int rec_start_thres_db;
468 int rec_start_thres_linear;
469 int rec_start_duration; /* index of trig_durations */
470 int rec_stop_thres_db;
471 int rec_stop_thres_linear;
472 int rec_stop_postrec;
473 int rec_stop_gap; /* index of trig_durations */
474 int rec_trigger_mode; /* see TRIG_MODE_XXX constants */
475 int rec_trigger_type; /* what to do when trigger released */
476 #ifdef HAVE_RECORDING_HISTOGRAM
477 int rec_histogram_interval; /* recording peakmeter histogram */
478 #endif
480 #ifdef HAVE_AGC
481 int rec_agc_preset_mic; /* AGC mic preset modes:
482 0 = Off
483 1 = Safety (clip)
484 2 = Live (slow)
485 3 = DJ-Set (slow)
486 4 = Medium
487 5 = Voice (fast) */
488 int rec_agc_preset_line; /* AGC line-in preset modes:
489 0 = Off
490 1 = Safety (clip)
491 2 = Live (slow)
492 3 = DJ-Set (slow)
493 4 = Medium
494 5 = Voice (fast) */
495 int rec_agc_maxgain_mic; /* AGC maximum mic gain */
496 int rec_agc_maxgain_line; /* AGC maximum line-in gain */
497 int rec_agc_cliptime; /* 0.2, 0.4, 0.6, 0.8, 1s */
498 #endif
499 #endif /* HAVE_RECORDING */
501 #if CONFIG_TUNER
502 int fm_region;
503 bool fm_force_mono; /* Forces Mono mode if true */
504 unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
505 unsigned char fms_file[MAX_FILENAME+1]; /* last fms */
506 #ifdef HAVE_REMOTE_LCD
507 unsigned char rfms_file[MAX_FILENAME+1]; /* last remote-fms */
508 #endif
509 #endif /* CONFIG_TUNER */
511 /* misc options */
512 #ifndef HAVE_WHEEL_ACCELERATION
513 int list_accel_start_delay; /* ms before we start increaseing step size */
514 int list_accel_wait; /* ms between increases */
515 #endif
517 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
518 int touchpad_sensitivity;
519 #endif
521 #ifdef HAVE_HEADPHONE_DETECTION
522 int unplug_mode; /* pause on headphone unplug */
523 int unplug_rw; /* time in s to rewind when pausing */
524 bool unplug_autoresume; /* disable auto-resume if no phones */
525 #endif
527 #ifdef HAVE_QUICKSCREEN
528 int qs_items[QUICKSCREEN_ITEM_COUNT];
529 #endif
531 #if CONFIG_RTC
532 int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
533 #endif
535 #ifdef HAVE_DISK_STORAGE
536 int disk_spindown; /* time until disk spindown, in seconds (0=off) */
537 int buffer_margin; /* audio buffer watermark margin, in seconds */
538 #endif
540 int dirfilter; /* 0=display all, 1=only supported, 2=only music,
541 3=dirs+playlists, 4=ID3 database */
542 int show_filename_ext; /* show filename extensions in file browser?
543 0 = no, 1 = yes, 2 = only unknown 0 */
544 int default_codepage; /* set default codepage for tag conversion */
545 bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
546 bool play_selected; /* Plays selected file even in shuffle mode */
547 bool party_mode; /* party mode - unstoppable music */
548 bool audioscrobbler; /* Audioscrobbler logging */
549 bool cuesheet;
550 bool car_adapter_mode; /* 0=off 1=on */
551 int start_in_screen;
552 #if defined(HAVE_RTC_ALARM) && \
553 (defined(HAVE_RECORDING) || CONFIG_TUNER)
554 int alarm_wake_up_screen;
555 #endif
556 int ff_rewind_min_step; /* FF/Rewind minimum step size */
557 int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
559 int peak_meter_release; /* units per read out */
560 int peak_meter_hold; /* hold time for peak meter in 1/100 s */
561 int peak_meter_clip_hold; /* hold time for clips */
562 bool peak_meter_dbfs; /* show linear or dbfs values */
563 int peak_meter_min; /* range minimum */
564 int peak_meter_max; /* range maximum */
566 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
567 #ifdef HAVE_LCD_BITMAP
568 unsigned char sbs_file[MAX_FILENAME+1]; /* last statusbar skin */
569 #endif
570 #ifdef HAVE_REMOTE_LCD
571 unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
572 unsigned char rsbs_file[MAX_FILENAME+1]; /* last remote statusbar skin */
573 #endif
574 unsigned char lang_file[MAX_FILENAME+1]; /* last language */
575 unsigned char playlist_catalog_dir[MAX_FILENAME+1];
576 int skip_length; /* skip length */
577 int max_files_in_dir; /* Max entries in directory (file browser) */
578 int max_files_in_playlist; /* Max entries in playlist */
579 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
580 int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
581 bool show_icons; /* 0=hide 1=show */
582 int statusbar; /* STATUSBAR_* enum values */
583 #ifdef HAVE_REMOTE_LCD
584 int remote_statusbar;
585 #endif
587 #if CONFIG_KEYPAD == RECORDER_PAD
588 bool buttonbar; /* 0=hide, 1=show */
589 #endif
591 #ifdef HAVE_LCD_BITMAP
592 int scrollbar; /* SCROLLBAR_* enum values */
593 int scrollbar_width;
594 #endif
596 /* goto current song when exiting WPS */
597 bool browse_current; /* 1=goto current song,
598 0=goto previous location */
599 bool scroll_paginated; /* 0=dont 1=do */
600 int scroll_speed; /* long texts scrolling speed: 1-30 */
601 int bidir_limit; /* bidir scroll length limit */
602 int scroll_delay; /* delay (in 1/10s) before starting scroll */
603 int scroll_step; /* pixels to advance per update */
605 /* auto bookmark settings */
606 int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
607 int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
608 bool autoupdatebookmark;/* auto update option */
609 int usemrb; /* use MRB list: 0=No, 1=Yes, 2=One per playlist */
611 #ifdef HAVE_DIRCACHE
612 bool dircache; /* enable directory cache */
613 #endif
614 #ifdef HAVE_TAGCACHE
615 #ifdef HAVE_TC_RAMCACHE
616 bool tagcache_ram; /* load tagcache to ram? */
617 #endif
618 bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
619 bool runtimedb; /* runtime database active? */
620 #endif /* HAVE_TAGCACHE */
622 #if LCD_DEPTH > 1
623 unsigned char backdrop_file[MAX_FILENAME+1]; /* backdrop bitmap file */
624 #endif
626 #ifdef HAVE_LCD_COLOR
627 int bg_color; /* background color native format */
628 int fg_color; /* foreground color native format */
629 int lss_color; /* background color for the selector or start color for the gradient */
630 int lse_color; /* end color for the selector gradient */
631 int lst_color; /* color of the text for the selector */
632 unsigned char colors_file[MAX_FILENAME+1];
633 #endif
635 /* playlist/playback settings */
636 int repeat_mode; /* 0=off 1=repeat all 2=repeat one 3=shuffle 4=ab */
637 int next_folder; /* move to next folder */
638 int recursive_dir_insert; /* should directories be inserted recursively */
639 bool fade_on_stop; /* fade on pause/unpause/stop */
640 bool playlist_shuffle;
641 bool warnon_erase_dynplaylist; /* warn when erasing dynamic playlist */
643 /* playlist viewer settings */
644 bool playlist_viewer_icons; /* display icons on viewer */
645 bool playlist_viewer_indices; /* display playlist indices on viewer */
646 int playlist_viewer_track_display; /* how to display tracks in viewer */
648 /* voice UI settings */
649 bool talk_menu; /* enable voice UI */
650 int talk_dir; /* voiced directories mode: 0=off 1=number 2=spell */
651 bool talk_dir_clip; /* use directory .talk clips */
652 int talk_file; /* voice file mode: 0=off, 1=number, 2=spell */
653 bool talk_file_clip; /* use file .talk clips */
654 bool talk_filetype; /* say file type */
655 bool talk_battery_level;
657 /* file browser sorting */
658 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
659 int sort_dir; /* 0=alpha, 1=date (old first), 2=date (new first) */
660 int sort_file; /* 0=alpha, 1=date, 2=date (new first), 3=type */
661 int interpret_numbers; /* true=strnatcmp, false=strcmp */
663 /* power settings */
664 int poweroff; /* idle power off timer */
665 int battery_capacity; /* in mAh */
667 #if BATTERY_TYPES_COUNT > 1
668 int battery_type; /* for units which can take multiple types (Ondio). */
669 #endif
670 #ifdef HAVE_SPDIF_POWER
671 bool spdif_enable; /* S/PDIF power on/off */
672 #endif
673 #ifdef HAVE_USB_CHARGING_ENABLE
674 int usb_charging;
675 #endif
677 /* device settings */
678 #ifdef HAVE_LCD_CONTRAST
679 int contrast; /* lcd contrast */
680 #endif
682 #ifdef HAVE_LCD_BITMAP
683 #ifdef HAVE_LCD_INVERT
684 bool invert; /* invert display */
685 #endif
686 #ifdef HAVE_LCD_FLIP
687 bool flip_display; /* turn display (and button layout) by 180 degrees */
688 #endif
689 int cursor_style; /* style of the selection cursor */
690 int screen_scroll_step;
691 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
692 bool offset_out_of_view;
693 unsigned char icon_file[MAX_FILENAME+1];
694 unsigned char viewers_icon_file[MAX_FILENAME+1];
695 unsigned char font_file[MAX_FILENAME+1]; /* last font */
696 #ifdef HAVE_REMOTE_LCD
697 unsigned char remote_font_file[MAX_FILENAME+1]; /* last font */
698 #endif
699 unsigned char kbd_file[MAX_FILENAME+1]; /* last keyboard */
700 #endif /* HAVE_LCD_BITMAP */
701 int backlight_timeout; /* backlight off timeout: 0-18 0=never,
702 1=always,
703 then according to timeout_values[] */
704 bool caption_backlight; /* turn on backlight at end and start of track */
705 bool bl_filter_first_keypress; /* filter first keypress when dark? */
706 #if CONFIG_CHARGING
707 int backlight_timeout_plugged;
708 #endif
709 #ifdef HAVE_BACKLIGHT
710 #ifdef HAS_BUTTON_HOLD
711 int backlight_on_button_hold; /* what to do with backlight when hold
712 switch is on */
713 #endif
714 #ifdef HAVE_LCD_SLEEP_SETTING
715 int lcd_sleep_after_backlight_off; /* when to put lcd to sleep after backlight
716 has turned off */
717 #endif
718 #endif
719 #if defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
720 int backlight_fade_in; /* backlight fade in timing: 0..3 */
721 int backlight_fade_out; /* backlight fade in timing: 0..7 */
722 #elif defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING)
723 bool backlight_fade_in;
724 bool backlight_fade_out;
725 #endif
726 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
727 int brightness;
728 #endif
730 #ifdef HAVE_REMOTE_LCD
731 /* remote lcd */
732 int remote_contrast; /* lcd contrast: 0-63 0=low 63=high */
733 int remote_backlight_timeout; /* backlight off timeout: 0-18 0=never,
734 1=always, then according to timeout_values[] */
735 int remote_backlight_timeout_plugged;
736 int remote_scroll_speed; /* long texts scrolling speed: 1-30 */
737 int remote_scroll_delay; /* delay (in 1/10s) before starting scroll */
738 int remote_scroll_step; /* pixels to advance per update */
739 int remote_bidir_limit; /* bidir scroll length limit */
740 bool remote_invert; /* invert display */
741 bool remote_flip_display; /* turn display (and button layout) by 180 degrees */
742 bool remote_caption_backlight; /* turn on backlight at end and start of track */
743 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
744 unsigned char remote_icon_file[MAX_FILENAME+1];
745 unsigned char remote_viewers_icon_file[MAX_FILENAME+1];
746 #ifdef HAS_REMOTE_BUTTON_HOLD
747 int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
748 switch is on */
749 #endif
750 #ifdef HAVE_REMOTE_LCD_TICKING
751 bool remote_reduce_ticking; /* 0=normal operation,
752 1=EMI reduce on with cost more CPU. */
753 #endif
754 #endif /* HAVE_REMOTE_LCD */
756 #if CONFIG_CODEC == MAS3507D
757 bool line_in; /* false=off, true=active */
758 #endif
760 #ifdef HAVE_BUTTON_LIGHT
761 int buttonlight_timeout;
762 #endif
763 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
764 int buttonlight_brightness;
765 #endif
767 #ifdef IPOD_ACCESSORY_PROTOCOL
768 int serial_bitrate; /* 0=auto 1=9600 2=19200 3=38400 4=57600 */
769 #endif
770 #ifdef HAVE_ACCESSORY_SUPPLY
771 bool accessory_supply; /* 0=off 1=on, accessory power supply for iPod */
772 #endif
773 #ifdef HAVE_LINEOUT_POWEROFF
774 bool lineout_active;
775 #endif
777 #ifdef HAVE_SPEAKER
778 bool speaker_enabled;
779 #endif
780 bool prevent_skip;
782 #ifdef HAVE_TOUCHSCREEN
783 int touch_mode;
784 struct touchscreen_parameter ts_calibration_data;
785 #endif
787 #ifdef HAVE_PITCHSCREEN
788 /* pitch screen settings */
789 bool pitch_mode_semitone;
790 #if CONFIG_CODEC == SWCODEC
791 bool pitch_mode_timestretch;
792 #endif
793 #endif
794 /* If values are just added to the end, no need to bump plugin API
795 version. */
796 /* new stuff to be added at the end */
798 #ifdef USB_ENABLE_HID
799 bool usb_hid;
800 int usb_keypad_mode;
801 #endif
803 #ifdef HAVE_LCD_BITMAP
804 unsigned char ui_vp_config[64]; /* viewport string for the lists */
805 #ifdef HAVE_REMOTE_LCD
806 unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */
807 #endif
808 #endif
810 #if CONFIG_CODEC == SWCODEC
811 int compressor_threshold;
812 int compressor_makeup_gain;
813 int compressor_ratio;
814 int compressor_knee;
815 int compressor_release_time;
816 #endif
818 #ifdef HAVE_MORSE_INPUT
819 bool morse_input; /* text input method setting */
820 #endif
822 #ifdef HAVE_HOTKEY
823 /* hotkey assignments - acceptable values are in
824 hotkey_action enum in onplay.h */
825 int hotkey_wps;
826 int hotkey_tree;
827 #endif
829 #if CONFIG_CODEC == SWCODEC
830 /* When resuming playback (after a stop), rewind this number of seconds */
831 int resume_rewind;
832 #endif
834 #ifdef AUDIOHW_HAVE_DEPTH_3D
835 int depth_3d;
836 #endif
838 #ifdef AUDIOHW_HAVE_EQ
839 /** Hardware EQ tone controls **/
840 struct hw_eq_band
842 /* Maintain the order of members or sound_menu has to be changed */
843 int gain;
844 #ifdef AUDIOHW_HAVE_EQ_FREQUENCY
845 int frequency;
846 #endif
847 #ifdef AUDIOHW_HAVE_EQ_WIDTH
848 int width;
849 #endif
850 } hw_eq_bands[AUDIOHW_EQ_BAND_NUM];
851 #endif /* AUDIOHW_HAVE_EQ */
854 /** global variables **/
855 extern long lasttime;
856 /* global settings */
857 extern struct user_settings global_settings;
858 /* global status */
859 extern struct system_status global_status;
861 #endif /* __SETTINGS_H__ */