1d5f0e82bSstippi /* 2d5f0e82bSstippi * Copyright (C) 2010 Stephan Aßmus <superstippi@gmx.de> 3c620610bSJohn Scipione * Coptright 2014 Haiku, Inc. All rights reserved. 4d5f0e82bSstippi * 5c620610bSJohn Scipione * Distributed under the terms of the MIT License. 6c620610bSJohn Scipione * 7c620610bSJohn Scipione * Authors: 8c620610bSJohn Scipione * Stephan Aßmus, superstippi@gmx.de 9c620610bSJohn Scipione * John Scipione, jscipione@gmail.com 10d5f0e82bSstippi */ 11d5f0e82bSstippi #ifndef SETTINGS_KEYS_H 12d5f0e82bSstippi #define SETTINGS_KEYS_H 13d5f0e82bSstippi 14c620610bSJohn Scipione 15d5f0e82bSstippi #include <SupportDefs.h> 16d5f0e82bSstippi 17d5f0e82bSstippi 18d5f0e82bSstippi extern const char* kSettingsKeyDownloadPath; 19d5f0e82bSstippi extern const char* kSettingsKeyShowTabsIfSinglePageOpen; 20ea40bbf2Sstippi extern const char* kSettingsKeyAutoHideInterfaceInFullscreenMode; 21208ecbcaSstippi extern const char* kSettingsKeyAutoHidePointer; 221220bcc0Sleavengood extern const char* kSettingsKeyShowHomeButton; 23d5f0e82bSstippi 2441ddfe2aSRob Gill extern const char* kSettingsKeyStartUpPolicy; 251547f92bSstippi extern const char* kSettingsKeyNewWindowPolicy; 261547f92bSstippi extern const char* kSettingsKeyNewTabPolicy; 271547f92bSstippi extern const char* kSettingsKeyStartPageURL; 281547f92bSstippi extern const char* kSettingsKeySearchPageURL; 291547f92bSstippi 301547f92bSstippi extern const char* kDefaultDownloadPath; 311547f92bSstippi extern const char* kDefaultStartPageURL; 321547f92bSstippi extern const char* kDefaultSearchPageURL; 33d5f0e82bSstippi 3499006ca0Sstippi extern const char* kSettingsKeyUseProxy; 3599006ca0Sstippi extern const char* kSettingsKeyProxyAddress; 3699006ca0Sstippi extern const char* kSettingsKeyProxyPort; 37d097f67cSJessica Hamilton extern const char* kSettingsKeyUseProxyAuth; 38d097f67cSJessica Hamilton extern const char* kSettingsKeyProxyUsername; 39d097f67cSJessica Hamilton extern const char* kSettingsKeyProxyPassword; 4099006ca0Sstippi 41c620610bSJohn Scipione extern const char* kSettingsShowBookmarkBar; 42c620610bSJohn Scipione 43*aa013a51Sjpdw struct SearchEngine { 44*aa013a51Sjpdw const char* name; 45*aa013a51Sjpdw const char* url; 46*aa013a51Sjpdw const char* shortcut; 47*aa013a51Sjpdw }; 48*aa013a51Sjpdw 49*aa013a51Sjpdw extern const struct SearchEngine kSearchEngines[]; 50*aa013a51Sjpdw 51d5f0e82bSstippi #endif // SETTINGS_KEYS_H 52