Lines Matching refs:pSdrObj

249 	SdrObject* pSdrObj = NULL;  in CreatePresObj()  local
258 pSdrObj = new SdrRectObj(OBJ_TITLETEXT); in CreatePresObj()
262 pSdrObj->SetNotVisibleAsMaster(sal_True); in CreatePresObj()
269 pSdrObj = new SdrRectObj(OBJ_OUTLINETEXT); in CreatePresObj()
273 pSdrObj->SetNotVisibleAsMaster(sal_True); in CreatePresObj()
280 pSdrObj = new SdrRectObj(OBJ_TEXT); in CreatePresObj()
284 pSdrObj->SetNotVisibleAsMaster(sal_True); in CreatePresObj()
291 pSdrObj = new SdrRectObj(OBJ_TEXT); in CreatePresObj()
309 pSdrObj = new SdrGrafObj(aGraphic, aRect); in CreatePresObj()
317 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
320 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
326 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
327 ( (SdrOle2Obj*) pSdrObj)->SetProgName( String( RTL_CONSTASCII_USTRINGPARAM( "StarChart" ))); in CreatePresObj()
330 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
336 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
337 ( (SdrOle2Obj*) pSdrObj)->SetProgName( String( RTL_CONSTASCII_USTRINGPARAM( "StarOrg" ))); in CreatePresObj()
340 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
346 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
347 ( (SdrOle2Obj*) pSdrObj)->SetProgName( String( RTL_CONSTASCII_USTRINGPARAM( "StarCalc" ))); in CreatePresObj()
350 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
359 pSdrObj = new SdrPageObj(0); in CreatePresObj()
377 pSdrObj = new SdrPageObj(pModel->GetPage(nDestPageNum)); in CreatePresObj()
381 pSdrObj = new SdrPageObj(); in CreatePresObj()
384 pSdrObj->SetResizeProtect(sal_True); in CreatePresObj()
393 pSdrObj = new SdrRectObj(OBJ_TEXT); in CreatePresObj()
402 if (pSdrObj) in CreatePresObj()
404 pSdrObj->SetEmptyPresObj(bEmptyPresObj); in CreatePresObj()
405 pSdrObj->SetLogicRect(rRect); in CreatePresObj()
407 InsertObject(pSdrObj); in CreatePresObj()
409 if ( pSdrObj->ISA(SdrTextObj) ) in CreatePresObj()
414 ((SdrTextObj*)pSdrObj)->SetVerticalWriting(sal_True); in CreatePresObj()
450 pSdrObj->SetMergedItemSet(aTempAttr); in CreatePresObj()
452 pSdrObj->SetLogicRect(rRect); in CreatePresObj()
456 if( (aString.Len() || bForceText) && pSdrObj->ISA(SdrTextObj) ) in CreatePresObj()
466 SetObjText( (SdrTextObj*) pSdrObj, (SdrOutliner*)pOutliner, eObjKind, aString ); in CreatePresObj()
497 pSdrObj->SetMergedItemSet(aTempAttr); in CreatePresObj()
505 pSdrObj->SetLayer( rLayerAdmin. in CreatePresObj()
516 pSdrObj->SetStyleSheet(pSheetForPresObj, sal_False); in CreatePresObj()
529 pSdrObj->StartListening(*pSheet); in CreatePresObj()
543 pSdrObj->SetMergedItemSet(aSet); in CreatePresObj()
548 pUndoManager->AddUndoAction(pModel->GetSdrUndoFactory().CreateUndoNewObject(*pSdrObj)); in CreatePresObj()
553 pUndoManager->AddUndoAction( new UndoObjectPresentationKind( *pSdrObj ) ); in CreatePresObj()
554 pUndoManager->AddUndoAction( new UndoObjectUserCall(*pSdrObj) ); in CreatePresObj()
557 InsertPresObj(pSdrObj, eObjKind); in CreatePresObj()
558 pSdrObj->SetUserCall(this); in CreatePresObj()
560 pSdrObj->RecalcBoundRect(); in CreatePresObj()
563 return(pSdrObj); in CreatePresObj()