John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 1 | // Copyright 2014 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. |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 4 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 7 | #include "../../include/javascript/IJavaScript.h" |
| 8 | #include "../../include/javascript/JS_Define.h" |
| 9 | #include "../../include/javascript/JS_Object.h" |
| 10 | #include "../../include/javascript/JS_Value.h" |
| 11 | #include "../../include/javascript/Icon.h" |
| 12 | |
| 13 | /* ---------------------- Icon ---------------------- */ |
| 14 | |
| 15 | BEGIN_JS_STATIC_CONST(CJS_Icon) |
| 16 | END_JS_STATIC_CONST() |
| 17 | |
| 18 | BEGIN_JS_STATIC_PROP(CJS_Icon) |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 19 | JS_STATIC_PROP_ENTRY(name) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 20 | END_JS_STATIC_PROP() |
| 21 | |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 22 | BEGIN_JS_STATIC_METHOD(CJS_Icon) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 23 | END_JS_STATIC_METHOD() |
| 24 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 25 | IMPLEMENT_JS_CLASS(CJS_Icon, Icon) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 26 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 27 | Icon::Icon(CJS_Object* pJSObject) |
| 28 | : CJS_EmbedObj(pJSObject), m_pIconStream(NULL), m_swIconName(L"") {} |
| 29 | |
| 30 | Icon::~Icon() {} |
| 31 | |
| 32 | void Icon::SetStream(CPDF_Stream* pIconStream) { |
| 33 | if (pIconStream) |
| 34 | m_pIconStream = pIconStream; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 37 | CPDF_Stream* Icon::GetStream() { |
| 38 | return m_pIconStream; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 39 | } |
| 40 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 41 | void Icon::SetIconName(CFX_WideString name) { |
| 42 | m_swIconName = name; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 45 | CFX_WideString Icon::GetIconName() { |
| 46 | return m_swIconName; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 47 | } |
| 48 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 49 | FX_BOOL Icon::name(IFXJS_Context* cc, |
| 50 | CJS_PropValue& vp, |
| 51 | CFX_WideString& sError) { |
| 52 | if (!vp.IsGetting()) |
| 53 | return FALSE; |
| 54 | |
| 55 | vp << m_swIconName; |
| 56 | return TRUE; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 57 | } |