Home | History | Annotate | Download | only in formfiller

Lines Matching refs:bExit

40 FX_BOOL CFFL_Notify::OnMouseUp(FX_BOOL & bExit)

43 FX_BOOL bRet = FALSE;//DoAAction(CPDF_AAction::AActionType::ButtonUp, bExit);
48 FX_BOOL CFFL_Notify::OnMouseDown(FX_BOOL & bExit)
51 FX_BOOL bRet = FALSE;//DoAAction(CPDF_AAction::AActionType::ButtonDown, bExit);
56 FX_BOOL CFFL_Notify::OnMouseEnter(FX_BOOL & bExit)
59 FX_BOOL bRet = FALSE;//DoAAction(CPDF_AAction::AActionType::CursorEnter, bExit);
64 FX_BOOL CFFL_Notify::OnMouseExit(FX_BOOL & bExit)
67 FX_BOOL bRet = FALSE;//DoAAction(CPDF_AAction::AActionType::CursorExit, bExit);
72 FX_BOOL CFFL_Notify::OnSetFocus(FX_BOOL & bExit)
75 FX_BOOL bRet = FALSE;//DoAAction(CPDF_AAction::AActionType::GetFocus, bExit);
80 FX_BOOL CFFL_Notify::OnKillFocus(FX_BOOL & bExit)
83 FX_BOOL bRet = FALSE;//DoAAction(CPDF_AAction::AActionType::LoseFocus, bExit);
113 FX_BOOL CFFL_Notify::DoAAction(CPDF_AAction::AActionType eAAT, FX_BOOL & bExit)
121 ExecuteActionTree(eAAT,action,bExit);
126 FX_BOOL CFFL_Notify::ExecuteActionTree(CPDF_AAction::AActionType eAAT,CPDF_Action & action, FX_BOOL& bExit)
128 if (!ExecuteAction(eAAT,action,bExit)) return FALSE;
129 if (bExit) return TRUE;
134 if (!ExecuteActionTree(eAAT,subaction,bExit)) return FALSE;
135 if (bExit) break;
167 FX_BOOL CFFL_Notify::ExecuteAction(CPDF_AAction::AActionType eAAT,CPDF_Action & action,FX_BOOL& bExit)