1d5f0e82bSstippi /* 2d5f0e82bSstippi * Copyright (C) 2010 Stephan Aßmus <superstippi@gmx.de> 3*c620610bSJohn Scipione * Coptright 2014 Haiku, Inc. All rights reserved. 4d5f0e82bSstippi * 5*c620610bSJohn Scipione * Distributed under the terms of the MIT License. 6*c620610bSJohn Scipione * 7*c620610bSJohn Scipione * Authors: 8*c620610bSJohn Scipione * Stephan Aßmus, superstippi@gmx.de 9*c620610bSJohn Scipione * John Scipione, jscipione@gmail.com 10d5f0e82bSstippi */ 11d5f0e82bSstippi #ifndef SETTINGS_KEYS_H 12d5f0e82bSstippi #define SETTINGS_KEYS_H 13d5f0e82bSstippi 14*c620610bSJohn 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 241547f92bSstippi extern const char* kSettingsKeyNewWindowPolicy; 251547f92bSstippi extern const char* kSettingsKeyNewTabPolicy; 261547f92bSstippi extern const char* kSettingsKeyStartPageURL; 271547f92bSstippi extern const char* kSettingsKeySearchPageURL; 281547f92bSstippi 291547f92bSstippi extern const char* kDefaultDownloadPath; 301547f92bSstippi extern const char* kDefaultStartPageURL; 311547f92bSstippi extern const char* kDefaultSearchPageURL; 32d5f0e82bSstippi 3399006ca0Sstippi extern const char* kSettingsKeyUseProxy; 3499006ca0Sstippi extern const char* kSettingsKeyProxyAddress; 3599006ca0Sstippi extern const char* kSettingsKeyProxyPort; 36d097f67cSJessica Hamilton extern const char* kSettingsKeyUseProxyAuth; 37d097f67cSJessica Hamilton extern const char* kSettingsKeyProxyUsername; 38d097f67cSJessica Hamilton extern const char* kSettingsKeyProxyPassword; 3999006ca0Sstippi 40*c620610bSJohn Scipione extern const char* kSettingsShowBookmarkBar; 41*c620610bSJohn Scipione 42d5f0e82bSstippi #endif // SETTINGS_KEYS_H 43