Lines Matching refs:pWidget
369 CPDFSDK_Widget* pWidget = (CPDFSDK_Widget*)pAnnot; in CanAnswer() local
370 if (!pWidget->IsVisible()) return FALSE; in CanAnswer()
372 int nFieldFlags = pWidget->GetFieldFlags(); in CanAnswer()
374 if (pWidget->GetFieldType() == FIELDTYPE_PUSHBUTTON) in CanAnswer()
378 CPDF_Page* pPage = pWidget->GetPDFPage(); in CanAnswer()
404 CPDFSDK_Widget* pWidget = NULL; in NewAnnot() local
407 pWidget = new CPDFSDK_Widget(pAnnot, pPage, pInterForm); in NewAnnot()
408 pInterForm->AddMap(pCtrl, pWidget); in NewAnnot()
411 pWidget->ResetAppearance(NULL,FALSE); in NewAnnot()
414 return pWidget; in NewAnnot()
424 CPDFSDK_Widget* pWidget = (CPDFSDK_Widget*)pAnnot; in ReleaseAnnot() local
425 CPDFSDK_InterForm* pInterForm = pWidget->GetInterForm(); in ReleaseAnnot()
428 CPDF_FormControl* pCtrol = pWidget->GetFormControl(); in ReleaseAnnot()
432 delete pWidget; in ReleaseAnnot()
670 CPDFSDK_Widget* pWidget = (CPDFSDK_Widget*)pAnnot; in OnLoad() local
671 if (!pWidget->IsAppearanceValid()) in OnLoad()
672 pWidget->ResetAppearance(NULL, FALSE); in OnLoad()
674 int nFieldType = pWidget->GetFieldType(); in OnLoad()
678 CFX_WideString sValue = pWidget->OnFormat(0, bFormated); in OnLoad()
681 pWidget->ResetAppearance(sValue.c_str(), FALSE); in OnLoad()