blob: 3df5312d89a6de49aa7bc0c074bf00a35df5bdfb [file] [log] [blame]
// 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
#include "fxjs/xfa/cjx_textedit.h"
#include "xfa/fxfa/parser/cxfa_textedit.h"
CJX_TextEdit::CJX_TextEdit(CXFA_TextEdit* node) : CJX_Node(node) {}
CJX_TextEdit::~CJX_TextEdit() = default;
void CJX_TextEdit::vScrollPolicy(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
ScriptAttributeString(pValue, bSetting, eAttribute);
}
void CJX_TextEdit::use(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
ScriptAttributeString(pValue, bSetting, eAttribute);
}
void CJX_TextEdit::allowRichText(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
ScriptAttributeString(pValue, bSetting, eAttribute);
}
void CJX_TextEdit::multiLine(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
ScriptAttributeString(pValue, bSetting, eAttribute);
}
void CJX_TextEdit::usehref(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
ScriptAttributeString(pValue, bSetting, eAttribute);
}
void CJX_TextEdit::hScrollPolicy(CFXJSE_Value* pValue,
bool bSetting,
XFA_Attribute eAttribute) {
ScriptAttributeString(pValue, bSetting, eAttribute);
}