HomeSort by relevance Sort by last modified time
    Searched refs:pListBox (Results 1 - 5 of 5) sorted by null

  /external/pdfium/fpdfsdk/src/formfiller/
FFL_ListBox.cpp 93 CPWL_ListBox* pListBox = (CPWL_ListBox*)GetPDFWindow(pPageView, FALSE);
94 if (!pListBox)
99 for (int32_t i = 0, sz = pListBox->GetCount(); i < sz; ++i) {
100 if (pListBox->IsItemSelected(i)) {
110 return pListBox->GetCurSel() != m_pWidget->GetSelectedIndex(0);
116 if (CPWL_ListBox* pListBox = (CPWL_ListBox*)GetPDFWindow(pPageView, FALSE)) {
127 int32_t nNewTopIndex = pListBox->GetTopVisibleIndex();
132 for (int32_t i = 0, sz = pListBox->GetCount(); i < sz; i++) {
133 if (pListBox->IsItemSelected(i)) {
139 m_pWidget->SetOptionSelection(pListBox->GetCurSel(), TRUE, FALSE)
    [all...]
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_ffchoicelist.cpp 27 CFWL_ListBox* pListBox = CFWL_ListBox::Create();
28 pListBox->Initialize();
29 pListBox->ModifyStyles(FWL_WGTSTYLE_VScroll | FWL_WGTSTYLE_NoBackground,
31 m_pNormalWidget = (CFWL_Widget*)pListBox;
42 pListBox->AddString(wsLabelArray[i]);
54 FWL_HLISTITEM item = pListBox->GetItem(iSelArray[j]);
55 pListBox->SetSelItem(item, TRUE);
70 CFWL_ListBox* pListBox = (CFWL_ListBox*)m_pNormalWidget;
71 int32_t iSels = pListBox->CountSelItems();
74 iSelArray.Add(pListBox->GetSelIndex(i));
    [all...]
xfa_ffwidgethandler.cpp 434 CXFA_Node* pListBox = pUi->GetNodeItem(XFA_NODEITEM_FirstChild);
435 pListBox->SetEnum(XFA_ATTRIBUTE_Open, XFA_ATTRIBUTEENUM_Always);
436 pListBox->SetEnum(XFA_ATTRIBUTE_CommitOn, XFA_ATTRIBUTEENUM_Exit);
  /external/pdfium/xfa/src/fwl/src/lightwidget/
listbox.cpp 20 std::unique_ptr<IFWL_ListBox> pListBox(IFWL_ListBox::Create(
22 FWL_ERR ret = pListBox->Initialize();
26 m_pIface = pListBox.release();
  /external/pdfium/xfa/src/fwl/src/basewidget/
fwl_listboximp.cpp 20 IFWL_ListBox* pListBox = new IFWL_ListBox;
22 pListBox->SetImpl(pListBoxImpl);
23 pListBoxImpl->SetInterface(pListBox);
24 return pListBox;
30 IFWL_ListBox* pListBox = new IFWL_ListBox;
32 pListBox->SetImpl(pComboListImpl);
33 pComboListImpl->SetInterface(pListBox);
34 return pListBox;
    [all...]

Completed in 224 milliseconds