Lines Matching refs:pEventParam
111 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); in newText() local
112 if (!pEventParam) in newText()
115 pValue->SetString(pEventParam->GetNewText().ToUTF8().AsStringView()); in newText()
176 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); in emit() local
177 if (!pEventParam) in emit()
188 pWidgetHandler->ProcessEvent(pEventParam->m_pTarget.Get(), pEventParam); in emit()
196 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); in reset() local
197 if (pEventParam) in reset()
198 *pEventParam = CXFA_EventParam(); in reset()
214 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); in Property() local
215 if (!pEventParam) in Property()
220 BooleanProperty(pValue, &pEventParam->m_bCancelAction, bSetting); in Property()
223 StringProperty(pValue, &pEventParam->m_wsChange, bSetting); in Property()
226 IntegerProperty(pValue, &pEventParam->m_iCommitKey, bSetting); in Property()
229 StringProperty(pValue, &pEventParam->m_wsFullText, bSetting); in Property()
232 BooleanProperty(pValue, &pEventParam->m_bKeyDown, bSetting); in Property()
235 BooleanProperty(pValue, &pEventParam->m_bModifier, bSetting); in Property()
238 StringProperty(pValue, &pEventParam->m_wsNewContentType, bSetting); in Property()
244 StringProperty(pValue, &pEventParam->m_wsPrevContentType, bSetting); in Property()
247 StringProperty(pValue, &pEventParam->m_wsPrevText, bSetting); in Property()
250 BooleanProperty(pValue, &pEventParam->m_bReenter, bSetting); in Property()
253 IntegerProperty(pValue, &pEventParam->m_iSelEnd, bSetting); in Property()
255 pEventParam->m_iSelEnd = std::max(0, pEventParam->m_iSelEnd); in Property()
256 pEventParam->m_iSelEnd = in Property()
257 std::min(static_cast<size_t>(pEventParam->m_iSelEnd), in Property()
258 pEventParam->m_wsPrevText.GetLength()); in Property()
259 pEventParam->m_iSelStart = in Property()
260 std::min(pEventParam->m_iSelStart, pEventParam->m_iSelEnd); in Property()
263 IntegerProperty(pValue, &pEventParam->m_iSelStart, bSetting); in Property()
264 pEventParam->m_iSelStart = std::max(0, pEventParam->m_iSelStart); in Property()
265 pEventParam->m_iSelStart = in Property()
266 std::min(static_cast<size_t>(pEventParam->m_iSelStart), in Property()
267 pEventParam->m_wsPrevText.GetLength()); in Property()
268 pEventParam->m_iSelEnd = in Property()
269 std::max(pEventParam->m_iSelStart, pEventParam->m_iSelEnd); in Property()
272 BooleanProperty(pValue, &pEventParam->m_bShift, bSetting); in Property()
275 StringProperty(pValue, &pEventParam->m_wsSoapFaultCode, bSetting); in Property()
278 StringProperty(pValue, &pEventParam->m_wsSoapFaultString, bSetting); in Property()