blob: 0f9e2995f963602e9867a763408954974e282411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FXJS_XFA_CJX_FIELD_H_
#define FXJS_XFA_CJX_FIELD_H_
#include "fxjs/jse_define.h"
#include "fxjs/xfa/cjx_container.h"
class CXFA_Field;
class CJX_Field final : public CJX_Container {
public:
explicit CJX_Field(CXFA_Field* field);
~CJX_Field() override;
JSE_METHOD(addItem, CJX_Field);
JSE_METHOD(boundItem, CJX_Field);
JSE_METHOD(clearItems, CJX_Field);
JSE_METHOD(deleteItem, CJX_Field);
JSE_METHOD(execCalculate, CJX_Field);
JSE_METHOD(execEvent, CJX_Field);
JSE_METHOD(execInitialize, CJX_Field);
JSE_METHOD(execValidate, CJX_Field);
JSE_METHOD(getDisplayItem, CJX_Field);
JSE_METHOD(getItemState, CJX_Field);
JSE_METHOD(getSaveItem, CJX_Field);
JSE_METHOD(setItemState, CJX_Field);
JSE_PROP(defaultValue); /* {default} */
JSE_PROP(access);
JSE_PROP(accessKey);
JSE_PROP(anchorType);
JSE_PROP(borderColor);
JSE_PROP(borderWidth);
JSE_PROP(colSpan);
JSE_PROP(editValue);
JSE_PROP(fillColor);
JSE_PROP(fontColor);
JSE_PROP(formatMessage);
JSE_PROP(formattedValue);
JSE_PROP(h);
JSE_PROP(hAlign);
JSE_PROP(locale);
JSE_PROP(mandatory);
JSE_PROP(mandatoryMessage);
JSE_PROP(maxH);
JSE_PROP(maxW);
JSE_PROP(minH);
JSE_PROP(minW);
JSE_PROP(parentSubform);
JSE_PROP(presence);
JSE_PROP(rawValue);
JSE_PROP(relevant);
JSE_PROP(rotate);
JSE_PROP(selectedIndex);
JSE_PROP(use);
JSE_PROP(usehref);
JSE_PROP(validationMessage);
JSE_PROP(vAlign);
JSE_PROP(w);
JSE_PROP(x);
JSE_PROP(y);
private:
static const CJX_MethodSpec MethodSpecs[];
};
#endif // FXJS_XFA_CJX_FIELD_H_
|