summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-06-27 00:20:00 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-06-27 00:20:00 +0000
commitf80d8a704d7955ec2c1cca41ebc5975130e69f64 (patch)
tree8165095647f0dc71a3f856a79c94f8952b0a727e /apps/settings.h
parent2d98ae3d03b128b6449f388134aefbd56daede3d (diff)
downloadrockbox-f80d8a704d7955ec2c1cca41ebc5975130e69f64.zip
rockbox-f80d8a704d7955ec2c1cca41ebc5975130e69f64.tar.gz
rockbox-f80d8a704d7955ec2c1cca41ebc5975130e69f64.tar.bz2
rockbox-f80d8a704d7955ec2c1cca41ebc5975130e69f64.tar.xz
Moved settings.c/h to apps/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1215 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h86
1 files changed, 86 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
new file mode 100644
index 0000000..b4a8fde
--- /dev/null
+++ b/apps/settings.h
@@ -0,0 +1,86 @@
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ * $Id$
+ *
+ * Copyright (C) 2002 by wavey@wavey.org
+ *
+ * All files in this archive are subject to the GNU General Public License.
+ * See the file COPYING in the source tree root for full license agreement.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ ****************************************************************************/
+
+#ifndef __SETTINGS_H__
+#define __SETTINGS_H__
+
+#include <stdbool.h>
+
+/* data structures */
+
+#define RESUME_NONE 0
+#define RESUME_SONG 1 /* resume song at startup */
+#define RESUME_PLAYLIST 2 /* resume playlist at startup */
+
+struct user_settings
+{
+ /* audio settings */
+
+ int volume; /* audio output volume: 0-100 0=off 100=max */
+ int balance; /* stereo balance: 0-100 0=left 50=bal 100=right */
+ int bass; /* bass eq: 0-100 0=off 100=max */
+ int treble; /* treble eq: 0-100 0=low 100=high */
+ int loudness; /* loudness eq: 0-100 0=off 100=max */
+ int bass_boost; /* bass boost eq: 0-100 0=off 100=max */
+
+ /* device settings */
+
+ int contrast; /* lcd contrast: 0-100 0=low 100=high */
+ int poweroff; /* power off timer: 0-100 0=never:each 1% = 60 secs */
+ int backlight; /* backlight off timer: 0-100 0=never:each 1% = 10 secs */
+
+ /* resume settings */
+
+ int resume; /* power-on song resume: 0=no. 1=yes song. 2=yes pl */
+ int track_time; /* number of seconds into the track to resume */
+
+ /* misc options */
+
+ int loop_playlist; /* do we return to top of playlist at end? */
+ bool mp3filter;
+
+ /* while playing screen settings */
+ int wps_display;
+
+};
+
+/* prototypes */
+
+int persist_all_settings( void );
+void reload_all_settings( struct user_settings *settings );
+void reset_settings( struct user_settings *settings );
+void display_current_settings( struct user_settings *settings );
+
+/* global settings */
+extern struct user_settings global_settings;
+
+/* system defines */
+
+#define DEFAULT_VOLUME_SETTING 70
+#define DEFAULT_BALANCE_SETTING 50
+#define DEFAULT_BASS_SETTING 50
+#define DEFAULT_TREBLE_SETTING 50
+#define DEFAULT_LOUDNESS_SETTING 0
+#define DEFAULT_BASS_BOOST_SETTING 0
+#define DEFAULT_CONTRAST_SETTING 0
+#define DEFAULT_POWEROFF_SETTING 0
+#define DEFAULT_BACKLIGHT_SETTING 5
+#define DEFAULT_WPS_DISPLAY 0
+
+#endif /* __SETTINGS_H__ */