Home
last modified time | relevance | path

Searched refs:pComboBox (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fpdfsdk/formfiller/
Dcffl_combobox.cpp128 if (CPWL_ComboBox* pComboBox = GetComboBox(pPageView, false)) { in GetActionData() local
129 if (CPWL_Edit* pEdit = pComboBox->GetEdit()) { in GetActionData()
147 if (CPWL_ComboBox* pComboBox = GetComboBox(pPageView, false)) { in GetActionData() local
148 if (CPWL_Edit* pEdit = pComboBox->GetEdit()) { in GetActionData()
167 if (CPWL_ComboBox* pComboBox = GetComboBox(pPageView, false)) { in SetActionData() local
168 if (CPWL_Edit* pEdit = pComboBox->GetEdit()) { in SetActionData()
180 CPWL_ComboBox* pComboBox = GetComboBox(pPageView, false); in SaveState() local
181 if (!pComboBox) in SaveState()
184 m_State.nIndex = pComboBox->GetSelect(); in SaveState()
186 CPWL_Edit* pEdit = pComboBox->GetEdit(); in SaveState()
[all …]
/external/pdfium/xfa/fxfa/
Dcxfa_ffcombobox.cpp47 auto* pComboBox = ToComboBox(GetNormalWidget()); in PtInActiveRect() local
48 return pComboBox && pComboBox->GetBBox().Contains(point); in PtInActiveRect()
54 CFWL_ComboBox* pComboBox = pNew.get(); in LoadWidget() local
56 pComboBox->SetAdapterIface(this); in LoadWidget()
58 CFWL_NoteDriver* pNoteDriver = pComboBox->GetOwnerApp()->GetNoteDriver(); in LoadWidget()
59 pNoteDriver->RegisterEventTarget(pComboBox, pComboBox); in LoadWidget()
60 m_pOldDelegate = pComboBox->GetDelegate(); in LoadWidget()
61 pComboBox->SetDelegate(this); in LoadWidget()
64 CFWL_Widget::ScopedUpdateLock update_lock(pComboBox); in LoadWidget()
66 pComboBox->AddString(label); in LoadWidget()
[all …]
Dcxfa_ffnotify.cpp264 CXFA_FFComboBox* pComboBox = ToComboBox(pDropDown); in OpenDropDownList() local
265 if (!pComboBox) in OpenDropDownList()
270 pComboBox->OpenDropDownList(); in OpenDropDownList()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_combo_box.cpp100 if (auto* pComboBox = static_cast<CPWL_ComboBox*>(GetParentWindow())) in OnCharNotify() local
101 pComboBox->SetSelectText(); in OnCharNotify()