Searched refs:nItemIndex (Results 1 - 11 of 11) sorted by relevance

/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_IconList.cpp174 int32_t nItemIndex = FindItemIndex(point); local
175 SetSelect(nItemIndex);
176 ScrollToItem(nItemIndex);
192 int32_t nItemIndex = FindItemIndex(point); local
193 SetSelect(nItemIndex);
194 ScrollToItem(nItemIndex);
204 int32_t nItemIndex = m_nSelectIndex - 1; local
205 SetSelect(nItemIndex);
206 ScrollToItem(nItemIndex);
211 int32_t nItemIndex local
236 ScrollToItem(int32_t nItemIndex) argument
292 SelectItem(int32_t nItemIndex, FX_BOOL bSelect) argument
312 SetListData(int32_t nItemIndex, void* pData) argument
317 SetListIcon(int32_t nItemIndex, int32_t nIconIndex) argument
323 SetListString(int32_t nItemIndex, const CFX_WideString& str) argument
443 SetListData(int32_t nItemIndex, void* pData) argument
447 SetListIcon(int32_t nItemIndex, int32_t nIconIndex) argument
451 SetListString(int32_t nItemIndex, const CFX_WideString& str) argument
[all...]
H A DPWL_ListBox.cpp417 void CPWL_ListBox::Select(int32_t nItemIndex) { argument
419 m_pList->Select(nItemIndex);
422 void CPWL_ListBox::SetCaret(int32_t nItemIndex) { argument
424 m_pList->SetCaret(nItemIndex);
427 void CPWL_ListBox::SetTopVisibleIndex(int32_t nItemIndex) { argument
429 m_pList->SetTopItem(nItemIndex);
432 void CPWL_ListBox::ScrollToListItem(int32_t nItemIndex) { argument
434 m_pList->ScrollToListItem(nItemIndex);
468 FX_BOOL CPWL_ListBox::IsItemSelected(int32_t nItemIndex) const {
470 return m_pList->IsItemSelected(nItemIndex);
[all...]
H A DPWL_ComboBox.cpp248 void CPWL_ComboBox::SetSelect(int32_t nItemIndex) { argument
250 m_pList->Select(nItemIndex);
254 m_nSelectItem = nItemIndex;
H A DPWL_Note.cpp717 void CPWL_NoteItem::ResetSubjectName(int32_t nItemIndex) { argument
718 if (nItemIndex < 0) {
723 nItemIndex = pContents->GetItemIndex(this);
729 sSubject.Format(pNote->GetReplyString().c_str(), nItemIndex);
/external/pdfium/fpdfsdk/include/pdfwindow/
H A DPWL_IconList.h23 virtual void OnNoteListSelChanged(int32_t nItemIndex) = 0;
67 void SetListData(int32_t nItemIndex, void* pData);
68 void SetListIcon(int32_t nItemIndex, int32_t nIconIndex);
69 void SetListString(int32_t nItemIndex, const CFX_WideString& str);
71 CFX_WideString GetListString(int32_t nItemIndex) const;
73 void ScrollToItem(int32_t nItemIndex);
84 CPWL_IconList_Item* GetListItem(int32_t nItemIndex) const;
85 void SelectItem(int32_t nItemIndex, FX_BOOL bSelect);
105 void SetListData(int32_t nItemIndex, void* pData);
106 void SetListIcon(int32_t nItemIndex, int32_
[all...]
H A DPWL_ListBox.h86 void SetTopVisibleIndex(int32_t nItemIndex);
87 void ScrollToListItem(int32_t nItemIndex);
90 void Select(int32_t nItemIndex);
91 void SetCaret(int32_t nItemIndex);
98 FX_BOOL IsItemSelected(int32_t nItemIndex) const;
H A DPWL_ComboBox.h76 void SetSelect(int32_t nItemIndex);
H A DPWL_Note.h226 virtual void ResetSubjectName(int32_t nItemIndex);
315 void ResetSubjectName(int32_t nItemIndex) override {}
/external/pdfium/fpdfsdk/src/fxedit/
H A Dfxet_list.cpp129 void CFX_List::ReArrange(int32_t nItemIndex) { argument
132 if (CFX_ListItem* pPrevItem = m_aListItems.GetAt(nItemIndex - 1))
135 for (int32_t i = nItemIndex, sz = m_aListItems.GetSize(); i < sz; i++) {
272 void CFX_List::SetItemSelect(int32_t nItemIndex, FX_BOOL bSelected) { argument
273 if (CFX_ListItem* pListItem = m_aListItems.GetAt(nItemIndex)) {
278 void CFX_List::SetItemCaret(int32_t nItemIndex, FX_BOOL bCaret) { argument
279 if (CFX_ListItem* pListItem = m_aListItems.GetAt(nItemIndex)) {
292 FX_BOOL CFX_List::IsValid(int32_t nItemIndex) const {
293 return nItemIndex >= 0 && nItemIndex < m_aListItem
313 Add(int32_t nItemIndex) argument
336 Sub(int32_t nItemIndex) argument
521 OnVK(int32_t nItemIndex, FX_BOOL bShift, FX_BOOL bCtrl) argument
598 SetMultipleSelect(int32_t nItemIndex, FX_BOOL bSelected) argument
613 SetSingleSelect(int32_t nItemIndex) argument
629 SetCaret(int32_t nItemIndex) argument
648 InvalidateItem(int32_t nItemIndex) argument
675 int32_t nItemIndex = m_aSelItems.GetItemIndex(i); local
691 Select(int32_t nItemIndex) argument
710 ScrollToListItem(int32_t nItemIndex) argument
780 ReArrange(int32_t nItemIndex) argument
794 int32_t nItemIndex = GetItemIndex(GetBTPoint()); local
[all...]
/external/pdfium/fpdfsdk/include/fxedit/
H A Dfxet_list.h225 FX_BOOL IsValid(int32_t nItemIndex) const override;
234 virtual void ReArrange(int32_t nItemIndex);
236 void SetItemSelect(int32_t nItemIndex, FX_BOOL bSelected);
237 void SetItemCaret(int32_t nItemIndex, FX_BOOL bCaret);
250 nItemIndex = other_nItemIndex;
254 int32_t nItemIndex; member in struct:CPLST_Select_Item
264 void Add(int32_t nItemIndex);
266 void Sub(int32_t nItemIndex);
268 FX_BOOL IsExist(int32_t nItemIndex) const;
269 int32_t Find(int32_t nItemIndex) cons
[all...]
H A Dfx_edit.h532 virtual FX_BOOL IsValid(int32_t nItemIndex) const = 0;
536 virtual void ScrollToListItem(int32_t nItemIndex) = 0;
546 virtual void Select(int32_t nItemIndex) = 0;
547 virtual void SetCaret(int32_t nItemIndex) = 0;
564 virtual void OnVK(int32_t nItemIndex, FX_BOOL bShift, FX_BOOL bCtrl) = 0;

Completed in 670 milliseconds