Lines Matching refs:pNewGrafObj

93 	SdrGrafObj*		pNewGrafObj = NULL;  in InsertGraphic()  local
147 pNewGrafObj = (SdrGrafObj*) pPickObj->Clone(); in InsertGraphic()
148 pNewGrafObj->SetGraphic(rGraphic); in InsertGraphic()
152 pNewGrafObj = new SdrGrafObj( rGraphic, pPickObj->GetLogicRect() ); in InsertGraphic()
153 pNewGrafObj->SetEmptyPresObj(sal_True); in InsertGraphic()
156 if ( pNewGrafObj->IsEmptyPresObj() ) in InsertGraphic()
158 Rectangle aRect( pNewGrafObj->GetLogicRect() ); in InsertGraphic()
159 pNewGrafObj->AdjustToMaxRect( aRect, sal_False ); in InsertGraphic()
160 pNewGrafObj->SetOutlinerParaObject(NULL); in InsertGraphic()
161 pNewGrafObj->SetEmptyPresObj(sal_False); in InsertGraphic()
167 pPage->InsertPresObj( pNewGrafObj, PRESOBJ_GRAPHIC ); in InsertGraphic()
168 pNewGrafObj->SetUserCall(pPickObj->GetUserCall()); in InsertGraphic()
172 pNewGrafObj->InsertUserData(new SdIMapInfo(*pImageMap)); in InsertGraphic()
174 ReplaceObjectAtView(pPickObj, *pPV, pNewGrafObj); // maybe ReplaceObjectAtView in InsertGraphic()
203 pNewGrafObj = new SdrGrafObj( rGraphic, Rectangle( rPos, aSize ) ); in InsertGraphic()
208 pNewGrafObj->AdjustToMaxRect( Rectangle( Point(), aPageSize ), sal_True ); in InsertGraphic()
233 pNewGrafObj->InsertUserData(new SdIMapInfo(*pImageMap)); in InsertGraphic()
237 Rectangle aObjRect(pNewGrafObj->GetCurrentBoundRect()); in InsertGraphic()
242 pNewGrafObj->NbcResize(aObjRect.TopLeft(), aScaleWidth, aScaleHeight); in InsertGraphic()
245 pNewGrafObj->NbcMove(Size(aVec.X(), aVec.Y())); in InsertGraphic()
251 pNewGrafObj->NbcSetLayer(pPickObj->GetLayer()); in InsertGraphic()
253 pP->InsertObject(pNewGrafObj); in InsertGraphic()
256 AddUndo(mpDoc->GetSdrUndoFactory().CreateUndoNewObject(*pNewGrafObj)); in InsertGraphic()
273 InsertObjectAtView(pNewGrafObj, *pPV, nOptions); in InsertGraphic()
276 pNewGrafObj->InsertUserData(new SdIMapInfo(*pImageMap)); in InsertGraphic()
282 return pNewGrafObj; in InsertGraphic()