dan sinclair | 993a199 | 2017-10-25 20:21:09 -0400 | [diff] [blame] | 1 | // Copyright 2017 PDFium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
| 7 | #include "fpdfsdk/javascript/cjs_font.h" |
| 8 | |
Dan Sinclair | c94a793 | 2017-10-26 16:48:57 -0400 | [diff] [blame^] | 9 | const JSConstSpec CJS_Font::ConstSpecs[] = { |
dan sinclair | 993a199 | 2017-10-25 20:21:09 -0400 | [diff] [blame] | 10 | {"Times", JSConstSpec::String, 0, "Times-Roman"}, |
| 11 | {"TimesB", JSConstSpec::String, 0, "Times-Bold"}, |
| 12 | {"TimesI", JSConstSpec::String, 0, "Times-Italic"}, |
| 13 | {"TimesBI", JSConstSpec::String, 0, "Times-BoldItalic"}, |
| 14 | {"Helv", JSConstSpec::String, 0, "Helvetica"}, |
| 15 | {"HelvB", JSConstSpec::String, 0, "Helvetica-Bold"}, |
| 16 | {"HelvI", JSConstSpec::String, 0, "Helvetica-Oblique"}, |
| 17 | {"HelvBI", JSConstSpec::String, 0, "Helvetica-BoldOblique"}, |
| 18 | {"Cour", JSConstSpec::String, 0, "Courier"}, |
| 19 | {"CourB", JSConstSpec::String, 0, "Courier-Bold"}, |
| 20 | {"CourI", JSConstSpec::String, 0, "Courier-Oblique"}, |
| 21 | {"CourBI", JSConstSpec::String, 0, "Courier-BoldOblique"}, |
| 22 | {"Symbol", JSConstSpec::String, 0, "Symbol"}, |
| 23 | {"ZapfD", JSConstSpec::String, 0, "ZapfDingbats"}, |
| 24 | {0, JSConstSpec::Number, 0, 0}}; |
| 25 | |
Dan Sinclair | ef29953 | 2017-10-26 16:48:30 -0400 | [diff] [blame] | 26 | int CJS_Font::ObjDefnID = -1; |
Dan Sinclair | 89d26c8 | 2017-10-26 12:21:28 -0400 | [diff] [blame] | 27 | |
Dan Sinclair | ef29953 | 2017-10-26 16:48:30 -0400 | [diff] [blame] | 28 | // static |
Dan Sinclair | 89d26c8 | 2017-10-26 12:21:28 -0400 | [diff] [blame] | 29 | void CJS_Font::DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType) { |
Dan Sinclair | ef29953 | 2017-10-26 16:48:30 -0400 | [diff] [blame] | 30 | ObjDefnID = pEngine->DefineObj("font", eObjType, nullptr, nullptr); |
| 31 | DefineConsts(pEngine, ObjDefnID, ConstSpecs); |
Dan Sinclair | 89d26c8 | 2017-10-26 12:21:28 -0400 | [diff] [blame] | 32 | } |