summaryrefslogtreecommitdiff
path: root/fxjs/xfa/cjx_eventpseudomodel.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-12-14 19:45:53 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-12-14 19:45:53 +0000
commitfe9d640ea90cfccac39b6475dad9df62072542fc (patch)
tree653ac8e2ad76ae2fc4030b63d7625bd40ca07875 /fxjs/xfa/cjx_eventpseudomodel.cpp
parent604f5b9e042267cffd8949f309a86c370a3d01d4 (diff)
downloadpdfium-fe9d640ea90cfccac39b6475dad9df62072542fc.tar.xz
Create classes for XFA JS objects
This CL creates classes for the various XFA JS objects. The method calls from xfa_basic_data_element_script have been modified to call these methods instead of methods in CJX_Object. Change-Id: Idb2de38656f7e8edc559d44921eba25073e6c806 Reviewed-on: https://pdfium-review.googlesource.com/21110 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fxjs/xfa/cjx_eventpseudomodel.cpp')
-rw-r--r--fxjs/xfa/cjx_eventpseudomodel.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/fxjs/xfa/cjx_eventpseudomodel.cpp b/fxjs/xfa/cjx_eventpseudomodel.cpp
index 449153c548..3b2d9777d0 100644
--- a/fxjs/xfa/cjx_eventpseudomodel.cpp
+++ b/fxjs/xfa/cjx_eventpseudomodel.cpp
@@ -54,97 +54,97 @@ CJX_EventPseudoModel::CJX_EventPseudoModel(CScript_EventPseudoModel* model)
CJX_EventPseudoModel::~CJX_EventPseudoModel() {}
-void CJX_EventPseudoModel::Change(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::change(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::Change, bSetting);
}
-void CJX_EventPseudoModel::CommitKey(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::commitKey(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::CommitKey, bSetting);
}
-void CJX_EventPseudoModel::FullText(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::fullText(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::FullText, bSetting);
}
-void CJX_EventPseudoModel::KeyDown(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::keyDown(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::Keydown, bSetting);
}
-void CJX_EventPseudoModel::Modifier(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::modifier(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::Modifier, bSetting);
}
-void CJX_EventPseudoModel::NewContentType(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::newContentType(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::NewContentType, bSetting);
}
-void CJX_EventPseudoModel::NewText(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::newText(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::NewText, bSetting);
}
-void CJX_EventPseudoModel::PrevContentType(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::prevContentType(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::PreviousContentType, bSetting);
}
-void CJX_EventPseudoModel::PrevText(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::prevText(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::PreviousText, bSetting);
}
-void CJX_EventPseudoModel::Reenter(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::reenter(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::Reenter, bSetting);
}
-void CJX_EventPseudoModel::SelEnd(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::selEnd(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::SelectionEnd, bSetting);
}
-void CJX_EventPseudoModel::SelStart(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::selStart(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::SelectionStart, bSetting);
}
-void CJX_EventPseudoModel::Shift(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::shift(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::Shift, bSetting);
}
-void CJX_EventPseudoModel::SoapFaultCode(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::soapFaultCode(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::SoapFaultCode, bSetting);
}
-void CJX_EventPseudoModel::SoapFaultString(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::soapFaultString(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::SoapFaultString, bSetting);
}
-void CJX_EventPseudoModel::Target(CFXJSE_Value* pValue,
+void CJX_EventPseudoModel::target(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
Property(pValue, XFA_Event::Target, bSetting);