Lines Matching refs:pObj

179 	SdrGrafObj* pObj=new SdrGrafObj(Graphic(rMtf));  in Paste()  local
180 pObj->SetLayer(nLayer); in Paste()
181 ImpPasteObject(pObj,*pLst,aPos,rMtf.GetPrefSize(),rMtf.GetPrefMapMode(),nOptions); in Paste()
195 SdrGrafObj* pObj=new SdrGrafObj(Graphic(rBmp)); in Paste() local
196 pObj->SetLayer(nLayer); in Paste()
197 ImpPasteObject(pObj,*pLst,aPos,rBmp.GetSizePixel(),MapMode(MAP_PIXEL),nOptions); in Paste()
219 SdrRectObj* pObj=new SdrRectObj(OBJ_TEXT,aTextRect); in Paste() local
220 pObj->SetModel(pMod); in Paste()
221 pObj->SetLayer(nLayer); in Paste()
222 pObj->NbcSetText(rStr); // #32424# SetText vor SetAttr, weil SetAttr sonst unwirksam! in Paste()
223 if (pDefaultStyleSheet!=NULL) pObj->NbcSetStyleSheet(pDefaultStyleSheet, sal_False); in Paste()
225 pObj->SetMergedItemSet(aDefaultAttr); in Paste()
231 pObj->SetMergedItemSet(aTempAttr); in Paste()
233 pObj->FitFrameToTextSize(); in Paste()
234 Size aSiz(pObj->GetLogicRect().GetSize()); in Paste()
237 ImpPasteObject(pObj,*pLst,aPos,aSiz,MapMode(eMap,Point(0,0),aMap,aMap),nOptions); in Paste()
256 SdrRectObj* pObj=new SdrRectObj(OBJ_TEXT,aTextRect); in Paste() local
257 pObj->SetModel(pMod); in Paste()
258 pObj->SetLayer(nLayer); in Paste()
259 if (pDefaultStyleSheet!=NULL) pObj->NbcSetStyleSheet(pDefaultStyleSheet, sal_False); in Paste()
261 pObj->SetMergedItemSet(aDefaultAttr); in Paste()
267 pObj->SetMergedItemSet(aTempAttr); in Paste()
269 pObj->NbcSetText(rInput,rBaseURL,eFormat); in Paste()
270 pObj->FitFrameToTextSize(); in Paste()
271 Size aSiz(pObj->GetLogicRect().GetSize()); in Paste()
274 ImpPasteObject(pObj,*pLst,aPos,aSiz,MapMode(eMap,Point(0,0),aMap,aMap),nOptions); in Paste()
277 if(pObj && pObj->GetModel() && pObj->GetOutlinerParaObject()) in Paste()
279 SdrOutliner& rOutliner = pObj->GetModel()->GetHitTestOutliner(); in Paste()
280 rOutliner.SetText(*pObj->GetOutlinerParaObject()); in Paste()
288 if(pObj->GetModel()->GetStyleSheetPool() == &pCandidate->GetPool()) in Paste()
290 pObj->NbcSetStyleSheet(pCandidate, sal_True); in Paste()
484 void SdrExchangeView::ImpPasteObject(SdrObject* pObj, SdrObjList& rLst, const Point& rCenter, const… in ImpPasteObject() argument
508 pObj->SetLogicRect(aR); in ImpPasteObject()
510 rLst.InsertObject(pObj,CONTAINER_APPEND,&aReason); in ImpPasteObject()
513 AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoNewObject(*pObj)); in ImpPasteObject()
527 MarkObj(pObj,pMarkPV); in ImpPasteObject()
694 Graphic SdrExchangeView::GetObjGraphic( const SdrModel* pModel, const SdrObject* pObj ) in GetObjGraphic() argument
698 if( pModel && pObj ) in GetObjGraphic()
701 const SdrGrafObj* pSdrGrafObj = dynamic_cast< const SdrGrafObj* >(pObj); in GetObjGraphic()
702 const SdrOle2Obj* pSdrOle2Obj = dynamic_cast< const SdrOle2Obj* >(pObj); in GetObjGraphic()
730 const Rectangle aBoundRect( pObj->GetCurrentBoundRect() ); in GetObjGraphic()
739 pObj->SingleObjectPainter( aOut ); // #110094#-17 in GetObjGraphic()
837 const SdrObject* pObj = aSdrObjects[i]; in GetMarkedObjModel() local
840 if( pObj->ISA( SdrPageObj ) ) in GetMarkedObjModel()
844 pNeuObj = new SdrGrafObj( GetObjGraphic( pMod, pObj ), pObj->GetLogicRect() ); in GetMarkedObjModel()
852 pNeuObj = pObj->Clone(); in GetMarkedObjModel()
863 aCloneList.AddPair(pObj, pNeuObj); in GetMarkedObjModel()