Home | History | Annotate | Download | only in fpdfsdk

Lines Matching refs:pControl

116 CPDFSDK_Widget* CPDFSDK_InterForm::GetWidget(CPDF_FormControl* pControl) const {
117 if (!pControl || !m_pInterForm)
121 const auto it = m_Map.find(pControl);
127 CPDF_Dictionary* pControlDict = pControl->GetWidget();
191 void CPDFSDK_InterForm::AddMap(CPDF_FormControl* pControl,
193 m_Map[pControl] = pWidget;
196 void CPDFSDK_InterForm::RemoveMap(CPDF_FormControl* pControl) {
197 m_Map.erase(pControl);
423 CPDF_FormControl* pControl = pField->GetControl(i);
424 ASSERT(pControl);
426 if (CPDFSDK_Widget* pWidget = GetWidget(pControl)) {