Home
last modified time | relevance | path

Searched refs:nCurSel (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/fpdfsdk/formfiller/
Dcffl_combobox.cpp46 int32_t nCurSel = m_pWidget->GetSelectedIndex(0); in NewPWLWindow() local
48 if (nCurSel < 0) in NewPWLWindow()
51 swText = m_pWidget->GetOptionLabel(nCurSel); in NewPWLWindow()
56 pWnd->SetSelect(nCurSel); in NewPWLWindow()
72 int32_t nCurSel = pWnd->GetSelect(); in IsDataChanged() local
74 return nCurSel != m_pWidget->GetSelectedIndex(0); in IsDataChanged()
76 if (nCurSel >= 0) in IsDataChanged()
77 return nCurSel != m_pWidget->GetSelectedIndex(0); in IsDataChanged()
88 int32_t nCurSel = pWnd->GetSelect(); in SaveData() local
91 bSetValue = (nCurSel < 0) || (swText != m_pWidget->GetOptionLabel(nCurSel)); in SaveData()
[all …]
Dcffl_listbox.cpp159 int32_t nCurSel = pListBox->GetCurSel(); in GetActionData() local
160 if (nCurSel >= 0) in GetActionData()
161 fa.sValue = m_pWidget->GetOptionLabel(nCurSel); in GetActionData()
170 int32_t nCurSel = m_pWidget->GetSelectedIndex(0); in GetActionData() local
171 if (nCurSel >= 0) in GetActionData()
172 fa.sValue = m_pWidget->GetOptionLabel(nCurSel); in GetActionData()
/external/pdfium/fpdfsdk/
Dcpdfsdk_appstream.cpp1547 int32_t nCurSel = pField->GetSelectedIndex(0); in SetAsComboBox() local
1548 if (nCurSel < 0) { in SetAsComboBox()
1551 pEdit->SetText(pField->GetOptionLabel(nCurSel)); in SetAsComboBox()