Lines Matching refs:_pEntry
127 sal_Bool DbaIndexList::EditedEntry( SvLBoxEntry* _pEntry, const String& _rNewText ) in EditedEntry() argument
146 if (!SvTreeListBox::EditedEntry(_pEntry, _rNewText)) in EditedEntry()
149 String sOldText = GetEntryText(_pEntry); in EditedEntry()
150 SvTreeListBox::SetEntryText(_pEntry, _rNewText); in EditedEntry()
154 bValid = (0 != m_aEndEditHdl.Call(_pEntry)); in EditedEntry()
159 SvTreeListBox::SetEntryText(_pEntry, sOldText); in EditedEntry()
179 void DbaIndexList::SelectNoHandlerCall( SvLBoxEntry* _pEntry ) in SelectNoHandlerCall() argument
182 Select(_pEntry, sal_True); in SelectNoHandlerCall()
373 sal_Bool DbaIndexDialog::implCommit(SvLBoxEntry* _pEntry) in implCommit() argument
375 DBG_ASSERT(_pEntry, "DbaIndexDialog::implCommit: invalid entry!"); in implCommit()
377 …Indexes::iterator aCommitPos = m_pIndexes->begin() + reinterpret_cast<sal_IntPtr>(_pEntry->GetUser… in implCommit()
382 if (!implDropIndex(_pEntry, sal_False)) in implCommit()
481 sal_Bool DbaIndexDialog::implDropIndex(SvLBoxEntry* _pEntry, sal_Bool _bRemoveFromCollection) in implDropIndex() argument
484 …Indexes::iterator aDropPos = m_pIndexes->begin() + reinterpret_cast<sal_IntPtr>(_pEntry->GetUserDa… in implDropIndex()
507 pModel->Remove(_pEntry); in implDropIndex()
520 if (m_pPreviousSelection == _pEntry) in implDropIndex()
667 IMPL_LINK( DbaIndexDialog, OnEditIndexAgain, SvLBoxEntry*, _pEntry ) in IMPL_LINK() argument
670 m_aIndexes.EditEntry(_pEntry); in IMPL_LINK()
675 IMPL_LINK( DbaIndexDialog, OnEntryEdited, SvLBoxEntry*, _pEntry ) in IMPL_LINK() argument
677 …Indexes::iterator aPosition = m_pIndexes->begin() + reinterpret_cast<sal_IntPtr>(_pEntry->GetUserD… in IMPL_LINK()
682 String sNewName = m_aIndexes.GetEntryText(_pEntry); in IMPL_LINK()
694 PostUserEvent(LINK(this, DbaIndexDialog, OnEditIndexAgain), _pEntry); in IMPL_LINK()
813 void DbaIndexDialog::updateControls(const SvLBoxEntry* _pEntry) in updateControls() argument
815 if (_pEntry) in updateControls()
818 …erator aSelectedIndex = m_pIndexes->begin() + reinterpret_cast<sal_IntPtr>(_pEntry->GetUserData()); in updateControls()