/external/pdfium/xfa/include/fwl/lightwidget/ |
listbox.h | 18 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...] |
combobox.h | 77 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/ |
fwl_listbox.h | 60 typedef struct _FWL_HLISTITEM { void* pData; } * FWL_HLISTITEM;
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/basewidget/include/ |
fwl_listboximp.h | 35 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(); [all...] |
/external/pdfium/xfa/src/fwl/src/lightwidget/ |
listbox.cpp | 30 FWL_ERR CFWL_ListBox::AddDIBitmap(CFX_DIBitmap* pDIB, FWL_HLISTITEM hItem) {
34 FWL_HLISTITEM CFWL_ListBox::AddString(const CFX_WideStringC& wsAdd,
41 return (FWL_HLISTITEM)pItem;
43 FX_BOOL CFWL_ListBox::DeleteString(FWL_HLISTITEM hItem) {
82 FWL_HLISTITEM CFWL_ListBox::GetSelItem(int32_t nIndexSel) {
92 FWL_ERR CFWL_ListBox::SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect) {
97 FWL_ERR CFWL_ListBox::GetItemText(FWL_HLISTITEM hItem, CFX_WideString& wsText) {
111 FWL_HLISTITEM CFWL_ListBox::GetFocusItem() {
116 return (FWL_HLISTITEM)hItem;
121 FWL_ERR CFWL_ListBox::SetFocusItem(FWL_HLISTITEM hItem) { [all...] |
combobox.cpp | 247 FWL_HLISTITEM CFWL_ComboBox::CFWL_ComboBoxDP::GetItem(IFWL_Widget* pWidget,
253 return (FWL_HLISTITEM)m_arrItem[nIndex];
256 FWL_HLISTITEM hItem) {
260 FWL_HLISTITEM hItem,
265 FWL_HLISTITEM hItem) {
271 FWL_HLISTITEM hItem,
279 FWL_HLISTITEM hItem,
289 FWL_HLISTITEM hItem) {
296 FWL_HLISTITEM hItem,
304 FWL_HLISTITEM hItem, [all...] |
/external/pdfium/xfa/src/fwl/src/basewidget/ |
fwl_listboximp.cpp | 40 FWL_HLISTITEM IFWL_ListBox::GetSelItem(int32_t nIndexSel) {
46 FWL_ERR IFWL_ListBox::SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect) {
49 FWL_ERR IFWL_ListBox::GetItemText(FWL_HLISTITEM hItem, CFX_WideString& wsText) {
211 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
222 FWL_HLISTITEM CFWL_ListBoxImp::GetSelItem(int32_t nIndexSel) {
230 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
253 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
268 FWL_ERR CFWL_ListBoxImp::SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect) {
287 FWL_ERR CFWL_ListBoxImp::GetItemText(FWL_HLISTITEM hItem,
308 FWL_HLISTITEM hTemp; [all...] |
fwl_comboboximp.cpp | 221 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
236 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, iSel);
239 FWL_HLISTITEM hOld = GetSelItem(0);
251 FWL_HLISTITEM hSel = pData->GetItem(m_pInterface, iSel);
266 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, nIndex);
354 FWL_HLISTITEM hItem = m_pOwner->GetItemAtPoint(pMsg->m_fx, pMsg->m_fy);
399 FWL_HLISTITEM hItem = m_pOwner->GetItemAtPoint(pMsg->m_fx, pMsg->m_fy);
448 FWL_HLISTITEM hItem =
648 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, m_iCurSel);
708 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, iSel); [all...] |
/external/pdfium/xfa/src/fxfa/src/app/ |
xfa_ffchoicelist.cpp | 54 FWL_HLISTITEM item = pListBox->GetItem(iSelArray[j]);
88 FWL_HLISTITEM hlistItem = pListBox->GetItem(iSelArray[iIndex]);
128 CFX_ArrayTemplate<FWL_HLISTITEM> selItemArray;
133 FWL_HLISTITEM lpItemSel = pListBox->GetSelItem(iSelArray[j]);
157 FWL_HLISTITEM item = ((CFWL_ListBox*)m_pNormalWidget)->GetSelItem(nIndex);
|