Home
last modified time | relevance | path

Searched refs:iCurSel (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/xfa/fwl/
Dcfwl_combobox.cpp555 int32_t iCurSel = m_iCurSel; in OnKey() local
558 iCurSel = pComboList->MatchItem(wsText.AsStringView()); in OnKey()
559 if (iCurSel >= 0) { in OnKey()
560 CFWL_ListItem* item = m_pListBox->GetSelItem(iCurSel); in OnKey()
564 if (iCurSel < 0) { in OnKey()
565 iCurSel = 0; in OnKey()
567 if ((bUp && iCurSel == 0) || (bDown && iCurSel == iCount - 1)) in OnKey()
570 iCurSel--; in OnKey()
572 iCurSel++; in OnKey()
574 m_iCurSel = iCurSel; in OnKey()
Dcfwl_monthcalendar.cpp756 int32_t iCurSel = GetDayAtPoint(pMsg->m_pos); in OnLButtonUp() local
757 if (iCurSel > 0) { in OnLButtonUp()
758 DATEINFO* lpDatesInfo = m_arrDates[iCurSel - 1].get(); in OnLButtonUp()
764 AddSelDay(iCurSel); in OnLButtonUp()
767 pDateTime->ProcessSelChanged(m_iCurYear, m_iCurMonth, iCurSel); in OnLButtonUp()