6bcf67e051
* chore: add code required to use chromes spellchecker * chore: fix linting * chore: manifests needs buildflags now * chore: add dictionarySuggestions to the context menu event when the spellchecker is active * chore: enable by default for windows builds * chore: add patch to remove incognito usage in the spellchecker * chore: add dependencies on spellcheck common and flags * chore: conditionally include spell check panel impl * chore: fix deps for spellcheck feature flags * chore: add patch for electron resources * chore: add dependency on //components/language/core/browser * chore: patches to make hunspell work on windows * build: collect hunspell dictionaries into a zip file and publish * chore: clean up patches * chore: add docs and set spell checker url method * chore: fix error handling * chore: fix hash logic * build: update hunspell filename generator * fix: default spellchecker list to the current system locale if we can * docs: document the language getter * chore: patch IDS_ resources for linux builds * feat: add spellcheck webpref flag to disable the builtin spellchecker * chore: fix docs typo * chore: clean up spellchecker impl as per feedback * remove unneeded deps
153 lines
4.7 KiB
C++
153 lines
4.7 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_COMMON_OPTIONS_SWITCHES_H_
|
|
#define SHELL_COMMON_OPTIONS_SWITCHES_H_
|
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
namespace electron {
|
|
|
|
namespace options {
|
|
|
|
extern const char kTitle[];
|
|
extern const char kIcon[];
|
|
extern const char kFrame[];
|
|
extern const char kShow[];
|
|
extern const char kCenter[];
|
|
extern const char kX[];
|
|
extern const char kY[];
|
|
extern const char kWidth[];
|
|
extern const char kHeight[];
|
|
extern const char kMinWidth[];
|
|
extern const char kMinHeight[];
|
|
extern const char kMaxWidth[];
|
|
extern const char kMaxHeight[];
|
|
extern const char kResizable[];
|
|
extern const char kMovable[];
|
|
extern const char kMinimizable[];
|
|
extern const char kMaximizable[];
|
|
extern const char kFullScreenable[];
|
|
extern const char kClosable[];
|
|
extern const char kFullscreen[];
|
|
extern const char kSkipTaskbar[];
|
|
extern const char kKiosk[];
|
|
extern const char kSimpleFullScreen[];
|
|
extern const char kAlwaysOnTop[];
|
|
extern const char kAcceptFirstMouse[];
|
|
extern const char kUseContentSize[];
|
|
extern const char kZoomToPageWidth[];
|
|
extern const char kFullscreenWindowTitle[];
|
|
extern const char kTitleBarStyle[];
|
|
extern const char kTabbingIdentifier[];
|
|
extern const char kAutoHideMenuBar[];
|
|
extern const char kEnableLargerThanScreen[];
|
|
extern const char kDarkTheme[];
|
|
extern const char kTransparent[];
|
|
extern const char kType[];
|
|
extern const char kDisableAutoHideCursor[];
|
|
extern const char kStandardWindow[];
|
|
extern const char kBackgroundColor[];
|
|
extern const char kHasShadow[];
|
|
extern const char kOpacity[];
|
|
extern const char kFocusable[];
|
|
extern const char kWebPreferences[];
|
|
extern const char kVibrancyType[];
|
|
|
|
// WebPreferences.
|
|
extern const char kZoomFactor[];
|
|
extern const char kPreloadScript[];
|
|
extern const char kPreloadURL[];
|
|
extern const char kNodeIntegration[];
|
|
extern const char kContextIsolation[];
|
|
extern const char kGuestInstanceID[];
|
|
extern const char kExperimentalFeatures[];
|
|
extern const char kOpenerID[];
|
|
extern const char kScrollBounce[];
|
|
extern const char kEnableBlinkFeatures[];
|
|
extern const char kDisableBlinkFeatures[];
|
|
extern const char kNodeIntegrationInWorker[];
|
|
extern const char kWebviewTag[];
|
|
extern const char kNativeWindowOpen[];
|
|
extern const char kCustomArgs[];
|
|
extern const char kPlugins[];
|
|
extern const char kSandbox[];
|
|
extern const char kWebSecurity[];
|
|
extern const char kAllowRunningInsecureContent[];
|
|
extern const char kOffscreen[];
|
|
extern const char kNodeIntegrationInSubFrames[];
|
|
extern const char kDisableHtmlFullscreenWindowResize[];
|
|
extern const char kJavaScript[];
|
|
extern const char kImages[];
|
|
extern const char kTextAreasAreResizable[];
|
|
extern const char kWebGL[];
|
|
extern const char kNavigateOnDragDrop[];
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
extern const char kSpellcheck[];
|
|
#endif
|
|
|
|
#if BUILDFLAG(ENABLE_REMOTE_MODULE)
|
|
extern const char kEnableRemoteModule[];
|
|
#endif
|
|
|
|
} // namespace options
|
|
|
|
// Following are actually command line switches, should be moved to other files.
|
|
|
|
namespace switches {
|
|
|
|
extern const char kEnableSandbox[];
|
|
extern const char kEnablePlugins[];
|
|
extern const char kPpapiFlashPath[];
|
|
extern const char kPpapiFlashVersion[];
|
|
extern const char kDisableHttpCache[];
|
|
extern const char kStandardSchemes[];
|
|
extern const char kServiceWorkerSchemes[];
|
|
extern const char kSecureSchemes[];
|
|
extern const char kBypassCSPSchemes[];
|
|
extern const char kFetchSchemes[];
|
|
extern const char kCORSSchemes[];
|
|
extern const char kAppUserModelId[];
|
|
extern const char kAppPath[];
|
|
extern const char kEnableApiFilteringLogging[];
|
|
|
|
extern const char kBackgroundColor[];
|
|
extern const char kPreloadScript[];
|
|
extern const char kPreloadScripts[];
|
|
extern const char kNodeIntegration[];
|
|
extern const char kContextIsolation[];
|
|
extern const char kGuestInstanceID[];
|
|
extern const char kOpenerID[];
|
|
extern const char kScrollBounce[];
|
|
extern const char kHiddenPage[];
|
|
extern const char kNativeWindowOpen[];
|
|
extern const char kNodeIntegrationInWorker[];
|
|
extern const char kWebviewTag[];
|
|
extern const char kNodeIntegrationInSubFrames[];
|
|
extern const char kDisableElectronSiteInstanceOverrides[];
|
|
extern const char kEnableNodeLeakageInRenderers[];
|
|
|
|
extern const char kWidevineCdmPath[];
|
|
extern const char kWidevineCdmVersion[];
|
|
|
|
extern const char kDiskCacheSize[];
|
|
extern const char kIgnoreConnectionsLimit[];
|
|
extern const char kAuthServerWhitelist[];
|
|
extern const char kAuthNegotiateDelegateWhitelist[];
|
|
extern const char kEnableAuthNegotiatePort[];
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
extern const char kEnableSpellcheck[];
|
|
#endif
|
|
|
|
#if BUILDFLAG(ENABLE_REMOTE_MODULE)
|
|
extern const char kEnableRemoteModule[];
|
|
#endif
|
|
|
|
} // namespace switches
|
|
|
|
} // namespace electron
|
|
|
|
#endif // SHELL_COMMON_OPTIONS_SWITCHES_H_
|