From 61ab8080d8b81d8bae3f0b23dadfb2aff9edd0eb Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Thu, 27 Jun 2002 00:54:45 +0000 Subject: Moved settings.c/h to apps/ git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1217 a1c6a512-1295-4272-9138-f99709370657 --- firmware/settings.h | 87 ----------------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 firmware/settings.h (limited to 'firmware/settings.h') diff --git a/firmware/settings.h b/firmware/settings.h deleted file mode 100644 index 723c694699..0000000000 --- a/firmware/settings.h +++ /dev/null @@ -1,87 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * 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__ - -/* data structures */ - -typedef enum -{ - RESUME_NONE, /* do not resume */ - RESUME_SONG, /* resume song at startup */ - RESUME_PLAYLIST /* resume playlist at startup */ -} resume_t; - -typedef struct -{ - /* 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 */ - - resume_t 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? */ - - - /* while playing screen settings */ - int wps_display; - -} user_settings_t; - -/* prototypes */ - -int persist_all_settings( void ); -void reload_all_settings( user_settings_t *settings ); -void reset_settings( user_settings_t *settings ); -void display_current_settings( user_settings_t *settings ); - -/* global settings */ -extern user_settings_t 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__ */ -- cgit v1.2.3