Home
last modified time | relevance | path

Searched refs:getSdrDragView (Results 1 – 4 of 4) sorted by relevance

/AOO42X/main/svx/source/svdraw/
H A Dsvddrgmt.cxx352 … if(getSdrDragView().GetSdrPageView() && getSdrDragView().GetSdrPageView()->HasMarkedObjPageView()) in createSdrDragEntries()
354 if(getSdrDragView().IsDraggingPoints()) in createSdrDragEntries()
358 else if(getSdrDragView().IsDraggingGluePoints()) in createSdrDragEntries()
384 const sal_uInt32 nMarkAnz(getSdrDragView().GetMarkedObjectCount()); in createSdrDragEntries_SolidDrag()
385 SdrPageView* pPV = getSdrDragView().GetSdrPageView(); in createSdrDragEntries_SolidDrag()
391 SdrMark* pM = getSdrDragView().GetSdrMarkByIndex(a); in createSdrDragEntries_SolidDrag()
443 const sal_uInt32 nMarkAnz(getSdrDragView().GetMarkedObjectCount()); in createSdrDragEntries_PolygonDrag()
444 …bool bNoPolygons(getSdrDragView().IsNoDragXorPolys() || nMarkAnz > getSdrDragView().GetDragXorPoly… in createSdrDragEntries_PolygonDrag()
450 SdrMark* pM = getSdrDragView().GetSdrMarkByIndex(a); in createSdrDragEntries_PolygonDrag()
452 if(pM->GetPageView() == getSdrDragView().GetSdrPageView()) in createSdrDragEntries_PolygonDrag()
[all …]
/AOO42X/main/svx/inc/svx/
H A Dsvddrgmt.hxx164 SdrDragView& getSdrDragView() { return mrSdrDragView; } in getSdrDragView() function in SdrDragMethod
165 const SdrDragView& getSdrDragView() const { return mrSdrDragView; } in getSdrDragView() function in SdrDragMethod
179 SdrHdl* GetDragHdl() const { return getSdrDragView().pDragHdl; } in GetDragHdl()
180 SdrHdlKind GetDragHdlKind() const { return getSdrDragView().eDragHdl; } in GetDragHdlKind()
181 SdrDragStat& DragStat() { return getSdrDragView().aDragStat; } in DragStat()
182 const SdrDragStat& DragStat() const { return getSdrDragView().aDragStat; } in DragStat()
185 const SdrHdlList& GetHdlList() const { return getSdrDragView().aHdl; } in GetHdlList()
186 void AddUndo(SdrUndoAction* pUndo) { getSdrDragView().AddUndo(pUndo); } in AddUndo()
187 bool IsDragLimit() { return getSdrDragView().bDragLimit; } in IsDragLimit()
188 const Rectangle& GetDragLimitRect() { return getSdrDragView().aDragLimit; } in GetDragLimitRect()
[all …]
/AOO42X/main/svx/source/engine3d/
H A Ddragmt3d.cxx196 const bool bUndo = getSdrDragView().IsUndoEnabled(); in EndSdrDrag()
198 getSdrDragView().BegUndo(SVX_RESSTR(RID_SVX_3D_UNDO_ROTATE)); in EndSdrDrag()
208 getSdrDragView().AddUndo(new E3dRotateUndoAction(rCandidate.mp3DObj->GetModel(), in EndSdrDrag()
214 getSdrDragView().EndUndo(); in EndSdrDrag()
276 SdrPageView* pPV = getSdrDragView().GetSdrPageView(); in CreateOverlayGeometry()
389 if(getSdrDragView().ISA(E3dView)) in MoveSdrDrag()
391 const MouseEvent& rLastMouse = ((E3dView&)getSdrDragView()).GetMouseEvent(); in MoveSdrDrag()
421 if(!getSdrDragView().IsRotateAllowed(sal_False)) in MoveSdrDrag()
550 if(getSdrDragView().IsResizeAtCenter()) in E3dDragMove()
581 if(getSdrDragView().ISA(E3dView)) in MoveSdrDrag()
[all …]
/AOO42X/main/svx/inc/
H A Ddragmt3d.hxx94 E3dView& Get3DView() { return (E3dView&)getSdrDragView(); } in Get3DView()