Home
last modified time | relevance | path

Searched refs:FWL_HLISTITEM (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/xfa/include/fwl/lightwidget/
Dlistbox.h18 FWL_ERR AddDIBitmap(CFX_DIBitmap* pDIB, FWL_HLISTITEM hItem);
19 FWL_HLISTITEM AddString(const CFX_WideStringC& wsAdd,
21 FX_BOOL DeleteString(FWL_HLISTITEM hItem);
24 FWL_HLISTITEM GetSelItem(int32_t nIndexSel);
26 FWL_ERR SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect = TRUE);
27 FWL_ERR GetItemText(FWL_HLISTITEM hItem, CFX_WideString& wsText);
30 FWL_HLISTITEM GetFocusItem();
31 FWL_ERR SetFocusItem(FWL_HLISTITEM hItem);
34 FWL_HLISTITEM GetItem(int32_t nIndex);
35 FWL_ERR SetItemString(FWL_HLISTITEM hItem, const CFX_WideStringC& wsText);
[all …]
Dcombobox.h77 virtual FWL_HLISTITEM GetItem(IFWL_Widget* pWidget, int32_t nIndex);
78 virtual int32_t GetItemIndex(IFWL_Widget* pWidget, FWL_HLISTITEM hItem);
80 FWL_HLISTITEM hItem,
83 virtual FX_DWORD GetItemStyles(IFWL_Widget* pWidget, FWL_HLISTITEM hItem);
85 FWL_HLISTITEM hItem,
88 FWL_HLISTITEM hItem,
90 virtual void* GetItemData(IFWL_Widget* pWidget, FWL_HLISTITEM hItem);
92 FWL_HLISTITEM hItem,
95 FWL_HLISTITEM hItem,
98 FWL_HLISTITEM hItem,
[all …]
/external/pdfium/xfa/include/fwl/basewidget/
Dfwl_listbox.h60 typedef struct _FWL_HLISTITEM { void* pData; } * FWL_HLISTITEM; typedef
68 virtual FWL_HLISTITEM GetItem(IFWL_Widget* pWidget, int32_t nIndex) = 0;
69 virtual int32_t GetItemIndex(IFWL_Widget* pWidget, FWL_HLISTITEM hItem) = 0;
71 FWL_HLISTITEM hItem,
73 virtual FX_DWORD GetItemStyles(IFWL_Widget* pWidget, FWL_HLISTITEM hItem) = 0;
75 FWL_HLISTITEM hItem,
78 FWL_HLISTITEM hItem,
80 virtual void* GetItemData(IFWL_Widget* pWidget, FWL_HLISTITEM hItem) = 0;
82 FWL_HLISTITEM hItem,
85 FWL_HLISTITEM hItem,
[all …]
/external/pdfium/xfa/src/fwl/src/lightwidget/
Dlistbox.cpp30 FWL_ERR CFWL_ListBox::AddDIBitmap(CFX_DIBitmap* pDIB, FWL_HLISTITEM hItem) { in AddDIBitmap()
34 FWL_HLISTITEM CFWL_ListBox::AddString(const CFX_WideStringC& wsAdd, in AddString()
41 return (FWL_HLISTITEM)pItem; in AddString()
43 FX_BOOL CFWL_ListBox::DeleteString(FWL_HLISTITEM hItem) { in DeleteString()
82 FWL_HLISTITEM CFWL_ListBox::GetSelItem(int32_t nIndexSel) { in GetSelItem()
92 FWL_ERR CFWL_ListBox::SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect) { in SetSelItem()
97 FWL_ERR CFWL_ListBox::GetItemText(FWL_HLISTITEM hItem, CFX_WideString& wsText) { in GetItemText()
111 FWL_HLISTITEM CFWL_ListBox::GetFocusItem() { in GetFocusItem()
116 return (FWL_HLISTITEM)hItem; in GetFocusItem()
121 FWL_ERR CFWL_ListBox::SetFocusItem(FWL_HLISTITEM hItem) { in SetFocusItem()
[all …]
Dcombobox.cpp247 FWL_HLISTITEM CFWL_ComboBox::CFWL_ComboBoxDP::GetItem(IFWL_Widget* pWidget, in GetItem()
253 return (FWL_HLISTITEM)m_arrItem[nIndex]; in GetItem()
256 FWL_HLISTITEM hItem) { in GetItemIndex()
260 FWL_HLISTITEM hItem, in SetItemIndex()
265 FWL_HLISTITEM hItem) { in GetItemStyles()
271 FWL_HLISTITEM hItem, in GetItemText()
279 FWL_HLISTITEM hItem, in GetItemRect()
289 FWL_HLISTITEM hItem) { in GetItemData()
296 FWL_HLISTITEM hItem, in SetItemStyles()
304 FWL_HLISTITEM hItem, in SetItemText()
[all …]
/external/pdfium/xfa/src/fwl/src/basewidget/include/
Dfwl_listboximp.h35 virtual FWL_HLISTITEM GetSelItem(int32_t nIndexSel);
37 virtual FWL_ERR SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect = TRUE);
38 virtual FWL_ERR GetItemText(FWL_HLISTITEM hItem, CFX_WideString& wsText);
43 FWL_HLISTITEM GetItem(FWL_HLISTITEM hItem, FX_DWORD dwKeyCode);
44 void SetSelection(FWL_HLISTITEM hStart,
45 FWL_HLISTITEM hEnd,
47 void SetSelectionDirect(FWL_HLISTITEM hItem, FX_BOOL bSelect);
48 FX_BOOL IsItemSelected(FWL_HLISTITEM hItem);
51 FWL_HLISTITEM GetFocusedItem();
52 void SetFocusItem(FWL_HLISTITEM hItem);
[all …]
/external/pdfium/xfa/src/fwl/src/basewidget/
Dfwl_listboximp.cpp40 FWL_HLISTITEM IFWL_ListBox::GetSelItem(int32_t nIndexSel) { in GetSelItem()
46 FWL_ERR IFWL_ListBox::SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect) { in SetSelItem()
49 FWL_ERR IFWL_ListBox::GetItemText(FWL_HLISTITEM hItem, CFX_WideString& wsText) { in GetItemText()
211 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i); in CountSelItems()
222 FWL_HLISTITEM CFWL_ListBoxImp::GetSelItem(int32_t nIndexSel) { in GetSelItem()
230 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i); in GetSelItem()
253 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i); in GetSelIndex()
268 FWL_ERR CFWL_ListBoxImp::SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect) { in SetSelItem()
287 FWL_ERR CFWL_ListBoxImp::GetItemText(FWL_HLISTITEM hItem, in GetItemText()
308 FWL_HLISTITEM hTemp; in Sort()
[all …]
Dfwl_comboboximp.cpp221 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i); in MatchItem()
236 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, iSel); in ChangeSelected()
239 FWL_HLISTITEM hOld = GetSelItem(0); in ChangeSelected()
251 FWL_HLISTITEM hSel = pData->GetItem(m_pInterface, iSel); in ChangeSelected()
266 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, nIndex); in GetItemRect()
354 FWL_HLISTITEM hItem = m_pOwner->GetItemAtPoint(pMsg->m_fx, pMsg->m_fy); in OnDropListMouseMove()
399 FWL_HLISTITEM hItem = m_pOwner->GetItemAtPoint(pMsg->m_fx, pMsg->m_fy); in OnDropListLButtonUp()
448 FWL_HLISTITEM hItem = in OnDropListKeyDown()
648 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, m_iCurSel); in DrawWidget()
708 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, iSel); in SetCurSel()
[all …]
/external/pdfium/xfa/src/fxfa/src/app/
Dxfa_ffchoicelist.cpp54 FWL_HLISTITEM item = pListBox->GetItem(iSelArray[j]); in LoadWidget()
88 FWL_HLISTITEM hlistItem = pListBox->GetItem(iSelArray[iIndex]); in IsDataChanged()
128 CFX_ArrayTemplate<FWL_HLISTITEM> selItemArray; in UpdateFWLData()
133 FWL_HLISTITEM lpItemSel = pListBox->GetSelItem(iSelArray[j]); in UpdateFWLData()
157 FWL_HLISTITEM item = ((CFWL_ListBox*)m_pNormalWidget)->GetSelItem(nIndex); in SetItemState()