Home
last modified time | relevance | path

Searched refs:pSubFocus (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/xfa/src/fwl/src/core/
Dfwl_noteimp.cpp357 CFWL_WidgetImp* pSubFocus = pForm->GetSubFocus(); in NotifyTargetDestroy() local
358 if (!pSubFocus) in NotifyTargetDestroy()
360 if (pSubFocus && pSubFocus->GetInterface() == pNoteTarget) { in NotifyTargetDestroy()
565 CFWL_WidgetImp* pSubFocus = pForm->GetSubFocus(); in DoSetFocus() local
566 if (pSubFocus && ((pSubFocus->GetStates() & FWL_WGTSTATE_Focused) == 0)) { in DoSetFocus()
567 pMsg->m_pDstTarget = pSubFocus->GetInterface(); in DoSetFocus()
590 CFWL_WidgetImp* pSubFocus = pForm->GetSubFocus(); in DoKillFocus() local
591 if (pSubFocus && (pSubFocus->GetStates() & FWL_WGTSTATE_Focused)) { in DoKillFocus()
592 pMsg->m_pDstTarget = pSubFocus->GetInterface(); in DoKillFocus()
Dfwl_formimp.cpp979 IFWL_Widget* pSubFocus = in OnProcessMessage()
981 if (pSubFocus && pSubFocus != pDriver->GetFocus()) { in OnProcessMessage()
982 pDriver->SetFocus(pSubFocus); in OnProcessMessage()
993 IFWL_Widget* pSubFocus = in OnProcessMessage()
995 if (pSubFocus) { in OnProcessMessage()
996 if (pSubFocus == pDriver->GetFocus()) { in OnProcessMessage()
998 } else if (pSubFocus->GetStates() & FWL_WGTSTATE_Focused) { in OnProcessMessage()
1000 IFWL_WidgetDelegate* pDelegate = pSubFocus->SetDelegate(NULL); in OnProcessMessage()