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() : L""; 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 | 169 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in DrawWidget() local 181 theme_text.m_wsText = hItem ? hItem->GetText() : L""; in DrawWidget() 224 CFWL_ListItem* hItem = m_pListBox->GetItem(this, iSel); in SetCurSel() local 225 m_pEdit->SetText(hItem ? hItem->GetText() : L""); in SetCurSel() 262 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in GetEditText() local 263 return hItem ? hItem->GetText() : L""; in GetEditText() 364 CFWL_ListItem* hItem = m_pListBox->GetItem(this, iListItem); in SyncEditText() local 365 m_pEdit->SetText(hItem ? hItem->GetText() : L""); in SyncEditText() 390 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in Layout() local 392 m_pEdit->SetText(hItem ? hItem->GetText() : L""); in Layout() [all …]
|