electron/atom/common/options_switches.h

37 lines
948 B
C
Raw Normal View History

2013-04-12 07:04:46 +00:00
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// 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 {
namespace switches {
extern const char kTitle[];
extern const char kIcon[];
extern const char kFrame[];
extern const char kShow[];
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[];
extern const char kFullscreen[];
extern const char kKiosk[];
extern const char kAlwaysOnTop[];
extern const char kNodeIntegration[];
extern const char kAcceptFirstMouse[];
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_