Lines Matching refs:pSdrObj

253 	SdrObject* pSdrObj = NULL;  in CreatePresObj()  local
262 pSdrObj = new SdrRectObj(OBJ_TITLETEXT); in CreatePresObj()
266 pSdrObj->SetNotVisibleAsMaster(sal_True); in CreatePresObj()
273 pSdrObj = new SdrRectObj(OBJ_OUTLINETEXT); in CreatePresObj()
277 pSdrObj->SetNotVisibleAsMaster(sal_True); in CreatePresObj()
284 pSdrObj = new SdrRectObj(OBJ_TEXT); in CreatePresObj()
288 pSdrObj->SetNotVisibleAsMaster(sal_True); in CreatePresObj()
295 pSdrObj = new SdrRectObj(OBJ_TEXT); in CreatePresObj()
313 pSdrObj = new SdrGrafObj(aGraphic, aRect); in CreatePresObj()
321 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
324 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
330 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
331 ( (SdrOle2Obj*) pSdrObj)->SetProgName( String( RTL_CONSTASCII_USTRINGPARAM( "StarChart" ))); in CreatePresObj()
334 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
340 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
341 ( (SdrOle2Obj*) pSdrObj)->SetProgName( String( RTL_CONSTASCII_USTRINGPARAM( "StarOrg" ))); in CreatePresObj()
344 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
350 pSdrObj = new SdrOle2Obj(); in CreatePresObj()
351 ( (SdrOle2Obj*) pSdrObj)->SetProgName( String( RTL_CONSTASCII_USTRINGPARAM( "StarCalc" ))); in CreatePresObj()
354 ( (SdrOle2Obj*) pSdrObj)->SetGraphic(&aGraphic); in CreatePresObj()
363 pSdrObj = new SdrPageObj(0); in CreatePresObj()
381 pSdrObj = new SdrPageObj(pModel->GetPage(nDestPageNum)); in CreatePresObj()
385 pSdrObj = new SdrPageObj(); in CreatePresObj()
388 pSdrObj->SetResizeProtect(sal_True); in CreatePresObj()
397 pSdrObj = new SdrRectObj(OBJ_TEXT); in CreatePresObj()
406 if (pSdrObj) in CreatePresObj()
408 pSdrObj->SetEmptyPresObj(bEmptyPresObj); in CreatePresObj()
409 pSdrObj->SetLogicRect(rRect); in CreatePresObj()
411 InsertObject(pSdrObj); in CreatePresObj()
413 if ( pSdrObj->ISA(SdrTextObj) ) in CreatePresObj()
418 ((SdrTextObj*)pSdrObj)->SetVerticalWriting(sal_True); in CreatePresObj()
454 pSdrObj->SetMergedItemSet(aTempAttr); in CreatePresObj()
456 pSdrObj->SetLogicRect(rRect); in CreatePresObj()
460 if( (aString.Len() || bForceText) && pSdrObj->ISA(SdrTextObj) ) in CreatePresObj()
470 SetObjText( (SdrTextObj*) pSdrObj, (SdrOutliner*)pOutliner, eObjKind, aString ); in CreatePresObj()
501 pSdrObj->SetMergedItemSet(aTempAttr); in CreatePresObj()
509 pSdrObj->SetLayer( rLayerAdmin. in CreatePresObj()
520 pSdrObj->SetStyleSheet(pSheetForPresObj, sal_False); in CreatePresObj()
533 pSdrObj->StartListening(*pSheet); in CreatePresObj()
547 pSdrObj->SetMergedItemSet(aSet); in CreatePresObj()
552 pUndoManager->AddUndoAction(pModel->GetSdrUndoFactory().CreateUndoNewObject(*pSdrObj)); in CreatePresObj()
557 pUndoManager->AddUndoAction( new UndoObjectPresentationKind( *pSdrObj ) ); in CreatePresObj()
558 pUndoManager->AddUndoAction( new UndoObjectUserCall(*pSdrObj) ); in CreatePresObj()
561 InsertPresObj(pSdrObj, eObjKind); in CreatePresObj()
562 pSdrObj->SetUserCall(this); in CreatePresObj()
564 pSdrObj->RecalcBoundRect(); in CreatePresObj()
567 return(pSdrObj); in CreatePresObj()