• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2017 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 #ifndef FXJS_XFA_CJX_FORM_H_
8 #define FXJS_XFA_CJX_FORM_H_
9 
10 #include "fxjs/CJX_Define.h"
11 #include "fxjs/xfa/cjx_model.h"
12 
13 class CXFA_Form;
14 
15 class CJX_Form : public CJX_Model {
16  public:
17   explicit CJX_Form(CXFA_Form* form);
18   ~CJX_Form() override;
19 
20   JS_METHOD(execCalculate, CJX_Form);
21   JS_METHOD(execInitialize, CJX_Form);
22   JS_METHOD(execValidate, CJX_Form);
23   JS_METHOD(formNodes, CJX_Form);
24   JS_METHOD(recalculate, CJX_Form);
25   JS_METHOD(remerge, CJX_Form);
26 
27  private:
28   static const CJX_MethodSpec MethodSpecs[];
29 };
30 
31 #endif  // FXJS_XFA_CJX_FORM_H_
32