Searched refs:hItem (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/xfa/fwl/ |
D | cfwl_combolist.cpp | 34 CFWL_ListItem* hItem = GetItem(this, i); in MatchItem() local 35 WideString wsText = hItem ? hItem->GetText() : WideString(); in MatchItem() 44 CFWL_ListItem* hItem = GetItem(this, iSel); in ChangeSelected() local 56 if (hItem) { in ChangeSelected() 143 CFWL_ListItem* hItem = GetItemAtPoint(pMsg->m_pos); in OnDropListMouseMove() local 144 if (!hItem) in OnDropListMouseMove() 147 ChangeSelected(GetItemIndex(this, hItem)); in OnDropListMouseMove() 180 CFWL_ListItem* hItem = GetItemAtPoint(pMsg->m_pos); in OnDropListLButtonUp() local 181 if (hItem) in OnDropListLButtonUp() 226 CFWL_ListItem* hItem = GetItem(this, pOuter->GetCurrentSelection()); in OnDropListKeyDown() local [all …]
|
D | cfwl_listbox.h | 64 void SetSelItem(CFWL_ListItem* hItem, bool bSelect); 70 CFWL_ListItem* GetListItem(CFWL_ListItem* hItem, uint32_t dwKeyCode); 73 bool ScrollToVisible(CFWL_ListItem* hItem); 81 void SetSelectionDirect(CFWL_ListItem* hItem, bool bSelect); 83 bool IsItemSelected(CFWL_ListItem* hItem); 87 void SetFocusItem(CFWL_ListItem* hItem); 96 CFWL_ListItem* hItem, 102 void UpdateItemSize(CFWL_ListItem* hItem, 115 void OnVK(CFWL_ListItem* hItem, bool bShift, bool bCtrl);
|
D | cfwl_combobox.cpp | 152 CFWL_ListItem* hItem = m_pListBox->GetItem(this, iSel); in SetCurSel() local 153 m_pEdit->SetText(hItem ? hItem->GetText() : WideString()); in SetCurSel() 190 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in GetEditText() local 191 return hItem ? hItem->GetText() : WideString(); in GetEditText() 274 CFWL_ListItem* hItem = m_pListBox->GetItem(this, iListItem); in SyncEditText() local 275 m_pEdit->SetText(hItem ? hItem->GetText() : WideString()); in SyncEditText() 309 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in Layout() local 311 m_pEdit->SetText(hItem ? hItem->GetText() : WideString()); in Layout() 389 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in ProcessSelChanged() local 390 if (!hItem) in ProcessSelChanged() [all …]
|