Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fwl/src/basewidget/
Dfwl_comboboximp.cpp1542 int32_t iCurSel = m_pOwner->m_iCurSel; in DoSubCtrlKey() local
1547 iCurSel = static_cast<CFWL_ComboListImp*>(m_pOwner->m_pListBox->GetImpl()) in DoSubCtrlKey()
1549 if (iCurSel >= 0) { in DoSubCtrlKey()
1553 FWL_HLISTITEM hItem = pData->GetItem(m_pOwner->m_pInterface, iCurSel); in DoSubCtrlKey()
1559 if (iCurSel < 0) { in DoSubCtrlKey()
1560 iCurSel = 0; in DoSubCtrlKey()
1562 if ((bUp && iCurSel == 0) || (bDown && iCurSel == iCount - 1)) { in DoSubCtrlKey()
1566 iCurSel--; in DoSubCtrlKey()
1568 iCurSel++; in DoSubCtrlKey()
1571 m_pOwner->m_iCurSel = iCurSel; in DoSubCtrlKey()
[all …]
Dfwl_datetimepickerimp.cpp295 int32_t iCurSel = m_pOwner->GetDayAtPoint(pMsg->m_fx, pMsg->m_fy); in OnLButtonUpEx() local
303 if (iCurSel > 0) { in OnLButtonUpEx()
305 (LPDATEINFO)m_pOwner->m_arrDates.GetAt(iCurSel - 1); in OnLButtonUpEx()
311 m_pOwner->AddSelDay(iCurSel); in OnLButtonUpEx()
315 iCurSel); in OnLButtonUpEx()
395 int32_t iCurSel = m_pOwner->GetDayAtPoint(pMsg->m_fx, pMsg->m_fy); in DisForm_OnLButtonUpEx() local
396 if (iCurSel > 0) { in DisForm_OnLButtonUpEx()
398 (LPDATEINFO)m_pOwner->m_arrDates.GetAt(iCurSel - 1); in DisForm_OnLButtonUpEx()
404 m_pOwner->AddSelDay(iCurSel); in DisForm_OnLButtonUpEx()
408 iCurSel); in DisForm_OnLButtonUpEx()
Dfwl_monthcalendarimp.cpp1013 int32_t iCurSel = m_pOwner->GetDayAtPoint(pMsg->m_fx, pMsg->m_fy); in OnLButtonDown() local
1014 FX_BOOL bSelChanged = iCurSel > 0 && iCurSel != iOldSel; in OnLButtonDown()
1017 (LPDATEINFO)m_pOwner->m_arrDates.GetAt(iCurSel - 1); in OnLButtonDown()
1023 m_pOwner->AddSelDay(iCurSel); in OnLButtonDown()
1028 wmDateSelected.m_iStartDay = iCurSel; in OnLButtonDown()
1029 wmDateSelected.m_iEndDay = iCurSel; in OnLButtonDown()