2013-04-12 07:04:46 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
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:30:26 +00:00
|
|
|
#include "atom/common/options_switches.h"
|
2013-04-12 07:04:46 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace switches {
|
|
|
|
|
|
|
|
const char kTitle[] = "title";
|
|
|
|
const char kIcon[] = "icon";
|
|
|
|
const char kFrame[] = "frame";
|
|
|
|
const char kShow[] = "show";
|
2013-05-10 12:34:05 +00:00
|
|
|
const char kCenter[] = "center";
|
2013-04-12 07:04:46 +00:00
|
|
|
const char kX[] = "x";
|
|
|
|
const char kY[] = "y";
|
|
|
|
const char kWidth[] = "width";
|
|
|
|
const char kHeight[] = "height";
|
2013-05-10 12:34:05 +00:00
|
|
|
const char kMinWidth[] = "min-width";
|
|
|
|
const char kMinHeight[] = "min-height";
|
|
|
|
const char kMaxWidth[] = "max-width";
|
|
|
|
const char kMaxHeight[] = "max-height";
|
2013-04-12 07:04:46 +00:00
|
|
|
const char kResizable[] = "resizable";
|
|
|
|
const char kFullscreen[] = "fullscreen";
|
|
|
|
|
|
|
|
// Start with the kiosk mode, see Opera's page for description:
|
|
|
|
// http://www.opera.com/support/mastering/kiosk/
|
|
|
|
const char kKiosk[] = "kiosk";
|
|
|
|
|
|
|
|
// Make windows stays on the top of all other windows.
|
|
|
|
const char kAlwaysOnTop[] = "always-on-top";
|
|
|
|
|
2014-01-30 15:20:12 +00:00
|
|
|
const char kNodeIntegration[] = "node-integration";
|
2014-01-30 13:57:01 +00:00
|
|
|
|
2014-03-15 11:28:23 +00:00
|
|
|
// Enable the NSView to accept first mouse event.
|
|
|
|
const char kAcceptFirstMouse[] = "accept-first-mouse";
|
|
|
|
|
2014-05-15 07:18:46 +00:00
|
|
|
// Whether window size should include window frame.
|
|
|
|
const char kUseContentSize[] = "use-content-size";
|
|
|
|
|
2014-05-22 14:54:09 +00:00
|
|
|
// The WebPreferences.
|
|
|
|
const char kWebPreferences[] = "web-preferences";
|
|
|
|
|
2013-04-12 07:04:46 +00:00
|
|
|
} // namespace switches
|
|
|
|
|
|
|
|
} // namespace atom
|