Home | History | Annotate | Download | only in fpdfsdk

Lines Matching refs:pControl

85 CPDFSDK_Widget* CPDFSDK_InterForm::GetWidget(CPDF_FormControl* pControl) const {
86 if (!pControl || !m_pInterForm)
90 const auto it = m_Map.find(pControl);
96 CPDF_Dictionary* pControlDict = pControl->GetWidget();
160 void CPDFSDK_InterForm::AddMap(CPDF_FormControl* pControl,
162 m_Map[pControl] = pWidget;
165 void CPDFSDK_InterForm::RemoveMap(CPDF_FormControl* pControl) {
166 m_Map.erase(pControl);
390 CPDF_FormControl* pControl = pField->GetControl(i);
391 ASSERT(pControl);
393 if (CPDFSDK_Widget* pWidget = GetWidget(pControl)) {