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_delta.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_delta.h"
8
9#include "core/fxcrt/span.h"
10#include "fxjs/js_resources.h"
11#include "fxjs/xfa/cfxjse_value.h"
12#include "xfa/fxfa/parser/cxfa_delta.h"
13
14const CJX_MethodSpec CJX_Delta::MethodSpecs[] = {{"restore", restore_static}};
15
16CJX_Delta::CJX_Delta(CXFA_Delta* delta) : CJX_Object(delta) {
17 DefineMethods(MethodSpecs);
18}
19
20CJX_Delta::~CJX_Delta() = default;
21
22bool CJX_Delta::DynamicTypeIs(TypeTag eType) const {
23 return eType == static_type__ || ParentType__::DynamicTypeIs(eType);
24}
25
26CJS_Result CJX_Delta::restore(CFXJSE_Engine* runtime,
27 pdfium::span<v8::Local<v8::Value>> params) {
28 if (!params.empty())
30
32}
33
34void CJX_Delta::currentValue(v8::Isolate* pIsolate,
35 v8::Local<v8::Value>* pValue,
36 bool bSetting,
37 XFA_Attribute eAttribute) {}
38
39void CJX_Delta::savedValue(v8::Isolate* pIsolate,
40 v8::Local<v8::Value>* pValue,
41 bool bSetting,
42 XFA_Attribute eAttribute) {}
43
44void CJX_Delta::target(v8::Isolate* pIsolate,
45 v8::Local<v8::Value>* pValue,
46 bool bSetting,
47 XFA_Attribute eAttribute) {}
friend class EventParamScope
static CJS_Result Success()
Definition cjs_result.h:28
static CJS_Result Failure(JSMessage id)
Definition cjs_result.h:35
~CJX_Delta() override
bool DynamicTypeIs(TypeTag eType) const override
Definition cjx_delta.cpp:22
virtual bool DynamicTypeIs(TypeTag eType) const
XFA_Attribute
Definition fxfa_basic.h:67
JSMessage