2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 07:04:46 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:58:59 +00:00
|
|
|
#ifndef ATOM_COMMON_OPTIONS_SWITCHES_H_
|
|
|
|
#define ATOM_COMMON_OPTIONS_SWITCHES_H_
|
2013-04-12 07:04:46 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2015-11-13 05:58:31 +00:00
|
|
|
namespace options {
|
2013-04-12 07:04:46 +00:00
|
|
|
|
|
|
|
extern const char kTitle[];
|
|
|
|
extern const char kIcon[];
|
|
|
|
extern const char kFrame[];
|
|
|
|
extern const char kShow[];
|
2013-05-10 12:34:05 +00:00
|
|
|
extern const char kCenter[];
|
2013-04-12 07:04:46 +00:00
|
|
|
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[];
|
2016-01-15 02:45:19 +00:00
|
|
|
extern const char kMovable[];
|
2016-01-18 22:46:35 +00:00
|
|
|
extern const char kMinimizable[];
|
2016-01-22 21:24:33 +00:00
|
|
|
extern const char kMaximizable[];
|
2016-01-23 07:47:37 +00:00
|
|
|
extern const char kFullScreenable[];
|
2016-01-18 22:46:35 +00:00
|
|
|
extern const char kClosable[];
|
2013-04-12 07:04:46 +00:00
|
|
|
extern const char kFullscreen[];
|
2014-06-16 02:29:51 +00:00
|
|
|
extern const char kSkipTaskbar[];
|
2013-04-12 07:04:46 +00:00
|
|
|
extern const char kKiosk[];
|
|
|
|
extern const char kAlwaysOnTop[];
|
2014-03-15 11:28:23 +00:00
|
|
|
extern const char kAcceptFirstMouse[];
|
2014-05-15 07:18:46 +00:00
|
|
|
extern const char kUseContentSize[];
|
2016-10-26 03:12:12 +00:00
|
|
|
extern const char kZoomToContentSize[];
|
2015-09-14 12:15:41 +00:00
|
|
|
extern const char kTitleBarStyle[];
|
2014-08-07 05:47:58 +00:00
|
|
|
extern const char kAutoHideMenuBar[];
|
2014-08-17 04:23:00 +00:00
|
|
|
extern const char kEnableLargerThanScreen[];
|
2014-08-21 04:24:55 +00:00
|
|
|
extern const char kDarkTheme[];
|
2014-12-23 01:48:54 +00:00
|
|
|
extern const char kTransparent[];
|
2015-02-11 04:12:22 +00:00
|
|
|
extern const char kType[];
|
2015-04-27 04:08:22 +00:00
|
|
|
extern const char kDisableAutoHideCursor[];
|
2015-05-08 20:28:24 +00:00
|
|
|
extern const char kStandardWindow[];
|
2015-10-21 10:17:28 +00:00
|
|
|
extern const char kBackgroundColor[];
|
2016-01-23 00:15:49 +00:00
|
|
|
extern const char kHasShadow[];
|
2016-06-13 08:10:28 +00:00
|
|
|
extern const char kFocusable[];
|
2015-11-10 14:17:27 +00:00
|
|
|
extern const char kWebPreferences[];
|
2016-11-07 20:22:41 +00:00
|
|
|
extern const char kVibrancyType[];
|
2013-04-12 07:04:46 +00:00
|
|
|
|
2015-11-10 14:17:27 +00:00
|
|
|
// WebPreferences.
|
|
|
|
extern const char kZoomFactor[];
|
|
|
|
extern const char kPreloadScript[];
|
2015-11-13 08:03:40 +00:00
|
|
|
extern const char kPreloadURL[];
|
2015-11-10 14:17:27 +00:00
|
|
|
extern const char kNodeIntegration[];
|
|
|
|
extern const char kGuestInstanceID[];
|
2014-09-09 02:33:31 +00:00
|
|
|
extern const char kExperimentalFeatures[];
|
|
|
|
extern const char kExperimentalCanvasFeatures[];
|
2015-12-17 13:27:14 +00:00
|
|
|
extern const char kOpenerID[];
|
2016-05-06 05:57:43 +00:00
|
|
|
extern const char kScrollBounce[];
|
2016-01-07 06:10:18 +00:00
|
|
|
extern const char kBlinkFeatures[];
|
2016-06-07 20:42:42 +00:00
|
|
|
extern const char kDisableBlinkFeatures[];
|
2015-11-13 05:58:31 +00:00
|
|
|
|
|
|
|
} // namespace options
|
|
|
|
|
2014-09-09 02:33:31 +00:00
|
|
|
|
2015-11-10 14:17:27 +00:00
|
|
|
// Following are actually command line switches, should be moved to other files.
|
2015-11-13 05:58:31 +00:00
|
|
|
|
|
|
|
namespace switches {
|
|
|
|
|
2016-08-15 10:59:08 +00:00
|
|
|
extern const char kEnableSandbox[];
|
2015-11-10 14:17:27 +00:00
|
|
|
extern const char kEnablePlugins[];
|
|
|
|
extern const char kPpapiFlashPath[];
|
|
|
|
extern const char kPpapiFlashVersion[];
|
2015-01-05 21:40:38 +00:00
|
|
|
extern const char kDisableHttpCache[];
|
2016-06-08 06:46:50 +00:00
|
|
|
extern const char kStandardSchemes[];
|
2015-12-08 19:21:46 +00:00
|
|
|
extern const char kRegisterServiceWorkerSchemes[];
|
2015-09-21 16:43:32 +00:00
|
|
|
extern const char kSSLVersionFallbackMin[];
|
2015-10-19 20:56:01 +00:00
|
|
|
extern const char kCipherSuiteBlacklist[];
|
2015-07-09 22:57:17 +00:00
|
|
|
extern const char kAppUserModelId[];
|
|
|
|
|
2016-04-02 11:35:57 +00:00
|
|
|
extern const char kBackgroundColor[];
|
2015-11-13 05:58:31 +00:00
|
|
|
extern const char kZoomFactor[];
|
|
|
|
extern const char kPreloadScript[];
|
2015-11-13 08:03:40 +00:00
|
|
|
extern const char kPreloadURL[];
|
2015-11-13 05:58:31 +00:00
|
|
|
extern const char kNodeIntegration[];
|
|
|
|
extern const char kGuestInstanceID[];
|
2015-12-17 13:27:14 +00:00
|
|
|
extern const char kOpenerID[];
|
2016-05-06 05:57:43 +00:00
|
|
|
extern const char kScrollBounce[];
|
2015-11-13 05:58:31 +00:00
|
|
|
|
2015-12-16 10:06:38 +00:00
|
|
|
extern const char kWidevineCdmPath[];
|
|
|
|
extern const char kWidevineCdmVersion[];
|
|
|
|
|
2013-04-12 07:04:46 +00:00
|
|
|
} // namespace switches
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-03-16 00:58:59 +00:00
|
|
|
#endif // ATOM_COMMON_OPTIONS_SWITCHES_H_
|