diff options
Diffstat (limited to 'fxjs/cjs_display.cpp')
-rw-r--r-- | fxjs/cjs_display.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/fxjs/cjs_display.cpp b/fxjs/cjs_display.cpp new file mode 100644 index 0000000000..a52b51d462 --- /dev/null +++ b/fxjs/cjs_display.cpp @@ -0,0 +1,23 @@ +// Copyright 2017 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#include "fxjs/cjs_display.h" + +const JSConstSpec CJS_Display::ConstSpecs[] = { + {"visible", JSConstSpec::Number, 0, 0}, + {"hidden", JSConstSpec::Number, 1, 0}, + {"noPrint", JSConstSpec::Number, 2, 0}, + {"noView", JSConstSpec::Number, 3, 0}, + {0, JSConstSpec::Number, 0, 0}}; + +int CJS_Display::ObjDefnID = -1; + +// static +void CJS_Display::DefineJSObjects(CFXJS_Engine* pEngine) { + ObjDefnID = + pEngine->DefineObj("display", FXJSOBJTYPE_STATIC, nullptr, nullptr); + DefineConsts(pEngine, ObjDefnID, ConstSpecs); +} |