Home | History | Annotate | Download | only in formfiller

Lines Matching refs:pPageView

104 CPWL_Wnd* CFFL_TextField::NewPDFWindow(const PWL_CREATEPARAM& cp, CPDFSDK_PageView* pPageView)
145 CPDFSDK_PageView* pPageView = this->GetCurPageView();
146 ASSERT(pPageView != NULL);
153 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, TRUE))
158 if (CommitData(pPageView, nFlags))
160 DestroyPDFWindow(pPageView);
172 CPDFSDK_PageView* pPageView = this->GetCurPageView();
173 ASSERT(pPageView != NULL);
174 EscapeFiller(pPageView,TRUE);
182 FX_BOOL CFFL_TextField::IsDataChanged(CPDFSDK_PageView* pPageView)
186 if (CPWL_Edit * pEdit = (CPWL_Edit*)GetPDFWindow(pPageView, FALSE))
192 void CFFL_TextField::SaveData(CPDFSDK_PageView* pPageView)
196 if (CPWL_Edit* pWnd = (CPWL_Edit*)GetPDFWindow(pPageView, FALSE))
208 void CFFL_TextField::GetActionData(CPDFSDK_PageView* pPageView, CPDF_AAction::AActionType type,
214 if (CPWL_Edit* pWnd = (CPWL_Edit*)GetPDFWindow(pPageView, FALSE))
228 if (CPWL_Edit* pWnd = (CPWL_Edit*)GetPDFWindow(pPageView, FALSE))
243 void CFFL_TextField::SetActionData(CPDFSDK_PageView* pPageView, CPDF_AAction::AActionType type,
249 if (CPWL_Edit * pEdit = (CPWL_Edit*)GetPDFWindow(pPageView, FALSE))
277 void CFFL_TextField::SaveState(CPDFSDK_PageView* pPageView)
279 ASSERT(pPageView != NULL);
281 if (CPWL_Edit* pWnd = (CPWL_Edit*)GetPDFWindow(pPageView, FALSE))
288 void CFFL_TextField::RestoreState(CPDFSDK_PageView* pPageView)
290 ASSERT(pPageView != NULL);
292 if (CPWL_Edit* pWnd = (CPWL_Edit*)GetPDFWindow(pPageView, TRUE))
299 CPWL_Wnd* CFFL_TextField::ResetPDFWindow(CPDFSDK_PageView* pPageView, FX_BOOL bRestoreValue)
302 SaveState(pPageView);
304 DestroyPDFWindow(pPageView);
310 RestoreState(pPageView);
311 pRet = this->GetPDFWindow(pPageView, FALSE);
314 pRet = this->GetPDFWindow(pPageView, TRUE);