2013-04-12 15:04:46 +08:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 15:04:46 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:58:59 +08:00
|
|
|
#ifndef ATOM_COMMON_OPTIONS_SWITCHES_H_
|
|
|
|
#define ATOM_COMMON_OPTIONS_SWITCHES_H_
|
2013-04-12 15:04:46 +08:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace switches {
|
|
|
|
|
|
|
|
extern const char kTitle[];
|
|
|
|
extern const char kIcon[];
|
|
|
|
extern const char kFrame[];
|
|
|
|
extern const char kShow[];
|
2013-05-10 20:34:05 +08:00
|
|
|
extern const char kCenter[];
|
2013-04-12 15:04:46 +08: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[];
|
|
|
|
extern const char kFullscreen[];
|
2014-06-16 10:29:51 +08:00
|
|
|
extern const char kSkipTaskbar[];
|
2013-04-12 15:04:46 +08:00
|
|
|
extern const char kKiosk[];
|
|
|
|
extern const char kAlwaysOnTop[];
|
2014-01-30 23:20:12 +08:00
|
|
|
extern const char kNodeIntegration[];
|
2014-03-15 19:28:23 +08:00
|
|
|
extern const char kAcceptFirstMouse[];
|
2014-05-15 15:18:46 +08:00
|
|
|
extern const char kUseContentSize[];
|
2014-05-22 22:54:09 +08:00
|
|
|
extern const char kWebPreferences[];
|
2014-06-16 18:52:04 +08:00
|
|
|
extern const char kZoomFactor[];
|
2014-08-07 13:47:58 +08:00
|
|
|
extern const char kAutoHideMenuBar[];
|
2014-08-17 12:23:00 +08:00
|
|
|
extern const char kEnableLargerThanScreen[];
|
2014-08-21 12:24:55 +08:00
|
|
|
extern const char kDarkTheme[];
|
2013-04-12 15:04:46 +08:00
|
|
|
|
|
|
|
} // namespace switches
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-03-16 08:58:59 +08:00
|
|
|
#endif // ATOM_COMMON_OPTIONS_SWITCHES_H_
|