Lines Matching refs:pShow

46 uno::Reference< uno::XInterface > createUnoCustomShow( SdCustomShow* pShow )  in createUnoCustomShow()  argument
48 return (cppu::OWeakObject*)new SdXCustomPresentation( pShow, NULL ); in createUnoCustomShow()
58 SdXCustomPresentation::SdXCustomPresentation( SdCustomShow* pShow, SdXImpressDocument* pMyModel) th… in SdXCustomPresentation() argument
59 : mpSdCustomShow(pShow), mpModel(pMyModel), in SdXCustomPresentation()
353 SdCustomShow* pShow = pXShow->GetSdCustomShow(); in insertByName() local
354 if( NULL == pShow ) in insertByName()
356 pShow = new SdCustomShow( mrModel.GetDoc(), xContainer ); in insertByName()
357 pXShow->SetSdCustomShow( pShow ); in insertByName()
366 pShow->SetName( aName); in insertByName()
373 if( pCompare == pShow || pCompare->GetName() == pShow->GetName() ) in insertByName()
377 pList->Insert(pShow); in insertByName()
387 SdCustomShow* pShow = getSdCustomShow(Name); in removeByName() local
390 if(pList && pShow) in removeByName()
391 delete (SdCustomShow*)pList->Remove( pShow ); in removeByName()
414 SdCustomShow* pShow = getSdCustomShow(aName); in getByName() local
415 if(pShow) in getByName()
417 uno::Reference< container::XIndexContainer > xRef( pShow->getUnoCustomShow(), uno::UNO_QUERY ); in getByName()
442 const SdCustomShow* pShow = (const SdCustomShow*)pList->GetObject(nIdx); in getElementNames() local
443 pStringList[nIdx] = pShow->GetName(); in getElementNames()
485 SdCustomShow* pShow = (SdCustomShow*)pList->GetObject(nIdx); in getSdCustomShow() local
486 if( pShow->GetName() == aName ) in getSdCustomShow()
487 return pShow; in getSdCustomShow()