Lines Matching refs:pSrcEntry
313 sal_uLong SvTreeList::Move(SvListEntry* pSrcEntry,SvListEntry* pTargetParent,sal_uLong nListPos) in Move() argument
316 DBG_ASSERT(pSrcEntry,"Entry?"); in Move()
319 DBG_ASSERT(pSrcEntry!=pTargetParent,"Move:Source=Target"); in Move()
321 Broadcast( LISTACTION_MOVING, pSrcEntry, pTargetParent, nListPos ); in Move()
325 if ( pSrcEntry == pTargetParent ) in Move()
326 return pSrcEntry->GetChildListPos(); in Move()
331 SvTreeEntryList* pSrcList = pSrcEntry->pParent->pChilds; in Move()
338 pSrcList->Remove( pSrcEntry ); in Move()
343 SvListEntry* pParent = pSrcEntry->pParent; in Move()
351 pSrcEntry->pParent = pTargetParent; in Move()
353 pDstList->Replace( pSrcEntry, pDummy ); in Move()
364 sal_uLong nRetVal = pDstList->GetPos( pSrcEntry ); in Move()
365 DBG_ASSERT(nRetVal==pSrcEntry->GetChildListPos(),"ListPos not valid"); in Move()
366 Broadcast( LISTACTION_MOVED,pSrcEntry,pTargetParent,nRetVal); in Move()
370 sal_uLong SvTreeList::Copy(SvListEntry* pSrcEntry,SvListEntry* pTargetParent,sal_uLong nListPos) in Copy() argument
373 DBG_ASSERT(pSrcEntry,"Entry?"); in Copy()
382 SvListEntry* pClonedEntry = Clone( pSrcEntry, nCloneCount ); in Copy()
410 void SvTreeList::Move( SvListEntry* pSrcEntry, SvListEntry* pDstEntry ) in Move() argument
426 Move( pSrcEntry, pParent, nPos ); in Move()
439 void SvTreeList::Copy( SvListEntry* pSrcEntry, SvListEntry* pDstEntry ) in Copy() argument
454 Copy( pSrcEntry, pParent, nPos ); in Copy()
466 void SvTreeList::InsertTree( SvListEntry* pSrcEntry, SvListEntry* pDstEntry) in InsertTree() argument
481 InsertTree( pSrcEntry, pParent, nPos ); in InsertTree()
485 void SvTreeList::InsertTree(SvListEntry* pSrcEntry, in InsertTree() argument
488 DBG_ASSERT(pSrcEntry,"InsertTree:Entry?"); in InsertTree()
489 if ( !pSrcEntry ) in InsertTree()
498 GetInsertionPos( pSrcEntry, pTargetParent, nListPos ); in InsertTree()
502 pSrcEntry->pParent = pTargetParent; // Parent umsetzen in InsertTree()
504 pDstList->Insert( pSrcEntry, nListPos ); // einfuegen in InsertTree()
506 nEntryCount += GetChildCount( pSrcEntry ); in InsertTree()
512 Broadcast(LISTACTION_INSERTED_TREE, pSrcEntry ); in InsertTree()