summaryrefslogtreecommitdiff
path: root/apps/settings.c
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.c
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.c')
-rw-r--r--apps/settings.c103
1 files changed, 103 insertions, 0 deletions
diff --git a/apps/settings.c b/apps/settings.c
new file mode 100644
index 0000000..f6566f4
--- /dev/null
+++ b/apps/settings.c
@@ -0,0 +1,103 @@
+/***************************************************************************
+ * __________ __ ___.
+ * 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.
+ *
+ ****************************************************************************/
+
+#include <stdio.h>
+#include "config.h"
+#include "settings.h"
+#include "disk.h"
+#include "panic.h"
+#include "debug.h"
+
+struct user_settings global_settings;
+
+/*
+ * persist all runtime user settings to disk
+ */
+int persist_all_settings( void )
+{
+ return 1;
+}
+
+/*
+ * persist all the playlist information to disk
+ */
+int persist_all_playlist_info( void )
+{
+ return 1;
+}
+
+/*
+ * load settings from disk
+ */
+void reload_all_settings( struct user_settings *settings )
+{
+ DEBUGF( "reload_all_settings()\n" );
+
+ /* this is a TEMP stub version */
+
+ /* populate settings with default values */
+
+ reset_settings( settings );
+}
+
+/*
+ * reset all settings to their default value
+ */
+void reset_settings( struct user_settings *settings ) {
+
+ DEBUGF( "reset_settings()\n" );
+
+ settings->volume = DEFAULT_VOLUME_SETTING;
+ settings->balance = DEFAULT_BALANCE_SETTING;
+ settings->bass = DEFAULT_BASS_SETTING;
+ settings->treble = DEFAULT_TREBLE_SETTING;
+ settings->loudness = DEFAULT_LOUDNESS_SETTING;
+ settings->bass_boost = DEFAULT_BASS_BOOST_SETTING;
+ settings->contrast = DEFAULT_CONTRAST_SETTING;
+ settings->poweroff = DEFAULT_POWEROFF_SETTING;
+ settings->backlight = DEFAULT_BACKLIGHT_SETTING;
+ settings->wps_display = DEFAULT_WPS_DISPLAY;
+}
+
+
+/*
+ * dump the list of current settings
+ */
+void display_current_settings( struct user_settings *settings )
+{
+#ifdef DEBUG
+ DEBUGF( "\ndisplay_current_settings()\n" );
+
+ DEBUGF( "\nvolume:\t\t%d\nbalance:\t%d\nbass:\t\t%d\ntreble:\t\t%d\nloudness:\t%d\nbass boost:\t%d\n",
+ settings->volume,
+ settings->balance,
+ settings->bass,
+ settings->treble,
+ settings->loudness,
+ settings->bass_boost );
+
+ DEBUGF( "contrast:\t%d\npoweroff:\t%d\nbacklight:\t%d\n",
+ settings->contrast,
+ settings->poweroff,
+ settings->backlight );
+#else
+ /* Get rid of warning */
+ settings = settings;
+#endif
+}