| Index: fpdfsdk/src/javascript/color.h
|
| diff --git a/fpdfsdk/src/javascript/color.h b/fpdfsdk/src/javascript/color.h
|
| deleted file mode 100644
|
| index 616337414dad99827121d1bae6ed338b0563898c..0000000000000000000000000000000000000000
|
| --- a/fpdfsdk/src/javascript/color.h
|
| +++ /dev/null
|
| @@ -1,87 +0,0 @@
|
| -// Copyright 2014 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
|
| -
|
| -#ifndef FPDFSDK_SRC_JAVASCRIPT_COLOR_H_
|
| -#define FPDFSDK_SRC_JAVASCRIPT_COLOR_H_
|
| -
|
| -#include <vector>
|
| -
|
| -#include "fpdfsdk/include/pdfwindow/PWL_Wnd.h"
|
| -#include "fpdfsdk/src/javascript/JS_Define.h"
|
| -
|
| -class color : public CJS_EmbedObj {
|
| - public:
|
| - color(CJS_Object* pJSObject);
|
| - ~color() override;
|
| -
|
| - FX_BOOL black(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL blue(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL cyan(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL dkGray(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL gray(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL green(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL ltGray(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL magenta(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL red(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL transparent(IJS_Context* cc,
|
| - CJS_PropValue& vp,
|
| - CFX_WideString& sError);
|
| - FX_BOOL white(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| - FX_BOOL yellow(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
|
| -
|
| - FX_BOOL convert(IJS_Context* cc,
|
| - const std::vector<CJS_Value>& params,
|
| - CJS_Value& vRet,
|
| - CFX_WideString& sError);
|
| - FX_BOOL equal(IJS_Context* cc,
|
| - const std::vector<CJS_Value>& params,
|
| - CJS_Value& vRet,
|
| - CFX_WideString& sError);
|
| -
|
| - public:
|
| - static void ConvertPWLColorToArray(const CPWL_Color& color, CJS_Array& array);
|
| - static void ConvertArrayToPWLColor(CJS_Array& array, CPWL_Color& color);
|
| -
|
| - private:
|
| - CPWL_Color m_crTransparent;
|
| - CPWL_Color m_crBlack;
|
| - CPWL_Color m_crWhite;
|
| - CPWL_Color m_crRed;
|
| - CPWL_Color m_crGreen;
|
| - CPWL_Color m_crBlue;
|
| - CPWL_Color m_crCyan;
|
| - CPWL_Color m_crMagenta;
|
| - CPWL_Color m_crYellow;
|
| - CPWL_Color m_crDKGray;
|
| - CPWL_Color m_crGray;
|
| - CPWL_Color m_crLTGray;
|
| -};
|
| -
|
| -class CJS_Color : public CJS_Object {
|
| - public:
|
| - CJS_Color(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
|
| - ~CJS_Color() override {}
|
| -
|
| - DECLARE_JS_CLASS();
|
| -
|
| - JS_STATIC_PROP(black, color);
|
| - JS_STATIC_PROP(blue, color);
|
| - JS_STATIC_PROP(cyan, color);
|
| - JS_STATIC_PROP(dkGray, color);
|
| - JS_STATIC_PROP(gray, color);
|
| - JS_STATIC_PROP(green, color);
|
| - JS_STATIC_PROP(ltGray, color);
|
| - JS_STATIC_PROP(magenta, color);
|
| - JS_STATIC_PROP(red, color);
|
| - JS_STATIC_PROP(transparent, color);
|
| - JS_STATIC_PROP(white, color);
|
| - JS_STATIC_PROP(yellow, color);
|
| -
|
| - JS_STATIC_METHOD(convert, color);
|
| - JS_STATIC_METHOD(equal, color);
|
| -};
|
| -
|
| -#endif // FPDFSDK_SRC_JAVASCRIPT_COLOR_H_
|
|
|