Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cjx_treelist.cpp
Go to the documentation of this file.
1// Copyright 2017 The PDFium Authors
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 "fxjs/xfa/cjx_treelist.h"
8
9#include "core/fxcrt/span.h"
10#include "fxjs/js_resources.h"
11#include "fxjs/xfa/cfxjse_engine.h"
12#include "fxjs/xfa/cfxjse_value.h"
13#include "v8/include/v8-object.h"
14#include "xfa/fxfa/parser/cxfa_document.h"
15#include "xfa/fxfa/parser/cxfa_node.h"
16#include "xfa/fxfa/parser/cxfa_treelist.h"
17
18const CJX_MethodSpec CJX_TreeList::MethodSpecs[] = {
19 {"namedItem", namedItem_static}};
20
21CJX_TreeList::CJX_TreeList(CXFA_TreeList* list) : CJX_List(list) {
22 DefineMethods(MethodSpecs);
23}
24
25CJX_TreeList::~CJX_TreeList() = default;
26
27bool CJX_TreeList::DynamicTypeIs(TypeTag eType) const {
28 return eType == static_type__ || ParentType__::DynamicTypeIs(eType);
29}
30
31CXFA_TreeList* CJX_TreeList::GetXFATreeList() {
32 return ToTreeList(GetXFAObject());
33}
34
35CJS_Result CJX_TreeList::namedItem(CFXJSE_Engine* runtime,
36 pdfium::span<v8::Local<v8::Value>> params) {
37 if (params.size() != 1)
39
40 CXFA_Node* pNode = GetXFATreeList()->NamedItem(
41 runtime->ToWideString(params[0]).AsStringView());
42 if (!pNode)
44
45 return CJS_Result::Success(runtime->GetOrCreateJSBindingFromMap(pNode));
46}
friend class EventParamScope
static CJS_Result Success()
Definition cjs_result.h:28
static CJS_Result Failure(JSMessage id)
Definition cjs_result.h:35
bool DynamicTypeIs(TypeTag eType) const override
Definition cjx_list.cpp:32
CXFA_Object * GetXFAObject() const
Definition cjx_object.h:113
~CJX_TreeList() override
bool DynamicTypeIs(TypeTag eType) const override
JSMessage