Lines Matching refs:pShow

44 uno::Reference< uno::XInterface > createUnoCustomShow( SdCustomShow* pShow )  in createUnoCustomShow()  argument
46 return (cppu::OWeakObject*)new SdXCustomPresentation( pShow, NULL ); in createUnoCustomShow()
56 SdXCustomPresentation::SdXCustomPresentation( SdCustomShow* pShow, SdXImpressDocument* pMyModel) th… in SdXCustomPresentation() argument
57 : mpSdCustomShow(pShow), mpModel(pMyModel), in SdXCustomPresentation()
351 SdCustomShow* pShow = pXShow->GetSdCustomShow(); in insertByName() local
352 if( NULL == pShow ) in insertByName()
354 pShow = new SdCustomShow( mrModel.GetDoc(), xContainer ); in insertByName()
355 pXShow->SetSdCustomShow( pShow ); in insertByName()
364 pShow->SetName( aName); in insertByName()
371 if( pCompare == pShow || pCompare->GetName() == pShow->GetName() ) in insertByName()
375 pList->Insert(pShow); in insertByName()
385 SdCustomShow* pShow = getSdCustomShow(Name); in removeByName() local
388 if(pList && pShow) in removeByName()
389 delete (SdCustomShow*)pList->Remove( pShow ); in removeByName()
412 SdCustomShow* pShow = getSdCustomShow(aName); in getByName() local
413 if(pShow) in getByName()
415 … uno::Reference< container::XIndexContainer > xRef( pShow->getUnoCustomShow(), uno::UNO_QUERY ); in getByName()
440 const SdCustomShow* pShow = (const SdCustomShow*)pList->GetObject(nIdx); in getElementNames() local
441 pStringList[nIdx] = pShow->GetName(); in getElementNames()
483 SdCustomShow* pShow = (SdCustomShow*)pList->GetObject(nIdx); in getSdCustomShow() local
484 if( pShow->GetName() == aName ) in getSdCustomShow()
485 return pShow; in getSdCustomShow()