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.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #include "xfa/src/foxitlib.h"
8 #include "xfa/src/fxfa/src/common/xfa_utils.h"
9 #include "xfa/src/fxfa/src/common/xfa_object.h"
10 #include "xfa/src/fxfa/src/common/xfa_document.h"
11 #include "xfa/src/fxfa/src/common/xfa_parser.h"
12 #include "xfa/src/fxfa/src/common/xfa_script.h"
13 #include "xfa/src/fxfa/src/common/xfa_docdata.h"
14 #include "xfa/src/fxfa/src/common/xfa_doclayout.h"
15 #include "xfa/src/fxfa/src/common/xfa_localemgr.h"
16 #include "xfa/src/fxfa/src/common/xfa_fm2jsapi.h"
17 #include "xfa_script_datawindow.h"
CScript_DataWindow(CXFA_Document * pDocument)18 CScript_DataWindow::CScript_DataWindow(CXFA_Document* pDocument)
19 : CXFA_OrdinaryObject(pDocument, XFA_ELEMENT_DataWindow) {
20 m_uScriptHash = XFA_HASHCODE_DataWindow;
21 }
~CScript_DataWindow()22 CScript_DataWindow::~CScript_DataWindow() {}
Script_DataWindow_MoveCurrentRecord(CFXJSE_Arguments * pArguments)23 void CScript_DataWindow::Script_DataWindow_MoveCurrentRecord(
24 CFXJSE_Arguments* pArguments) {}
Script_DataWindow_Record(CFXJSE_Arguments * pArguments)25 void CScript_DataWindow::Script_DataWindow_Record(
26 CFXJSE_Arguments* pArguments) {}
Script_DataWindow_GotoRecord(CFXJSE_Arguments * pArguments)27 void CScript_DataWindow::Script_DataWindow_GotoRecord(
28 CFXJSE_Arguments* pArguments) {}
Script_DataWindow_IsRecordGroup(CFXJSE_Arguments * pArguments)29 void CScript_DataWindow::Script_DataWindow_IsRecordGroup(
30 CFXJSE_Arguments* pArguments) {}
Script_DataWindow_RecordsBefore(FXJSE_HVALUE hValue,FX_BOOL bSetting,XFA_ATTRIBUTE eAttribute)31 void CScript_DataWindow::Script_DataWindow_RecordsBefore(
32 FXJSE_HVALUE hValue,
33 FX_BOOL bSetting,
34 XFA_ATTRIBUTE eAttribute) {}
Script_DataWindow_CurrentRecordNumber(FXJSE_HVALUE hValue,FX_BOOL bSetting,XFA_ATTRIBUTE eAttribute)35 void CScript_DataWindow::Script_DataWindow_CurrentRecordNumber(
36 FXJSE_HVALUE hValue,
37 FX_BOOL bSetting,
38 XFA_ATTRIBUTE eAttribute) {}
Script_DataWindow_RecordsAfter(FXJSE_HVALUE hValue,FX_BOOL bSetting,XFA_ATTRIBUTE eAttribute)39 void CScript_DataWindow::Script_DataWindow_RecordsAfter(
40 FXJSE_HVALUE hValue,
41 FX_BOOL bSetting,
42 XFA_ATTRIBUTE eAttribute) {}
Script_DataWindow_IsDefined(FXJSE_HVALUE hValue,FX_BOOL bSetting,XFA_ATTRIBUTE eAttribute)43 void CScript_DataWindow::Script_DataWindow_IsDefined(FXJSE_HVALUE hValue,
44 FX_BOOL bSetting,
45 XFA_ATTRIBUTE eAttribute) {
46 }
47