1d5f0e82bSstippi /* 2d5f0e82bSstippi * Copyright (C) 2010 Stephan Aßmus <superstippi@gmx.de> 3d5f0e82bSstippi * 4d5f0e82bSstippi * All rights reserved. 5d5f0e82bSstippi * 6d5f0e82bSstippi * Redistribution and use in source and binary forms, with or without 7d5f0e82bSstippi * modification, are permitted provided that the following conditions 8d5f0e82bSstippi * are met: 9d5f0e82bSstippi * 1. Redistributions of source code must retain the above copyright 10d5f0e82bSstippi * notice, this list of conditions and the following disclaimer. 11d5f0e82bSstippi * 2. Redistributions in binary form must reproduce the above copyright 12d5f0e82bSstippi * notice, this list of conditions and the following disclaimer in the 13d5f0e82bSstippi * documentation and/or other materials provided with the distribution. 14d5f0e82bSstippi * 15d5f0e82bSstippi * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 16d5f0e82bSstippi * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17d5f0e82bSstippi * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 18d5f0e82bSstippi * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 19d5f0e82bSstippi * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 20d5f0e82bSstippi * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21d5f0e82bSstippi * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 22d5f0e82bSstippi * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 23d5f0e82bSstippi * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24d5f0e82bSstippi * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25d5f0e82bSstippi * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26d5f0e82bSstippi */ 27d5f0e82bSstippi #ifndef SETTINGS_KEYS_H 28d5f0e82bSstippi #define SETTINGS_KEYS_H 29d5f0e82bSstippi 30d5f0e82bSstippi #include <SupportDefs.h> 31d5f0e82bSstippi 32d5f0e82bSstippi 33d5f0e82bSstippi extern const char* kSettingsKeyDownloadPath; 34d5f0e82bSstippi extern const char* kSettingsKeyShowTabsIfSinglePageOpen; 35*ea40bbf2Sstippi extern const char* kSettingsKeyAutoHideInterfaceInFullscreenMode; 36d5f0e82bSstippi 371547f92bSstippi extern const char* kSettingsKeyNewWindowPolicy; 381547f92bSstippi extern const char* kSettingsKeyNewTabPolicy; 391547f92bSstippi extern const char* kSettingsKeyStartPageURL; 401547f92bSstippi extern const char* kSettingsKeySearchPageURL; 411547f92bSstippi 421547f92bSstippi extern const char* kDefaultDownloadPath; 431547f92bSstippi extern const char* kDefaultStartPageURL; 441547f92bSstippi extern const char* kDefaultSearchPageURL; 45d5f0e82bSstippi 4699006ca0Sstippi extern const char* kSettingsKeyUseProxy; 4799006ca0Sstippi extern const char* kSettingsKeyProxyAddress; 4899006ca0Sstippi extern const char* kSettingsKeyProxyPort; 4999006ca0Sstippi 50d5f0e82bSstippi #endif // SETTINGS_KEYS_H 51