Searched refs:CFWL_ListItem (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/xfa/fwl/ |
D | cfwl_listbox.h | 53 CFWL_ListItem* GetItem(const CFWL_Widget* pWidget, int32_t nIndex) const; 54 int32_t GetItemIndex(CFWL_Widget* pWidget, CFWL_ListItem* pItem); 56 CFWL_ListItem* AddString(const WideString& wsAdd); 58 void DeleteString(CFWL_ListItem* pItem); 62 CFWL_ListItem* GetSelItem(int32_t nIndexSel); 64 void SetSelItem(CFWL_ListItem* hItem, bool bSelect); 70 CFWL_ListItem* GetListItem(CFWL_ListItem* hItem, uint32_t dwKeyCode); 71 void SetSelection(CFWL_ListItem* hStart, CFWL_ListItem* hEnd, bool bSelected); 72 CFWL_ListItem* GetItemAtPoint(const CFX_PointF& point); 73 bool ScrollToVisible(CFWL_ListItem* hItem); [all …]
|
D | cfwl_listbox.cpp | 121 CFWL_ListItem* pItem = GetItem(this, i); in CountSelItems() 130 CFWL_ListItem* CFWL_ListBox::GetSelItem(int32_t nIndexSel) { in GetSelItem() 141 CFWL_ListItem* pItem = GetItem(this, i); in GetSelIndex() 153 void CFWL_ListBox::SetSelItem(CFWL_ListItem* pItem, bool bSelect) { in SetSelItem() 169 CFWL_ListItem* CFWL_ListBox::GetListItem(CFWL_ListItem* pItem, in GetListItem() 171 CFWL_ListItem* hRet = nullptr; in GetListItem() 199 void CFWL_ListBox::SetSelection(CFWL_ListItem* hStart, in SetSelection() 200 CFWL_ListItem* hEnd, in SetSelection() 212 CFWL_ListItem* pItem = GetItem(this, i); in SetSelection() 217 CFWL_ListItem* pItem = GetItem(this, iStart); in SetSelection() [all …]
|
D | cfwl_listitem.cpp | 9 CFWL_ListItem::CFWL_ListItem(const WideString& text) : m_wsText(text) {} in CFWL_ListItem() function in CFWL_ListItem 11 CFWL_ListItem::~CFWL_ListItem() {} in ~CFWL_ListItem()
|
D | cfwl_combolist.cpp | 34 CFWL_ListItem* hItem = GetItem(this, i); in MatchItem() 44 CFWL_ListItem* hItem = GetItem(this, iSel); in ChangeSelected() 45 CFWL_ListItem* hOld = GetSelItem(0); in ChangeSelected() 52 if (CFWL_ListItem* hOldItem = GetItem(this, iOld)) in ChangeSelected() 57 if (CFWL_ListItem* hOldItem = GetItem(this, iSel)) in ChangeSelected() 59 CFWL_ListItem* hSel = GetItem(this, iSel); in ChangeSelected() 143 CFWL_ListItem* hItem = GetItemAtPoint(pMsg->m_pos); in OnDropListMouseMove() 180 CFWL_ListItem* hItem = GetItemAtPoint(pMsg->m_pos); in OnDropListLButtonUp() 226 CFWL_ListItem* hItem = GetItem(this, pOuter->GetCurrentSelection()); in OnDropListKeyDown()
|
D | cfwl_listitem.h | 13 class CFWL_ListItem { 15 explicit CFWL_ListItem(const WideString& text); 16 ~CFWL_ListItem();
|
D | cfwl_combobox.cpp | 140 CFWL_ListItem* pItem = static_cast<CFWL_ListItem*>( in GetTextByIndex() 152 CFWL_ListItem* hItem = m_pListBox->GetItem(this, iSel); in SetCurSel() 190 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in GetEditText() 274 CFWL_ListItem* hItem = m_pListBox->GetItem(this, iListItem); in SyncEditText() 309 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in Layout() 389 CFWL_ListItem* hItem = m_pListBox->GetItem(this, m_iCurSel); in ProcessSelChanged() 560 CFWL_ListItem* item = m_pListBox->GetSelItem(iCurSel); in OnKey()
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_fflistbox.cpp | 103 CFWL_ListItem* hlistItem = pListBox->GetItem(nullptr, iSelArray[i]); in IsDataChanged() 142 std::vector<CFWL_ListItem*> selItemArray(iSelArray.size()); in UpdateFWLData() 147 for (CFWL_ListItem* pItem : selItemArray) in UpdateFWLData()
|