LCOV - code coverage report
Current view: top level - svx/source/svdraw - svddrgmt.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 1887 0.1 %
Date: 2014-11-03 Functions: 2 203 1.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "svddrgm1.hxx"
      21             : #include <math.h>
      22             : 
      23             : #include <tools/bigint.hxx>
      24             : #include <vcl/svapp.hxx>
      25             : #include <vcl/settings.hxx>
      26             : #include "svx/xattr.hxx"
      27             : #include <svx/xpoly.hxx>
      28             : #include <svx/svdetc.hxx>
      29             : #include <svx/svdtrans.hxx>
      30             : #include <svx/svdundo.hxx>
      31             : #include <svx/svdmark.hxx>
      32             : #include <svx/svdocapt.hxx>
      33             : #include <svx/svdpagv.hxx>
      34             : #include "svx/svdstr.hrc"
      35             : #include "svdglob.hxx"
      36             : #include <svx/svddrgv.hxx>
      37             : #include <svx/svdograf.hxx>
      38             : #include <svx/dialogs.hrc>
      39             : #include <svx/dialmgr.hxx>
      40             : #include <svx/sdgcpitm.hxx>
      41             : #include <basegfx/polygon/b2dpolygon.hxx>
      42             : #include <basegfx/polygon/b2dpolygontools.hxx>
      43             : #include <svx/sdr/overlay/overlaypolypolygon.hxx>
      44             : #include <svx/sdr/overlay/overlaymanager.hxx>
      45             : #include <sdr/overlay/overlayrollingrectangle.hxx>
      46             : #include <svx/sdrpagewindow.hxx>
      47             : #include <svx/sdrpaintwindow.hxx>
      48             : #include <basegfx/matrix/b2dhommatrix.hxx>
      49             : #include <basegfx/polygon/b2dpolypolygontools.hxx>
      50             : #include <svx/sdr/contact/viewobjectcontact.hxx>
      51             : #include <svx/sdr/contact/viewcontact.hxx>
      52             : #include <svx/sdr/contact/displayinfo.hxx>
      53             : #include <svx/sdr/overlay/overlayprimitive2dsequenceobject.hxx>
      54             : #include <drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx>
      55             : #include <svx/sdr/contact/objectcontact.hxx>
      56             : #include "svx/svditer.hxx"
      57             : #include <svx/svdopath.hxx>
      58             : #include <svx/polypolygoneditor.hxx>
      59             : #include <drawinglayer/primitive2d/polypolygonprimitive2d.hxx>
      60             : #include <drawinglayer/primitive2d/polygonprimitive2d.hxx>
      61             : #include <drawinglayer/primitive2d/transformprimitive2d.hxx>
      62             : #include <drawinglayer/primitive2d/markerarrayprimitive2d.hxx>
      63             : #include <svx/sdr/primitive2d/sdrattributecreator.hxx>
      64             : #include <svx/sdr/primitive2d/sdrdecompositiontools.hxx>
      65             : #include <svx/svdoole2.hxx>
      66             : #include <svx/svdovirt.hxx>
      67             : #include <svx/svdouno.hxx>
      68             : #include <sdr/primitive2d/sdrprimitivetools.hxx>
      69             : #include <basegfx/matrix/b2dhommatrixtools.hxx>
      70             : #include <drawinglayer/attribute/sdrlineattribute.hxx>
      71             : #include <drawinglayer/attribute/sdrlinestartendattribute.hxx>
      72             : #include <map>
      73             : #include <vector>
      74             : 
      75             : 
      76             : 
      77           0 : SdrDragEntry::SdrDragEntry()
      78           0 : :   mbAddToTransparent(false)
      79             : {
      80           0 : }
      81             : 
      82           0 : SdrDragEntry::~SdrDragEntry()
      83             : {
      84           0 : }
      85             : 
      86             : 
      87             : 
      88           0 : SdrDragEntryPolyPolygon::SdrDragEntryPolyPolygon(const basegfx::B2DPolyPolygon& rOriginalPolyPolygon)
      89             : :   SdrDragEntry(),
      90           0 :     maOriginalPolyPolygon(rOriginalPolyPolygon)
      91             : {
      92           0 : }
      93             : 
      94           0 : SdrDragEntryPolyPolygon::~SdrDragEntryPolyPolygon()
      95             : {
      96           0 : }
      97             : 
      98           0 : drawinglayer::primitive2d::Primitive2DSequence SdrDragEntryPolyPolygon::createPrimitive2DSequenceInCurrentState(SdrDragMethod& rDragMethod)
      99             : {
     100           0 :     drawinglayer::primitive2d::Primitive2DSequence aRetval;
     101             : 
     102           0 :     if(maOriginalPolyPolygon.count())
     103             :     {
     104           0 :         basegfx::B2DPolyPolygon aCopy(maOriginalPolyPolygon);
     105           0 :         const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer;
     106             : 
     107           0 :         rDragMethod.applyCurrentTransformationToPolyPolygon(aCopy);
     108           0 :         basegfx::BColor aColA(aSvtOptionsDrawinglayer.GetStripeColorA().getBColor());
     109           0 :         basegfx::BColor aColB(aSvtOptionsDrawinglayer.GetStripeColorB().getBColor());
     110           0 :         const double fStripeLength(aSvtOptionsDrawinglayer.GetStripeLength());
     111             : 
     112           0 :         if(Application::GetSettings().GetStyleSettings().GetHighContrastMode())
     113             :         {
     114           0 :             aColA = aColB = Application::GetSettings().GetStyleSettings().GetHighlightColor().getBColor();
     115           0 :             aColB.invert();
     116             :         }
     117             : 
     118           0 :         aRetval.realloc(2);
     119           0 :         aRetval[0] = new drawinglayer::primitive2d::PolyPolygonMarkerPrimitive2D(
     120             :             aCopy,
     121             :             aColA,
     122             :             aColB,
     123           0 :             fStripeLength);
     124             : 
     125           0 :         const basegfx::BColor aHilightColor(aSvtOptionsDrawinglayer.getHilightColor().getBColor());
     126           0 :         const double fTransparence(aSvtOptionsDrawinglayer.GetTransparentSelectionPercent() * 0.01);
     127             : 
     128           0 :         aRetval[1] = new drawinglayer::primitive2d::PolyPolygonSelectionPrimitive2D(
     129             :             aCopy,
     130             :             aHilightColor,
     131             :             fTransparence,
     132             :             3.0,
     133           0 :             false);
     134             :     }
     135             : 
     136           0 :     return aRetval;
     137             : }
     138             : 
     139             : 
     140             : 
     141           0 : SdrDragEntrySdrObject::SdrDragEntrySdrObject(const SdrObject& rOriginal, sdr::contact::ObjectContact& rObjectContact, bool bModify)
     142             : :   SdrDragEntry(),
     143             :     maOriginal(rOriginal),
     144             :     mpClone(0),
     145             :     mrObjectContact(rObjectContact),
     146           0 :     mbModify(bModify)
     147             : {
     148             :     // add SdrObject parts to transparent overlay stuff
     149           0 :     setAddToTransparent(true);
     150           0 : }
     151             : 
     152           0 : SdrDragEntrySdrObject::~SdrDragEntrySdrObject()
     153             : {
     154           0 :     if(mpClone)
     155             :     {
     156           0 :         SdrObject::Free(mpClone);
     157             :     }
     158           0 : }
     159             : 
     160           0 : void SdrDragEntrySdrObject::prepareCurrentState(SdrDragMethod& rDragMethod)
     161             : {
     162             :     // for the moment, i need to re-create the clone in all cases. I need to figure
     163             :     // out when clone and original have the same class, so that i can use operator=
     164             :     // in those cases
     165             : 
     166           0 :     if(mpClone)
     167             :     {
     168           0 :         SdrObject::Free(mpClone);
     169           0 :         mpClone = 0;
     170             :     }
     171             : 
     172           0 :     if(mbModify)
     173             :     {
     174           0 :         if(!mpClone)
     175             :         {
     176           0 :             mpClone = maOriginal.getFullDragClone();
     177             :         }
     178             : 
     179             :         // apply original transformation, implemented at the DragMethods
     180           0 :         rDragMethod.applyCurrentTransformationToSdrObject(*mpClone);
     181             :     }
     182           0 : }
     183             : 
     184           0 : drawinglayer::primitive2d::Primitive2DSequence SdrDragEntrySdrObject::createPrimitive2DSequenceInCurrentState(SdrDragMethod&)
     185             : {
     186           0 :     const SdrObject* pSource = &maOriginal;
     187             : 
     188           0 :     if(mbModify && mpClone)
     189             :     {
     190             :         // choose source for geometry data
     191           0 :         pSource = mpClone;
     192             :     }
     193             : 
     194             :     // get VOC and Primitive2DSequence
     195           0 :     sdr::contact::ViewContact& rVC = pSource->GetViewContact();
     196           0 :     sdr::contact::ViewObjectContact& rVOC = rVC.GetViewObjectContact(mrObjectContact);
     197           0 :     sdr::contact::DisplayInfo aDisplayInfo;
     198             : 
     199             :     // Do not use the last ViewPort set at the OC from the last ProcessDisplay(),
     200             :     // here we want the complete primitive sequence without visibility clippings
     201           0 :     mrObjectContact.resetViewPort();
     202             : 
     203           0 :     return rVOC.getPrimitive2DSequenceHierarchy(aDisplayInfo);
     204             : }
     205             : 
     206             : 
     207             : 
     208           0 : SdrDragEntryPrimitive2DSequence::SdrDragEntryPrimitive2DSequence(
     209             :     const drawinglayer::primitive2d::Primitive2DSequence& rSequence,
     210             :     bool bAddToTransparent)
     211             : :   SdrDragEntry(),
     212           0 :     maPrimitive2DSequence(rSequence)
     213             : {
     214             :     // add parts to transparent overlay stuff if necessary
     215           0 :     setAddToTransparent(bAddToTransparent);
     216           0 : }
     217             : 
     218           0 : SdrDragEntryPrimitive2DSequence::~SdrDragEntryPrimitive2DSequence()
     219             : {
     220           0 : }
     221             : 
     222           0 : drawinglayer::primitive2d::Primitive2DSequence SdrDragEntryPrimitive2DSequence::createPrimitive2DSequenceInCurrentState(SdrDragMethod& rDragMethod)
     223             : {
     224             :     drawinglayer::primitive2d::Primitive2DReference aTransformPrimitive2D(
     225             :         new drawinglayer::primitive2d::TransformPrimitive2D(
     226           0 :             rDragMethod.getCurrentTransformation(),
     227           0 :             maPrimitive2DSequence));
     228             : 
     229           0 :     return drawinglayer::primitive2d::Primitive2DSequence(&aTransformPrimitive2D, 1);
     230             : }
     231             : 
     232             : 
     233             : 
     234           0 : SdrDragEntryPointGlueDrag::SdrDragEntryPointGlueDrag(const std::vector< basegfx::B2DPoint >& rPositions, bool bIsPointDrag)
     235             : :   maPositions(rPositions),
     236           0 :     mbIsPointDrag(bIsPointDrag)
     237             : {
     238             :     // add SdrObject parts to transparent overlay stuff
     239           0 :     setAddToTransparent(true);
     240           0 : }
     241             : 
     242           0 : SdrDragEntryPointGlueDrag::~SdrDragEntryPointGlueDrag()
     243             : {
     244           0 : }
     245             : 
     246           0 : drawinglayer::primitive2d::Primitive2DSequence SdrDragEntryPointGlueDrag::createPrimitive2DSequenceInCurrentState(SdrDragMethod& rDragMethod)
     247             : {
     248           0 :     drawinglayer::primitive2d::Primitive2DSequence aRetval;
     249             : 
     250           0 :     if(!maPositions.empty())
     251             :     {
     252           0 :         basegfx::B2DPolygon aPolygon;
     253           0 :         sal_uInt32 a(0);
     254             : 
     255           0 :         for(a = 0; a < maPositions.size(); a++)
     256             :         {
     257           0 :             aPolygon.append(maPositions[a]);
     258             :         }
     259             : 
     260           0 :         basegfx::B2DPolyPolygon aPolyPolygon(aPolygon);
     261             : 
     262           0 :         rDragMethod.applyCurrentTransformationToPolyPolygon(aPolyPolygon);
     263             : 
     264           0 :         const basegfx::B2DPolygon aTransformed(aPolyPolygon.getB2DPolygon(0));
     265           0 :         std::vector< basegfx::B2DPoint > aTransformedPositions;
     266             : 
     267           0 :         aTransformedPositions.reserve(aTransformed.count());
     268             : 
     269           0 :         for(a = 0; a < aTransformed.count(); a++)
     270             :         {
     271           0 :             aTransformedPositions.push_back(aTransformed.getB2DPoint(a));
     272             :         }
     273             : 
     274           0 :         if(mbIsPointDrag)
     275             :         {
     276           0 :             const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer;
     277           0 :             basegfx::BColor aColor(aSvtOptionsDrawinglayer.GetStripeColorA().getBColor());
     278             : 
     279           0 :             if(Application::GetSettings().GetStyleSettings().GetHighContrastMode())
     280             :             {
     281           0 :                 aColor = Application::GetSettings().GetStyleSettings().GetHighlightColor().getBColor();
     282             :             }
     283             : 
     284             :             drawinglayer::primitive2d::Primitive2DReference aMarkerArrayPrimitive2D(
     285             :                 new drawinglayer::primitive2d::MarkerArrayPrimitive2D(aTransformedPositions,
     286           0 :                     drawinglayer::primitive2d::createDefaultCross_3x3(aColor)));
     287             : 
     288           0 :             aRetval = drawinglayer::primitive2d::Primitive2DSequence(&aMarkerArrayPrimitive2D, 1);
     289             :         }
     290             :         else
     291             :         {
     292             :             drawinglayer::primitive2d::Primitive2DReference aMarkerArrayPrimitive2D(
     293             :                 new drawinglayer::primitive2d::MarkerArrayPrimitive2D(aTransformedPositions,
     294           0 :                                                                       SdrHdl::createGluePointBitmap()));
     295           0 :             aRetval = drawinglayer::primitive2d::Primitive2DSequence(&aMarkerArrayPrimitive2D, 1);
     296           0 :         }
     297             :     }
     298             : 
     299           0 :     return aRetval;
     300             : }
     301             : 
     302             : 
     303             : 
     304           0 : TYPEINIT0(SdrDragMethod);
     305             : 
     306           0 : void SdrDragMethod::resetSdrDragEntries()
     307             : {
     308             :     // clear entries; creation is on demand
     309           0 :     clearSdrDragEntries();
     310           0 : }
     311             : 
     312           0 : basegfx::B2DRange SdrDragMethod::getCurrentRange() const
     313             : {
     314           0 :     return getB2DRangeFromOverlayObjectList();
     315             : }
     316             : 
     317           0 : void SdrDragMethod::clearSdrDragEntries()
     318             : {
     319           0 :     for(sal_uInt32 a(0); a < maSdrDragEntries.size(); a++)
     320             :     {
     321           0 :         delete maSdrDragEntries[a];
     322             :     }
     323             : 
     324           0 :     maSdrDragEntries.clear();
     325           0 : }
     326             : 
     327           0 : void SdrDragMethod::addSdrDragEntry(SdrDragEntry* pNew)
     328             : {
     329           0 :     if(pNew)
     330             :     {
     331           0 :         maSdrDragEntries.push_back(pNew);
     332             :     }
     333           0 : }
     334             : 
     335           0 : void SdrDragMethod::createSdrDragEntries()
     336             : {
     337           0 :     if(getSdrDragView().GetSdrPageView() && getSdrDragView().GetSdrPageView()->HasMarkedObjPageView())
     338             :     {
     339           0 :         if(getSdrDragView().IsDraggingPoints())
     340             :         {
     341           0 :             createSdrDragEntries_PointDrag();
     342             :         }
     343           0 :         else if(getSdrDragView().IsDraggingGluePoints())
     344             :         {
     345           0 :             createSdrDragEntries_GlueDrag();
     346             :         }
     347             :         else
     348             :         {
     349           0 :             if(getSolidDraggingActive())
     350             :             {
     351           0 :                 createSdrDragEntries_SolidDrag();
     352             :             }
     353             :             else
     354             :             {
     355           0 :                 createSdrDragEntries_PolygonDrag();
     356             :             }
     357             :         }
     358             :     }
     359           0 : }
     360             : 
     361           0 : void SdrDragMethod::createSdrDragEntryForSdrObject(const SdrObject& rOriginal, sdr::contact::ObjectContact& rObjectContact, bool bModify)
     362             : {
     363             :     // add full object drag; Clone() at the object has to work
     364             :     // for this
     365           0 :     addSdrDragEntry(new SdrDragEntrySdrObject(rOriginal, rObjectContact, bModify));
     366           0 : }
     367             : 
     368           0 : void SdrDragMethod::createSdrDragEntries_SolidDrag()
     369             : {
     370           0 :     const size_t nMarkAnz(getSdrDragView().GetMarkedObjectCount());
     371           0 :     SdrPageView* pPV = getSdrDragView().GetSdrPageView();
     372             : 
     373           0 :     if(pPV)
     374             :     {
     375           0 :         for(size_t a = 0; a < nMarkAnz; ++a)
     376             :         {
     377           0 :             SdrMark* pM = getSdrDragView().GetSdrMarkByIndex(a);
     378             : 
     379           0 :             if(pM->GetPageView() == pPV)
     380             :             {
     381           0 :                 const SdrObject* pObject = pM->GetMarkedSdrObj();
     382             : 
     383           0 :                 if(pObject)
     384             :                 {
     385           0 :                     if(pPV->PageWindowCount())
     386             :                     {
     387           0 :                         sdr::contact::ObjectContact& rOC = pPV->GetPageWindow(0)->GetObjectContact();
     388           0 :                         SdrObjListIter aIter(*pObject);
     389             : 
     390           0 :                         while(aIter.IsMore())
     391             :                         {
     392           0 :                             SdrObject* pCandidate = aIter.Next();
     393             : 
     394           0 :                             if(pCandidate)
     395             :                             {
     396           0 :                                 const bool bSuppressFullDrag(!pCandidate->supportsFullDrag());
     397           0 :                                 bool bAddWireframe(bSuppressFullDrag);
     398             : 
     399           0 :                                 if(!bAddWireframe && !pCandidate->HasLineStyle())
     400             :                                 {
     401             :                                     // add wireframe for objects without outline
     402           0 :                                     bAddWireframe = true;
     403             :                                 }
     404             : 
     405           0 :                                 if(!bSuppressFullDrag)
     406             :                                 {
     407             :                                     // add full object drag; Clone() at the object has to work
     408             :                                     // for this
     409           0 :                                     createSdrDragEntryForSdrObject(*pCandidate, rOC, true);
     410             :                                 }
     411             : 
     412           0 :                                 if(bAddWireframe)
     413             :                                 {
     414             :                                     // when dragging a 50% transparent copy of a filled or not filled object without
     415             :                                     // outline, this is normally hard to see. Add extra wireframe in that case. This
     416             :                                     // works nice e.g. with text frames etc.
     417           0 :                                     addSdrDragEntry(new SdrDragEntryPolyPolygon(pCandidate->TakeXorPoly()));
     418             :                                 }
     419             :                             }
     420           0 :                         }
     421             :                     }
     422             :                 }
     423             :             }
     424             :         }
     425             :     }
     426           0 : }
     427             : 
     428           0 : void SdrDragMethod::createSdrDragEntries_PolygonDrag()
     429             : {
     430           0 :     const size_t nMarkAnz(getSdrDragView().GetMarkedObjectCount());
     431           0 :     bool bNoPolygons(getSdrDragView().IsNoDragXorPolys() || nMarkAnz > getSdrDragView().GetDragXorPolyLimit());
     432           0 :     basegfx::B2DPolyPolygon aResult;
     433           0 :     sal_uInt32 nPointCount(0);
     434             : 
     435           0 :     for(size_t a = 0; !bNoPolygons && a < nMarkAnz; ++a)
     436             :     {
     437           0 :         SdrMark* pM = getSdrDragView().GetSdrMarkByIndex(a);
     438             : 
     439           0 :         if(pM->GetPageView() == getSdrDragView().GetSdrPageView())
     440             :         {
     441           0 :             const basegfx::B2DPolyPolygon aNewPolyPolygon(pM->GetMarkedSdrObj()->TakeXorPoly());
     442             : 
     443           0 :             for(sal_uInt32 b(0); b < aNewPolyPolygon.count(); b++)
     444             :             {
     445           0 :                 nPointCount += aNewPolyPolygon.getB2DPolygon(b).count();
     446             :             }
     447             : 
     448           0 :             if(nPointCount > getSdrDragView().GetDragXorPointLimit())
     449             :             {
     450           0 :                 bNoPolygons = true;
     451             :             }
     452             : 
     453           0 :             if(!bNoPolygons)
     454             :             {
     455           0 :                 aResult.append(aNewPolyPolygon);
     456           0 :             }
     457             :         }
     458             :     }
     459             : 
     460           0 :     if(bNoPolygons)
     461             :     {
     462           0 :         const Rectangle aR(getSdrDragView().GetSdrPageView()->MarkSnap());
     463           0 :         const basegfx::B2DRange aNewRectangle(aR.Left(), aR.Top(), aR.Right(), aR.Bottom());
     464           0 :         basegfx::B2DPolygon aNewPolygon(basegfx::tools::createPolygonFromRect(aNewRectangle));
     465             : 
     466           0 :         aResult = basegfx::B2DPolyPolygon(basegfx::tools::expandToCurve(aNewPolygon));
     467             :     }
     468             : 
     469           0 :     if(aResult.count())
     470             :     {
     471           0 :         addSdrDragEntry(new SdrDragEntryPolyPolygon(aResult));
     472           0 :     }
     473           0 : }
     474             : 
     475           0 : void SdrDragMethod::createSdrDragEntries_PointDrag()
     476             : {
     477           0 :     const size_t nMarkAnz(getSdrDragView().GetMarkedObjectCount());
     478           0 :     std::vector< basegfx::B2DPoint > aPositions;
     479             : 
     480           0 :     for(size_t nm = 0; nm < nMarkAnz; ++nm)
     481             :     {
     482           0 :         SdrMark* pM = getSdrDragView().GetSdrMarkByIndex(nm);
     483             : 
     484           0 :         if(pM->GetPageView() == getSdrDragView().GetSdrPageView())
     485             :         {
     486           0 :             const SdrUShortCont* pPts = pM->GetMarkedPoints();
     487             : 
     488           0 :             if(pPts && !pPts->empty())
     489             :             {
     490           0 :                 const SdrObject* pObj = pM->GetMarkedSdrObj();
     491           0 :                 const SdrPathObj* pPath = dynamic_cast< const SdrPathObj* >(pObj);
     492             : 
     493           0 :                 if(pPath)
     494             :                 {
     495           0 :                     const basegfx::B2DPolyPolygon aPathXPP = pPath->GetPathPoly();
     496             : 
     497           0 :                     if(aPathXPP.count())
     498             :                     {
     499           0 :                         for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it)
     500             :                         {
     501             :                             sal_uInt32 nPolyNum, nPointNum;
     502           0 :                             const sal_uInt16 nObjPt = *it;
     503             : 
     504           0 :                             if(sdr::PolyPolygonEditor::GetRelativePolyPoint(aPathXPP, nObjPt, nPolyNum, nPointNum))
     505             :                             {
     506           0 :                                 aPositions.push_back(aPathXPP.getB2DPolygon(nPolyNum).getB2DPoint(nPointNum));
     507             :                             }
     508             :                         }
     509           0 :                     }
     510             :                 }
     511             :             }
     512             :         }
     513             :     }
     514             : 
     515           0 :     if(!aPositions.empty())
     516             :     {
     517           0 :         addSdrDragEntry(new SdrDragEntryPointGlueDrag(aPositions, true));
     518           0 :     }
     519           0 : }
     520             : 
     521           0 : void SdrDragMethod::createSdrDragEntries_GlueDrag()
     522             : {
     523           0 :     const size_t nMarkAnz(getSdrDragView().GetMarkedObjectCount());
     524           0 :     std::vector< basegfx::B2DPoint > aPositions;
     525             : 
     526           0 :     for(size_t nm = 0; nm < nMarkAnz; ++nm)
     527             :     {
     528           0 :         SdrMark* pM = getSdrDragView().GetSdrMarkByIndex(nm);
     529             : 
     530           0 :         if(pM->GetPageView() == getSdrDragView().GetSdrPageView())
     531             :         {
     532           0 :             const SdrUShortCont* pPts = pM->GetMarkedGluePoints();
     533             : 
     534           0 :             if(pPts && !pPts->empty())
     535             :             {
     536           0 :                 const SdrObject* pObj = pM->GetMarkedSdrObj();
     537           0 :                 const SdrGluePointList* pGPL = pObj->GetGluePointList();
     538             : 
     539           0 :                 if(pGPL)
     540             :                 {
     541           0 :                     for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it)
     542             :                     {
     543           0 :                         const sal_uInt16 nObjPt = *it;
     544           0 :                         const sal_uInt16 nGlueNum(pGPL->FindGluePoint(nObjPt));
     545             : 
     546           0 :                         if(SDRGLUEPOINT_NOTFOUND != nGlueNum)
     547             :                         {
     548           0 :                             const Point aPoint((*pGPL)[nGlueNum].GetAbsolutePos(*pObj));
     549           0 :                             aPositions.push_back(basegfx::B2DPoint(aPoint.X(), aPoint.Y()));
     550             :                         }
     551             :                     }
     552             :                 }
     553             :             }
     554             :         }
     555             :     }
     556             : 
     557           0 :     if(!aPositions.empty())
     558             :     {
     559           0 :         addSdrDragEntry(new SdrDragEntryPointGlueDrag(aPositions, false));
     560           0 :     }
     561           0 : }
     562             : 
     563           0 : void SdrDragMethod::ImpTakeDescriptionStr(sal_uInt16 nStrCacheID, OUString& rStr, sal_uInt16 nVal) const
     564             : {
     565           0 :     sal_uInt16 nOpt=0;
     566           0 :     if (IsDraggingPoints()) {
     567           0 :         nOpt=IMPSDR_POINTSDESCRIPTION;
     568           0 :     } else if (IsDraggingGluePoints()) {
     569           0 :         nOpt=IMPSDR_GLUEPOINTSDESCRIPTION;
     570             :     }
     571           0 :     getSdrDragView().ImpTakeDescriptionStr(nStrCacheID,rStr,nVal,nOpt);
     572           0 : }
     573             : 
     574           0 : SdrObject* SdrDragMethod::GetDragObj() const
     575             : {
     576           0 :     SdrObject* pObj=NULL;
     577           0 :     if (getSdrDragView().pDragHdl!=NULL) pObj=getSdrDragView().pDragHdl->GetObj();
     578           0 :     if (pObj==NULL) pObj=getSdrDragView().pMarkedObj;
     579           0 :     return pObj;
     580             : }
     581             : 
     582           0 : SdrPageView* SdrDragMethod::GetDragPV() const
     583             : {
     584           0 :     SdrPageView* pPV=NULL;
     585           0 :     if (getSdrDragView().pDragHdl!=NULL) pPV=getSdrDragView().pDragHdl->GetPageView();
     586           0 :     if (pPV==NULL) pPV=getSdrDragView().pMarkedPV;
     587           0 :     return pPV;
     588             : }
     589             : 
     590           0 : void SdrDragMethod::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
     591             : {
     592             :     // the original applies the transformation using TRGetBaseGeometry/TRSetBaseGeometry.
     593             :     // Later this should be the only needed one for linear transforms (not for SdrDragCrook and
     594             :     // SdrDragDistort, those are NOT linear). Currently, this can not yet be used since the
     595             :     // special handling of rotate/mirror due to the not-being-able to handle it in the old
     596             :     // drawinglayer stuff. Text would currently not correctly be mirrored in the preview.
     597           0 :     basegfx::B2DHomMatrix aObjectTransform;
     598           0 :     basegfx::B2DPolyPolygon aObjectPolyPolygon;
     599           0 :     bool bPolyUsed(rTarget.TRGetBaseGeometry(aObjectTransform, aObjectPolyPolygon));
     600             : 
     601             :     // apply transform to object transform
     602           0 :     aObjectTransform *= getCurrentTransformation();
     603             : 
     604           0 :     if(bPolyUsed)
     605             :     {
     606             :         // do something special since the object size is in the polygon
     607             :         // break up matrix to get the scale
     608           0 :         basegfx::B2DTuple aScale;
     609           0 :         basegfx::B2DTuple aTranslate;
     610             :         double fRotate, fShearX;
     611           0 :         aObjectTransform.decompose(aScale, aTranslate, fRotate, fShearX);
     612             : 
     613             :         // get polygon's position and size
     614           0 :         const basegfx::B2DRange aPolyRange(aObjectPolyPolygon.getB2DRange());
     615             : 
     616             :         // get the scaling factors (do not mirror, this is in the object transformation)
     617           0 :         const double fScaleX(fabs(aScale.getX()) / (basegfx::fTools::equalZero(aPolyRange.getWidth()) ? 1.0 : aPolyRange.getWidth()));
     618           0 :         const double fScaleY(fabs(aScale.getY()) / (basegfx::fTools::equalZero(aPolyRange.getHeight()) ? 1.0 : aPolyRange.getHeight()));
     619             : 
     620             :         // prepare transform matrix for polygon
     621             :         basegfx::B2DHomMatrix aPolyTransform(basegfx::tools::createTranslateB2DHomMatrix(
     622           0 :             -aPolyRange.getMinX(), -aPolyRange.getMinY()));
     623           0 :         aPolyTransform.scale(fScaleX, fScaleY);
     624             : 
     625             :         // transform the polygon
     626           0 :         aObjectPolyPolygon.transform(aPolyTransform);
     627             :     }
     628             : 
     629           0 :     rTarget.TRSetBaseGeometry(getCurrentTransformation() * aObjectTransform, aObjectPolyPolygon);
     630           0 : }
     631             : 
     632           0 : void SdrDragMethod::applyCurrentTransformationToPolyPolygon(basegfx::B2DPolyPolygon& rTarget)
     633             : {
     634             :     // original uses CurrentTransformation
     635           0 :     rTarget.transform(getCurrentTransformation());
     636           0 : }
     637             : 
     638           0 : SdrDragMethod::SdrDragMethod(SdrDragView& rNewView)
     639             : :   maSdrDragEntries(),
     640             :     maOverlayObjectList(),
     641             :     mrSdrDragView(rNewView),
     642             :     mbMoveOnly(false),
     643           0 :     mbSolidDraggingActive(getSdrDragView().IsSolidDragging()),
     644           0 :     mbShiftPressed(false)
     645             : {
     646           0 :     if(mbSolidDraggingActive && Application::GetSettings().GetStyleSettings().GetHighContrastMode())
     647             :     {
     648             :         // fallback to wireframe when high contrast is used
     649           0 :         mbSolidDraggingActive = false;
     650             :     }
     651           0 : }
     652             : 
     653           0 : SdrDragMethod::~SdrDragMethod()
     654             : {
     655           0 :     clearSdrDragEntries();
     656           0 : }
     657             : 
     658           0 : void SdrDragMethod::Show()
     659             : {
     660           0 :     getSdrDragView().ShowDragObj();
     661           0 : }
     662             : 
     663           0 : void SdrDragMethod::Hide()
     664             : {
     665           0 :     getSdrDragView().HideDragObj();
     666           0 : }
     667             : 
     668           0 : basegfx::B2DHomMatrix SdrDragMethod::getCurrentTransformation()
     669             : {
     670           0 :     return basegfx::B2DHomMatrix();
     671             : }
     672             : 
     673           0 : void SdrDragMethod::CancelSdrDrag()
     674             : {
     675           0 :     Hide();
     676           0 : }
     677             : 
     678             : struct compareConstSdrObjectRefs
     679             : {
     680           0 :     bool operator()(const SdrObject* p1, const SdrObject* p2) const
     681             :     {
     682           0 :         return (p1 < p2);
     683             :     }
     684             : };
     685             : 
     686             : typedef std::map< const SdrObject*, SdrObject*, compareConstSdrObjectRefs> SdrObjectAndCloneMap;
     687             : 
     688           0 : void SdrDragMethod::CreateOverlayGeometry(sdr::overlay::OverlayManager& rOverlayManager)
     689             : {
     690             :     // create SdrDragEntries on demand
     691           0 :     if(maSdrDragEntries.empty())
     692             :     {
     693           0 :         createSdrDragEntries();
     694             :     }
     695             : 
     696             :     // if there are entries, derive OverlayObjects from the entries, including
     697             :     // modification from current interactive state
     698           0 :     if(!maSdrDragEntries.empty())
     699             :     {
     700             :         // #i54102# SdrDragEntrySdrObject creates clones of SdrObjects as base for creating the needed
     701             :         // primitives, holding the original and the clone. If connectors (Edges) are involved,
     702             :         // the cloned connectors need to be connected to the cloned SdrObjects (after cloning
     703             :         // they are connected to the original SdrObjects). To do so, trigger the preparation
     704             :         // steps for SdrDragEntrySdrObject, save an association of (orig, clone) in a helper
     705             :         // and evtl. remember if it was an edge
     706           0 :         SdrObjectAndCloneMap aOriginalAndClones;
     707           0 :         std::vector< SdrEdgeObj* > aEdges;
     708             :         sal_uInt32 a;
     709             : 
     710             :         // #i54102# execute prepareCurrentState for all SdrDragEntrySdrObject, register pair of original and
     711             :         // clone, remember edges
     712           0 :         for(a = 0; a < maSdrDragEntries.size(); a++)
     713             :         {
     714           0 :             SdrDragEntrySdrObject* pSdrDragEntrySdrObject = dynamic_cast< SdrDragEntrySdrObject*>(maSdrDragEntries[a]);
     715             : 
     716           0 :             if(pSdrDragEntrySdrObject)
     717             :             {
     718           0 :                 pSdrDragEntrySdrObject->prepareCurrentState(*this);
     719             : 
     720           0 :                 SdrEdgeObj* pSdrEdgeObj = dynamic_cast< SdrEdgeObj* >(pSdrDragEntrySdrObject->getClone());
     721             : 
     722           0 :                 if(pSdrEdgeObj)
     723             :                 {
     724           0 :                     aEdges.push_back(pSdrEdgeObj);
     725             :                 }
     726             : 
     727           0 :                 if(pSdrDragEntrySdrObject->getClone())
     728             :                 {
     729           0 :                     aOriginalAndClones[&pSdrDragEntrySdrObject->getOriginal()] = pSdrDragEntrySdrObject->getClone();
     730             :                 }
     731             :             }
     732             :         }
     733             : 
     734             :         // #i54102# if there are edges, reconnect their ends to the corresponding clones (if found)
     735           0 :         if(aEdges.size())
     736             :         {
     737           0 :             for(a = 0; a < aEdges.size(); a++)
     738             :             {
     739           0 :                 SdrEdgeObj* pSdrEdgeObj = aEdges[a];
     740           0 :                 SdrObject* pConnectedTo = pSdrEdgeObj->GetConnectedNode(true);
     741             : 
     742           0 :                 if(pConnectedTo)
     743             :                 {
     744           0 :                     SdrObjectAndCloneMap::iterator aEntry = aOriginalAndClones.find(pConnectedTo);
     745             : 
     746           0 :                     if(aEntry != aOriginalAndClones.end())
     747             :                     {
     748           0 :                         pSdrEdgeObj->ConnectToNode(true, aEntry->second);
     749             :                     }
     750             :                 }
     751             : 
     752           0 :                 pConnectedTo = pSdrEdgeObj->GetConnectedNode(false);
     753             : 
     754           0 :                 if(pConnectedTo)
     755             :                 {
     756           0 :                     SdrObjectAndCloneMap::iterator aEntry = aOriginalAndClones.find(pConnectedTo);
     757             : 
     758           0 :                     if(aEntry != aOriginalAndClones.end())
     759             :                     {
     760           0 :                         pSdrEdgeObj->ConnectToNode(false, aEntry->second);
     761             :                     }
     762             :                 }
     763             :             }
     764             :         }
     765             : 
     766             :         // collect primitives for visualisation
     767           0 :         drawinglayer::primitive2d::Primitive2DSequence aResult;
     768           0 :         drawinglayer::primitive2d::Primitive2DSequence aResultTransparent;
     769             : 
     770           0 :         for(a = 0; a < maSdrDragEntries.size(); a++)
     771             :         {
     772           0 :             SdrDragEntry* pCandidate = maSdrDragEntries[a];
     773             : 
     774           0 :             if(pCandidate)
     775             :             {
     776           0 :                 const drawinglayer::primitive2d::Primitive2DSequence aCandidateResult(pCandidate->createPrimitive2DSequenceInCurrentState(*this));
     777             : 
     778           0 :                 if(aCandidateResult.hasElements())
     779             :                 {
     780           0 :                     if(pCandidate->getAddToTransparent())
     781             :                     {
     782           0 :                         drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(aResultTransparent, aCandidateResult);
     783             :                     }
     784             :                     else
     785             :                     {
     786           0 :                         drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(aResult, aCandidateResult);
     787             :                     }
     788           0 :                 }
     789             :             }
     790             :         }
     791             : 
     792           0 :         if(DoAddConnectorOverlays())
     793             :         {
     794           0 :             const drawinglayer::primitive2d::Primitive2DSequence aConnectorOverlays(AddConnectorOverlays());
     795             : 
     796           0 :             if(aConnectorOverlays.hasElements())
     797             :             {
     798             :                 // add connector overlays to transparent part
     799           0 :                 drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(aResultTransparent, aConnectorOverlays);
     800           0 :             }
     801             :         }
     802             : 
     803           0 :         if(aResult.hasElements())
     804             :         {
     805           0 :             sdr::overlay::OverlayObject* pNewOverlayObject = new sdr::overlay::OverlayPrimitive2DSequenceObject(aResult);
     806           0 :             rOverlayManager.add(*pNewOverlayObject);
     807           0 :             addToOverlayObjectList(*pNewOverlayObject);
     808             :         }
     809             : 
     810           0 :         if(aResultTransparent.hasElements())
     811             :         {
     812           0 :             drawinglayer::primitive2d::Primitive2DReference aUnifiedTransparencePrimitive2D(new drawinglayer::primitive2d::UnifiedTransparencePrimitive2D(aResultTransparent, 0.5));
     813           0 :             aResultTransparent = drawinglayer::primitive2d::Primitive2DSequence(&aUnifiedTransparencePrimitive2D, 1);
     814             : 
     815           0 :             sdr::overlay::OverlayObject* pNewOverlayObject = new sdr::overlay::OverlayPrimitive2DSequenceObject(aResultTransparent);
     816           0 :             rOverlayManager.add(*pNewOverlayObject);
     817           0 :             addToOverlayObjectList(*pNewOverlayObject);
     818           0 :         }
     819             :     }
     820             : 
     821             :     // add DragStripes if necessary (help lines cross the page when dragging)
     822           0 :     if(getSdrDragView().IsDragStripes())
     823             :     {
     824           0 :         Rectangle aActionRectangle;
     825           0 :         getSdrDragView().TakeActionRect(aActionRectangle);
     826             : 
     827           0 :         const basegfx::B2DPoint aTopLeft(aActionRectangle.Left(), aActionRectangle.Top());
     828           0 :         const basegfx::B2DPoint aBottomRight(aActionRectangle.Right(), aActionRectangle.Bottom());
     829             :         sdr::overlay::OverlayRollingRectangleStriped* pNew = new sdr::overlay::OverlayRollingRectangleStriped(
     830           0 :             aTopLeft, aBottomRight, true, false);
     831             : 
     832           0 :         rOverlayManager.add(*pNew);
     833           0 :         addToOverlayObjectList(*pNew);
     834             :     }
     835           0 : }
     836             : 
     837           0 : void SdrDragMethod::destroyOverlayGeometry()
     838             : {
     839           0 :     clearOverlayObjectList();
     840           0 : }
     841             : 
     842           0 : bool SdrDragMethod::DoAddConnectorOverlays()
     843             : {
     844             :     // these conditions are translated from SdrDragView::ImpDrawEdgeXor
     845           0 :     const SdrMarkList& rMarkedNodes = getSdrDragView().GetEdgesOfMarkedNodes();
     846             : 
     847           0 :     if(!rMarkedNodes.GetMarkCount())
     848             :     {
     849           0 :         return false;
     850             :     }
     851             : 
     852           0 :     if(!getSdrDragView().IsRubberEdgeDragging() && !getSdrDragView().IsDetailedEdgeDragging())
     853             :     {
     854           0 :         return false;
     855             :     }
     856             : 
     857           0 :     if(getSdrDragView().IsDraggingPoints() || getSdrDragView().IsDraggingGluePoints())
     858             :     {
     859           0 :         return false;
     860             :     }
     861             : 
     862           0 :     if(!getMoveOnly() && !(
     863           0 :         IS_TYPE(SdrDragMove, this) || IS_TYPE(SdrDragResize, this) ||
     864           0 :         IS_TYPE(SdrDragRotate,this) || IS_TYPE(SdrDragMirror,this)))
     865             :     {
     866           0 :         return false;
     867             :     }
     868             : 
     869           0 :     const bool bDetail(getSdrDragView().IsDetailedEdgeDragging() && getMoveOnly());
     870             : 
     871           0 :     if(!bDetail && !getSdrDragView().IsRubberEdgeDragging())
     872             :     {
     873           0 :         return false;
     874             :     }
     875             : 
     876             :     // one more migrated from SdrEdgeObj::NspToggleEdgeXor
     877           0 :     if(IS_TYPE(SdrDragObjOwn, this) || IS_TYPE(SdrDragMovHdl, this))
     878             :     {
     879           0 :         return false;
     880             :     }
     881             : 
     882           0 :     return true;
     883             : }
     884             : 
     885           0 : drawinglayer::primitive2d::Primitive2DSequence SdrDragMethod::AddConnectorOverlays()
     886             : {
     887           0 :     drawinglayer::primitive2d::Primitive2DSequence aRetval;
     888           0 :     const bool bDetail(getSdrDragView().IsDetailedEdgeDragging() && getMoveOnly());
     889           0 :     const SdrMarkList& rMarkedNodes = getSdrDragView().GetEdgesOfMarkedNodes();
     890             : 
     891           0 :     for(size_t a = 0; a < rMarkedNodes.GetMarkCount(); ++a)
     892             :     {
     893           0 :         SdrMark* pEM = rMarkedNodes.GetMark(a);
     894             : 
     895           0 :         if(pEM && pEM->GetMarkedSdrObj())
     896             :         {
     897           0 :             SdrEdgeObj* pEdge = dynamic_cast< SdrEdgeObj* >(pEM->GetMarkedSdrObj());
     898             : 
     899           0 :             if(pEdge)
     900             :             {
     901           0 :                 const basegfx::B2DPolygon aEdgePolygon(pEdge->ImplAddConnectorOverlay(*this, pEM->IsCon1(), pEM->IsCon2(), bDetail));
     902             : 
     903           0 :                 if(aEdgePolygon.count())
     904             :                 {
     905             :                     // this polygon is a temporary calculated connector path, so it is not possible to fetch
     906             :                     // the needed primitives directly from the pEdge object which does not get changed. If full
     907             :                     // drag is on, use the SdrObjects ItemSet to create a adequate representation
     908           0 :                     bool bUseSolidDragging(getSolidDraggingActive());
     909             : 
     910           0 :                     if(bUseSolidDragging)
     911             :                     {
     912             :                         // switch off solid dragging if connector is not visible
     913           0 :                         if(!pEdge->HasLineStyle())
     914             :                         {
     915           0 :                             bUseSolidDragging = false;
     916             :                         }
     917             :                     }
     918             : 
     919           0 :                     if(bUseSolidDragging)
     920             :                     {
     921           0 :                         const SfxItemSet& rItemSet = pEdge->GetMergedItemSet();
     922             :                         const drawinglayer::attribute::SdrLineAttribute aLine(
     923           0 :                             drawinglayer::primitive2d::createNewSdrLineAttribute(rItemSet));
     924             : 
     925           0 :                         if(!aLine.isDefault())
     926             :                         {
     927             :                             const drawinglayer::attribute::SdrLineStartEndAttribute aLineStartEnd(
     928             :                                 drawinglayer::primitive2d::createNewSdrLineStartEndAttribute(
     929             :                                     rItemSet,
     930           0 :                                     aLine.getWidth()));
     931             : 
     932             :                             drawinglayer::primitive2d::appendPrimitive2DReferenceToPrimitive2DSequence(
     933             :                                 aRetval, drawinglayer::primitive2d::createPolygonLinePrimitive(
     934             :                                     aEdgePolygon,
     935             :                                     aLine,
     936           0 :                                     aLineStartEnd));
     937           0 :                         }
     938             :                     }
     939             :                     else
     940             :                     {
     941           0 :                         const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer;
     942           0 :                         basegfx::BColor aColA(aSvtOptionsDrawinglayer.GetStripeColorA().getBColor());
     943           0 :                         basegfx::BColor aColB(aSvtOptionsDrawinglayer.GetStripeColorB().getBColor());
     944           0 :                         const double fStripeLength(aSvtOptionsDrawinglayer.GetStripeLength());
     945             : 
     946           0 :                         if(Application::GetSettings().GetStyleSettings().GetHighContrastMode())
     947             :                         {
     948           0 :                             aColA = aColB = Application::GetSettings().GetStyleSettings().GetHighlightColor().getBColor();
     949           0 :                             aColB.invert();
     950             :                         }
     951             : 
     952             :                         drawinglayer::primitive2d::Primitive2DReference aPolyPolygonMarkerPrimitive2D(
     953             :                             new drawinglayer::primitive2d::PolygonMarkerPrimitive2D(
     954           0 :                                 aEdgePolygon, aColA, aColB, fStripeLength));
     955           0 :                         drawinglayer::primitive2d::appendPrimitive2DReferenceToPrimitive2DSequence(aRetval, aPolyPolygonMarkerPrimitive2D);
     956             :                     }
     957           0 :                 }
     958             :             }
     959             :         }
     960             :     }
     961             : 
     962           0 :     return aRetval;
     963             : }
     964             : 
     965             : 
     966             : 
     967           0 : TYPEINIT1(SdrDragMovHdl,SdrDragMethod);
     968             : 
     969           0 : SdrDragMovHdl::SdrDragMovHdl(SdrDragView& rNewView)
     970           0 : :   SdrDragMethod(rNewView)
     971             : {
     972           0 : }
     973             : 
     974           0 : void SdrDragMovHdl::createSdrDragEntries()
     975             : {
     976             :     // SdrDragMovHdl does not use the default drags,
     977             :     // but creates nothing
     978           0 : }
     979             : 
     980           0 : void SdrDragMovHdl::TakeSdrDragComment(OUString& rStr) const
     981             : {
     982           0 :     rStr=ImpGetResStr(STR_DragMethMovHdl);
     983           0 :     if (getSdrDragView().IsDragWithCopy()) rStr+=ImpGetResStr(STR_EditWithCopy);
     984           0 : }
     985             : 
     986           0 : bool SdrDragMovHdl::BeginSdrDrag()
     987             : {
     988           0 :     if( !GetDragHdl() )
     989           0 :         return false;
     990             : 
     991           0 :     DragStat().Ref1()=GetDragHdl()->GetPos();
     992           0 :     DragStat().SetShown(!DragStat().IsShown());
     993           0 :     SdrHdlKind eKind=GetDragHdl()->GetKind();
     994           0 :     SdrHdl* pH1=GetHdlList().GetHdl(HDL_REF1);
     995           0 :     SdrHdl* pH2=GetHdlList().GetHdl(HDL_REF2);
     996             : 
     997           0 :     if (eKind==HDL_MIRX)
     998             :     {
     999           0 :         if (pH1==NULL || pH2==NULL)
    1000             :         {
    1001             :             OSL_FAIL("SdrDragMovHdl::BeginSdrDrag(): Moving the axis of reflection: reference handles not found.");
    1002           0 :             return false;
    1003             :         }
    1004             : 
    1005           0 :         DragStat().SetActionRect(Rectangle(pH1->GetPos(),pH2->GetPos()));
    1006             :     }
    1007             :     else
    1008             :     {
    1009           0 :         Point aPt(GetDragHdl()->GetPos());
    1010           0 :         DragStat().SetActionRect(Rectangle(aPt,aPt));
    1011             :     }
    1012             : 
    1013           0 :     return true;
    1014             : }
    1015             : 
    1016           0 : void SdrDragMovHdl::MoveSdrDrag(const Point& rNoSnapPnt)
    1017             : {
    1018           0 :     Point aPnt(rNoSnapPnt);
    1019             : 
    1020           0 :     if ( GetDragHdl() && DragStat().CheckMinMoved(rNoSnapPnt))
    1021             :     {
    1022           0 :         if (GetDragHdl()->GetKind()==HDL_MIRX)
    1023             :         {
    1024           0 :             SdrHdl* pH1=GetHdlList().GetHdl(HDL_REF1);
    1025           0 :             SdrHdl* pH2=GetHdlList().GetHdl(HDL_REF2);
    1026             : 
    1027           0 :             if (pH1==NULL || pH2==NULL)
    1028           0 :                 return;
    1029             : 
    1030           0 :             if (!DragStat().IsNoSnap())
    1031             :             {
    1032           0 :                 long nBestXSnap=0;
    1033           0 :                 long nBestYSnap=0;
    1034           0 :                 bool bXSnapped=false;
    1035           0 :                 bool bYSnapped=false;
    1036           0 :                 Point aDif(aPnt-DragStat().GetStart());
    1037           0 :                 getSdrDragView().CheckSnap(Ref1()+aDif,NULL,nBestXSnap,nBestYSnap,bXSnapped,bYSnapped);
    1038           0 :                 getSdrDragView().CheckSnap(Ref2()+aDif,NULL,nBestXSnap,nBestYSnap,bXSnapped,bYSnapped);
    1039           0 :                 aPnt.X()+=nBestXSnap;
    1040           0 :                 aPnt.Y()+=nBestYSnap;
    1041             :             }
    1042             : 
    1043           0 :             if (aPnt!=DragStat().GetNow())
    1044             :             {
    1045           0 :                 Hide();
    1046           0 :                 DragStat().NextMove(aPnt);
    1047           0 :                 Point aDif(DragStat().GetNow()-DragStat().GetStart());
    1048           0 :                 pH1->SetPos(Ref1()+aDif);
    1049           0 :                 pH2->SetPos(Ref2()+aDif);
    1050             : 
    1051           0 :                 SdrHdl* pHM = GetHdlList().GetHdl(HDL_MIRX);
    1052             : 
    1053           0 :                 if(pHM)
    1054           0 :                     pHM->Touch();
    1055             : 
    1056           0 :                 Show();
    1057           0 :                 DragStat().SetActionRect(Rectangle(pH1->GetPos(),pH2->GetPos()));
    1058             :             }
    1059             :         }
    1060             :         else
    1061             :         {
    1062           0 :             if (!DragStat().IsNoSnap()) SnapPos(aPnt);
    1063           0 :             long nSA=0;
    1064             : 
    1065           0 :             if (getSdrDragView().IsAngleSnapEnabled())
    1066           0 :                 nSA=getSdrDragView().GetSnapAngle();
    1067             : 
    1068           0 :             if (getSdrDragView().IsMirrorAllowed(true,true))
    1069             :             { // limited
    1070           0 :                 if (!getSdrDragView().IsMirrorAllowed(false,false)) nSA=4500;
    1071           0 :                 if (!getSdrDragView().IsMirrorAllowed(true,false)) nSA=9000;
    1072             :             }
    1073             : 
    1074           0 :             if (getSdrDragView().IsOrtho() && nSA!=9000)
    1075           0 :                 nSA=4500;
    1076             : 
    1077           0 :             if (nSA!=0)
    1078             :             { // angle snapping
    1079           0 :                 SdrHdlKind eRef=HDL_REF1;
    1080             : 
    1081           0 :                 if (GetDragHdl()->GetKind()==HDL_REF1)
    1082           0 :                     eRef=HDL_REF2;
    1083             : 
    1084           0 :                 SdrHdl* pH=GetHdlList().GetHdl(eRef);
    1085             : 
    1086           0 :                 if (pH!=NULL)
    1087             :                 {
    1088           0 :                     Point aRef(pH->GetPos());
    1089           0 :                     long nWink=NormAngle360(GetAngle(aPnt-aRef));
    1090           0 :                     long nNeuWink=nWink;
    1091           0 :                     nNeuWink+=nSA/2;
    1092           0 :                     nNeuWink/=nSA;
    1093           0 :                     nNeuWink*=nSA;
    1094           0 :                     nNeuWink=NormAngle360(nNeuWink);
    1095           0 :                     double a=(nNeuWink-nWink)*nPi180;
    1096           0 :                     double nSin=sin(a);
    1097           0 :                     double nCos=cos(a);
    1098           0 :                     RotatePoint(aPnt,aRef,nSin,nCos);
    1099             : 
    1100             :                     // eliminate rounding errors for certain values
    1101           0 :                     if (nSA==9000)
    1102             :                     {
    1103           0 :                         if (nNeuWink==0    || nNeuWink==18000) aPnt.Y()=aRef.Y();
    1104           0 :                         if (nNeuWink==9000 || nNeuWink==27000) aPnt.X()=aRef.X();
    1105             :                     }
    1106             : 
    1107           0 :                     if (nSA==4500)
    1108           0 :                         OrthoDistance8(aRef,aPnt,true);
    1109             :                 }
    1110             :             }
    1111             : 
    1112           0 :             if (aPnt!=DragStat().GetNow())
    1113             :             {
    1114           0 :                 Hide();
    1115           0 :                 DragStat().NextMove(aPnt);
    1116           0 :                 GetDragHdl()->SetPos(DragStat().GetNow());
    1117           0 :                 SdrHdl* pHM = GetHdlList().GetHdl(HDL_MIRX);
    1118             : 
    1119           0 :                 if(pHM)
    1120           0 :                     pHM->Touch();
    1121             : 
    1122           0 :                 Show();
    1123           0 :                 DragStat().SetActionRect(Rectangle(aPnt,aPnt));
    1124             :             }
    1125             :         }
    1126             :     }
    1127             : }
    1128             : 
    1129           0 : bool SdrDragMovHdl::EndSdrDrag(bool /*bCopy*/)
    1130             : {
    1131           0 :     if( GetDragHdl() )
    1132             :     {
    1133           0 :         switch (GetDragHdl()->GetKind())
    1134             :         {
    1135             :             case HDL_REF1:
    1136           0 :                 Ref1()=DragStat().GetNow();
    1137           0 :                 break;
    1138             : 
    1139             :             case HDL_REF2:
    1140           0 :                 Ref2()=DragStat().GetNow();
    1141           0 :                 break;
    1142             : 
    1143             :             case HDL_MIRX:
    1144           0 :                 Ref1()+=DragStat().GetNow()-DragStat().GetStart();
    1145           0 :                 Ref2()+=DragStat().GetNow()-DragStat().GetStart();
    1146           0 :                 break;
    1147             : 
    1148           0 :             default: break;
    1149             :         }
    1150             :     }
    1151             : 
    1152           0 :     return true;
    1153             : }
    1154             : 
    1155           0 : void SdrDragMovHdl::CancelSdrDrag()
    1156             : {
    1157           0 :     Hide();
    1158             : 
    1159           0 :     SdrHdl* pHdl = GetDragHdl();
    1160           0 :     if( pHdl )
    1161           0 :         pHdl->SetPos(DragStat().GetRef1());
    1162             : 
    1163           0 :     SdrHdl* pHM = GetHdlList().GetHdl(HDL_MIRX);
    1164             : 
    1165           0 :     if(pHM)
    1166           0 :         pHM->Touch();
    1167           0 : }
    1168             : 
    1169           0 : Pointer SdrDragMovHdl::GetSdrDragPointer() const
    1170             : {
    1171           0 :     const SdrHdl* pHdl = GetDragHdl();
    1172             : 
    1173           0 :     if (pHdl!=NULL)
    1174             :     {
    1175           0 :         return pHdl->GetPointer();
    1176             :     }
    1177             : 
    1178           0 :     return Pointer(POINTER_REFHAND);
    1179             : }
    1180             : 
    1181             : 
    1182             : 
    1183           0 : TYPEINIT1(SdrDragObjOwn,SdrDragMethod);
    1184             : 
    1185           0 : SdrDragObjOwn::SdrDragObjOwn(SdrDragView& rNewView)
    1186             : :   SdrDragMethod(rNewView),
    1187           0 :     mpClone(0)
    1188             : {
    1189           0 :     const SdrObject* pObj = GetDragObj();
    1190             : 
    1191           0 :     if(pObj)
    1192             :     {
    1193             :         // suppress full drag for some object types
    1194           0 :         setSolidDraggingActive(pObj->supportsFullDrag());
    1195             :     }
    1196           0 : }
    1197             : 
    1198           0 : SdrDragObjOwn::~SdrDragObjOwn()
    1199             : {
    1200           0 :     if(mpClone)
    1201             :     {
    1202           0 :         SdrObject::Free(mpClone);
    1203             :     }
    1204           0 : }
    1205             : 
    1206           0 : void SdrDragObjOwn::createSdrDragEntries()
    1207             : {
    1208           0 :     if(mpClone)
    1209             :     {
    1210           0 :         basegfx::B2DPolyPolygon aDragPolyPolygon;
    1211           0 :         bool bAddWireframe(true);
    1212             : 
    1213           0 :         if(getSolidDraggingActive())
    1214             :         {
    1215           0 :             SdrPageView* pPV = getSdrDragView().GetSdrPageView();
    1216             : 
    1217           0 :             if(pPV && pPV->PageWindowCount())
    1218             :             {
    1219           0 :                 sdr::contact::ObjectContact& rOC = pPV->GetPageWindow(0)->GetObjectContact();
    1220           0 :                 addSdrDragEntry(new SdrDragEntrySdrObject(*mpClone, rOC, false));
    1221             : 
    1222             :                 // potentially no wireframe needed, full drag works
    1223           0 :                 bAddWireframe = false;
    1224             :             }
    1225             :         }
    1226             : 
    1227           0 :         if(!bAddWireframe)
    1228             :         {
    1229             :             // check for extra conditions for wireframe, e.g. no border at
    1230             :             // objects
    1231           0 :             if(!mpClone->HasLineStyle())
    1232             :             {
    1233           0 :                 bAddWireframe = true;
    1234             :             }
    1235             :         }
    1236             : 
    1237           0 :         if(bAddWireframe)
    1238             :         {
    1239             :             // use wireframe poly when full drag is off or did not work
    1240           0 :             aDragPolyPolygon = mpClone->TakeXorPoly();
    1241             :         }
    1242             : 
    1243             :         // add evtl. extra DragPolyPolygon
    1244           0 :         const basegfx::B2DPolyPolygon aSpecialDragPolyPolygon(mpClone->getSpecialDragPoly(DragStat()));
    1245             : 
    1246           0 :         if(aSpecialDragPolyPolygon.count())
    1247             :         {
    1248           0 :             aDragPolyPolygon.append(aSpecialDragPolyPolygon);
    1249             :         }
    1250             : 
    1251           0 :         if(aDragPolyPolygon.count())
    1252             :         {
    1253           0 :             addSdrDragEntry(new SdrDragEntryPolyPolygon(aDragPolyPolygon));
    1254           0 :         }
    1255             :     }
    1256           0 : }
    1257             : 
    1258           0 : void SdrDragObjOwn::TakeSdrDragComment(OUString& rStr) const
    1259             : {
    1260             :     // #i103058# get info string from the clone preferred, the original will
    1261             :     // not be changed. For security, use original as fallback
    1262           0 :     if(mpClone)
    1263             :     {
    1264           0 :         rStr = mpClone->getSpecialDragComment(DragStat());
    1265             :     }
    1266             :     else
    1267             :     {
    1268           0 :         const SdrObject* pObj = GetDragObj();
    1269             : 
    1270           0 :         if(pObj)
    1271             :         {
    1272           0 :             rStr = pObj->getSpecialDragComment(DragStat());
    1273             :         }
    1274             :     }
    1275           0 : }
    1276             : 
    1277           0 : bool SdrDragObjOwn::BeginSdrDrag()
    1278             : {
    1279           0 :     if(!mpClone)
    1280             :     {
    1281           0 :         const SdrObject* pObj = GetDragObj();
    1282             : 
    1283           0 :         if(pObj && !pObj->IsResizeProtect())
    1284             :         {
    1285           0 :             if(pObj->beginSpecialDrag(DragStat()))
    1286             :             {
    1287             :                 // create initial clone to have a start visualization
    1288           0 :                 mpClone = pObj->getFullDragClone();
    1289           0 :                 mpClone->applySpecialDrag(DragStat());
    1290             : 
    1291           0 :                 return true;
    1292             :             }
    1293             :         }
    1294             :     }
    1295             : 
    1296           0 :     return false;
    1297             : }
    1298             : 
    1299           0 : void SdrDragObjOwn::MoveSdrDrag(const Point& rNoSnapPnt)
    1300             : {
    1301           0 :     const SdrObject* pObj = GetDragObj();
    1302             : 
    1303           0 :     if (!pObj)
    1304             :         // No object to drag.  Bail out.
    1305           0 :         return;
    1306             : 
    1307           0 :     Point aPnt(rNoSnapPnt);
    1308           0 :     SdrPageView* pPV = GetDragPV();
    1309             : 
    1310           0 :     if (!pPV)
    1311             :         // No page view available.  Bail out.
    1312           0 :         return;
    1313             : 
    1314           0 :     if(!DragStat().IsNoSnap())
    1315             :     {
    1316           0 :         SnapPos(aPnt);
    1317             :     }
    1318             : 
    1319           0 :     if(getSdrDragView().IsOrtho())
    1320             :     {
    1321           0 :         if (DragStat().IsOrtho8Possible())
    1322             :         {
    1323           0 :             OrthoDistance8(DragStat().GetStart(),aPnt,getSdrDragView().IsBigOrtho());
    1324             :         }
    1325           0 :         else if (DragStat().IsOrtho4Possible())
    1326             :         {
    1327           0 :             OrthoDistance4(DragStat().GetStart(),aPnt,getSdrDragView().IsBigOrtho());
    1328             :         }
    1329             :     }
    1330             : 
    1331           0 :     if (!DragStat().CheckMinMoved(rNoSnapPnt))
    1332             :         // Not moved by the minimum threshold.  Nothing to do.
    1333           0 :         return;
    1334             : 
    1335           0 :     Hide();
    1336           0 :     DragStat().NextMove(aPnt);
    1337             : 
    1338             :     // since SdrDragObjOwn currently supports no transformation of
    1339             :     // existing SdrDragEntries but only their recreation, a recreation
    1340             :     // after every move is needed in this mode. Delete existing
    1341             :     // SdrDragEntries here  to force their recreation in the following Show().
    1342           0 :     clearSdrDragEntries();
    1343             : 
    1344             :     // delete current clone (after the last reference to it is deleted above)
    1345           0 :     if(mpClone)
    1346             :     {
    1347           0 :         SdrObject::Free(mpClone);
    1348           0 :         mpClone = 0;
    1349             :     }
    1350             : 
    1351             :     // create a new clone and modify to current drag state
    1352           0 :     mpClone = pObj->getFullDragClone();
    1353           0 :     mpClone->applySpecialDrag(DragStat());
    1354             : 
    1355             :     // #120999# AutoGrowWidth may change for SdrTextObj due to the automatism used
    1356             :     // with bDisableAutoWidthOnDragging, so not only geometry changes but
    1357             :     // also this (pretty indirect) property change is possible. If it gets
    1358             :     // changed, it needs to be copied to the original since nothing will
    1359             :     // happen when it only changes in the drag clone
    1360           0 :     const bool bOldAutoGrowWidth(static_cast<const SdrOnOffItem&>(pObj->GetMergedItem(SDRATTR_TEXT_AUTOGROWWIDTH)).GetValue());
    1361           0 :     const bool bNewAutoGrowWidth(static_cast<const SdrOnOffItem&>(mpClone->GetMergedItem(SDRATTR_TEXT_AUTOGROWWIDTH)).GetValue());
    1362             : 
    1363           0 :     if (bOldAutoGrowWidth != bNewAutoGrowWidth)
    1364             :     {
    1365           0 :         GetDragObj()->SetMergedItem(makeSdrTextAutoGrowWidthItem(bNewAutoGrowWidth));
    1366             :     }
    1367             : 
    1368           0 :     Show();
    1369             : }
    1370             : 
    1371           0 : bool SdrDragObjOwn::EndSdrDrag(bool /*bCopy*/)
    1372             : {
    1373           0 :     Hide();
    1374           0 :     std::vector< SdrUndoAction* > vConnectorUndoActions;
    1375           0 :     bool bRet = false;
    1376           0 :     SdrObject* pObj = GetDragObj();
    1377             : 
    1378           0 :     if(pObj)
    1379             :     {
    1380           0 :         SdrUndoAction* pUndo = NULL;
    1381           0 :         SdrUndoAction* pUndo2 = NULL;
    1382           0 :         const bool bUndo = getSdrDragView().IsUndoEnabled();
    1383             : 
    1384           0 :         if( bUndo )
    1385             :         {
    1386           0 :             if(!getSdrDragView().IsInsObjPoint() && pObj->IsInserted() )
    1387             :             {
    1388           0 :                 if (DragStat().IsEndDragChangesAttributes())
    1389             :                 {
    1390           0 :                     pUndo=getSdrDragView().GetModel()->GetSdrUndoFactory().CreateUndoAttrObject(*pObj);
    1391             : 
    1392           0 :                     if (DragStat().IsEndDragChangesGeoAndAttributes())
    1393             :                     {
    1394           0 :                         vConnectorUndoActions = getSdrDragView().CreateConnectorUndo( *pObj );
    1395           0 :                         pUndo2 = getSdrDragView().GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj);
    1396             :                     }
    1397             :                 }
    1398             :                 else
    1399             :                 {
    1400           0 :                     vConnectorUndoActions = getSdrDragView().CreateConnectorUndo( *pObj );
    1401           0 :                     pUndo= getSdrDragView().GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj);
    1402             :                 }
    1403             :             }
    1404             : 
    1405           0 :             if( pUndo )
    1406             :             {
    1407           0 :                 getSdrDragView().BegUndo( pUndo->GetComment() );
    1408             :             }
    1409             :             else
    1410             :             {
    1411           0 :                 getSdrDragView().BegUndo();
    1412             :             }
    1413             :         }
    1414             : 
    1415             :         // Maybe use operator = for setting changed object data (do not change selection in
    1416             :         // view, this will destroy the interactor). This is possible since a clone is now
    1417             :         // directly modified by the modifiers. Only SdrTableObj is adding own UNDOs
    1418             :         // in its SdrTableObj::endSpecialDrag, so currently not possible. OTOH it uses
    1419             :         // a CreateUndoGeoObject(), so maybe setting SetEndDragChangesAttributes is okay. I
    1420             :         // will test this now
    1421           0 :         Rectangle aBoundRect0;
    1422             : 
    1423           0 :         if(pObj->GetUserCall())
    1424             :         {
    1425           0 :             aBoundRect0 = pObj->GetLastBoundRect();
    1426             :         }
    1427             : 
    1428           0 :         bRet = pObj->applySpecialDrag(DragStat());
    1429             : 
    1430           0 :         if(bRet)
    1431             :         {
    1432           0 :             pObj->SetChanged();
    1433           0 :             pObj->BroadcastObjectChange();
    1434           0 :             pObj->SendUserCall( SDRUSERCALL_RESIZE, aBoundRect0 );
    1435             :         }
    1436             : 
    1437           0 :         if(bRet)
    1438             :         {
    1439           0 :             if( bUndo )
    1440             :             {
    1441           0 :                 getSdrDragView().AddUndoActions( vConnectorUndoActions );
    1442             : 
    1443           0 :                 if ( pUndo )
    1444             :                 {
    1445           0 :                     getSdrDragView().AddUndo(pUndo);
    1446             :                 }
    1447             : 
    1448           0 :                 if ( pUndo2 )
    1449             :                 {
    1450           0 :                     getSdrDragView().AddUndo(pUndo2);
    1451             :                 }
    1452             :             }
    1453             :         }
    1454             :         else
    1455             :         {
    1456           0 :             if( bUndo )
    1457             :             {
    1458           0 :                 std::vector< SdrUndoAction* >::iterator vConnectorUndoIter( vConnectorUndoActions.begin() );
    1459             : 
    1460           0 :                 while( vConnectorUndoIter != vConnectorUndoActions.end() )
    1461             :                 {
    1462           0 :                     delete *vConnectorUndoIter++;
    1463             :                 }
    1464             : 
    1465           0 :                 delete pUndo;
    1466           0 :                 delete pUndo2;
    1467             :             }
    1468             :         }
    1469             : 
    1470           0 :         if( bUndo )
    1471           0 :             getSdrDragView().EndUndo();
    1472             :     }
    1473             : 
    1474           0 :     return bRet;
    1475             : }
    1476             : 
    1477           0 : Pointer SdrDragObjOwn::GetSdrDragPointer() const
    1478             : {
    1479           0 :     const SdrHdl* pHdl=GetDragHdl();
    1480             : 
    1481           0 :     if (pHdl)
    1482             :     {
    1483           0 :         return pHdl->GetPointer();
    1484             :     }
    1485             : 
    1486           0 :     return Pointer(POINTER_MOVE);
    1487             : }
    1488             : 
    1489             : 
    1490             : 
    1491           0 : TYPEINIT1(SdrDragMove,SdrDragMethod);
    1492             : 
    1493           0 : void SdrDragMove::createSdrDragEntryForSdrObject(const SdrObject& rOriginal, sdr::contact::ObjectContact& rObjectContact, bool /*bModify*/)
    1494             : {
    1495             :     // for SdrDragMove, use current Primitive2DSequence of SdrObject visualization
    1496             :     // in given ObjectContact directly
    1497           0 :     sdr::contact::ViewContact& rVC = rOriginal.GetViewContact();
    1498           0 :     sdr::contact::ViewObjectContact& rVOC = rVC.GetViewObjectContact(rObjectContact);
    1499           0 :     sdr::contact::DisplayInfo aDisplayInfo;
    1500             : 
    1501             :     // Do not use the last ViewPort set at the OC from the last ProcessDisplay(),
    1502             :     // here we want the complete primitive sequence without visible clippings
    1503           0 :     rObjectContact.resetViewPort();
    1504             : 
    1505           0 :     addSdrDragEntry(new SdrDragEntryPrimitive2DSequence(rVOC.getPrimitive2DSequenceHierarchy(aDisplayInfo), true));
    1506           0 : }
    1507             : 
    1508           0 : void SdrDragMove::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
    1509             : {
    1510           0 :     rTarget.Move(Size(DragStat().GetDX(), DragStat().GetDY()));
    1511           0 : }
    1512             : 
    1513           0 : SdrDragMove::SdrDragMove(SdrDragView& rNewView)
    1514             :     : SdrDragMethod(rNewView)
    1515             :     , nBestXSnap(0)
    1516             :     , nBestYSnap(0)
    1517             :     , bXSnapped(false)
    1518           0 :     , bYSnapped(false)
    1519             : {
    1520           0 :     setMoveOnly(true);
    1521           0 : }
    1522             : 
    1523           0 : void SdrDragMove::TakeSdrDragComment(OUString& rStr) const
    1524             : {
    1525           0 :     OUString aStr;
    1526             : 
    1527           0 :     ImpTakeDescriptionStr(STR_DragMethMove, rStr);
    1528           0 :     rStr += " (x=";
    1529           0 :     getSdrDragView().GetModel()->TakeMetricStr(DragStat().GetDX(), aStr);
    1530           0 :     rStr += aStr + " y=";
    1531           0 :     getSdrDragView().GetModel()->TakeMetricStr(DragStat().GetDY(), aStr);
    1532           0 :     rStr += aStr + ")";
    1533             : 
    1534           0 :     if(getSdrDragView().IsDragWithCopy())
    1535             :     {
    1536           0 :         if(!getSdrDragView().IsInsObjPoint() && !getSdrDragView().IsInsGluePoint())
    1537             :         {
    1538           0 :             rStr += ImpGetResStr(STR_EditWithCopy);
    1539             :         }
    1540           0 :     }
    1541           0 : }
    1542             : 
    1543           0 : bool SdrDragMove::BeginSdrDrag()
    1544             : {
    1545           0 :     DragStat().SetActionRect(GetMarkedRect());
    1546           0 :     Show();
    1547             : 
    1548           0 :     return true;
    1549             : }
    1550             : 
    1551           0 : basegfx::B2DHomMatrix SdrDragMove::getCurrentTransformation()
    1552             : {
    1553           0 :     return basegfx::tools::createTranslateB2DHomMatrix(DragStat().GetDX(), DragStat().GetDY());
    1554             : }
    1555             : 
    1556           0 : void SdrDragMove::ImpCheckSnap(const Point& rPt)
    1557             : {
    1558           0 :     Point aPt(rPt);
    1559           0 :     sal_uInt16 nRet=SnapPos(aPt);
    1560           0 :     aPt-=rPt;
    1561             : 
    1562           0 :     if ((nRet & SDRSNAP_XSNAPPED) !=0)
    1563             :     {
    1564           0 :         if (bXSnapped)
    1565             :         {
    1566           0 :             if (std::abs(aPt.X())<std::abs(nBestXSnap))
    1567             :             {
    1568           0 :                 nBestXSnap=aPt.X();
    1569             :             }
    1570             :         }
    1571             :         else
    1572             :         {
    1573           0 :             nBestXSnap=aPt.X();
    1574           0 :             bXSnapped=true;
    1575             :         }
    1576             :     }
    1577             : 
    1578           0 :     if ((nRet & SDRSNAP_YSNAPPED) !=0)
    1579             :     {
    1580           0 :         if (bYSnapped)
    1581             :         {
    1582           0 :             if (std::abs(aPt.Y())<std::abs(nBestYSnap))
    1583             :             {
    1584           0 :                 nBestYSnap=aPt.Y();
    1585             :             }
    1586             :         }
    1587             :         else
    1588             :         {
    1589           0 :             nBestYSnap=aPt.Y();
    1590           0 :             bYSnapped=true;
    1591             :         }
    1592             :     }
    1593           0 : }
    1594             : 
    1595           0 : void SdrDragMove::MoveSdrDrag(const Point& rNoSnapPnt_)
    1596             : {
    1597           0 :     nBestXSnap=0;
    1598           0 :     nBestYSnap=0;
    1599           0 :     bXSnapped=false;
    1600           0 :     bYSnapped=false;
    1601           0 :     Point aNoSnapPnt(rNoSnapPnt_);
    1602           0 :     const Rectangle& aSR=GetMarkedRect();
    1603           0 :     long nMovedx=aNoSnapPnt.X()-DragStat().GetStart().X();
    1604           0 :     long nMovedy=aNoSnapPnt.Y()-DragStat().GetStart().Y();
    1605           0 :     Point aLO(aSR.TopLeft());      aLO.X()+=nMovedx; aLO.Y()+=nMovedy;
    1606           0 :     Point aRU(aSR.BottomRight());  aRU.X()+=nMovedx; aRU.Y()+=nMovedy;
    1607           0 :     Point aLU(aLO.X(),aRU.Y());
    1608           0 :     Point aRO(aRU.X(),aLO.Y());
    1609           0 :     ImpCheckSnap(aLO);
    1610             : 
    1611           0 :     if (!getSdrDragView().IsMoveSnapOnlyTopLeft())
    1612             :     {
    1613           0 :         ImpCheckSnap(aRO);
    1614           0 :         ImpCheckSnap(aLU);
    1615           0 :         ImpCheckSnap(aRU);
    1616             :     }
    1617             : 
    1618           0 :     Point aPnt(aNoSnapPnt.X()+nBestXSnap,aNoSnapPnt.Y()+nBestYSnap);
    1619           0 :     bool bOrtho=getSdrDragView().IsOrtho();
    1620             : 
    1621           0 :     if (bOrtho)
    1622           0 :         OrthoDistance8(DragStat().GetStart(),aPnt,getSdrDragView().IsBigOrtho());
    1623             : 
    1624           0 :     if (DragStat().CheckMinMoved(aNoSnapPnt))
    1625             :     {
    1626           0 :         Point aPt1(aPnt);
    1627           0 :         Rectangle aLR(getSdrDragView().GetWorkArea());
    1628           0 :         bool bWorkArea=!aLR.IsEmpty();
    1629           0 :         bool bDragLimit=IsDragLimit();
    1630             : 
    1631           0 :         if (bDragLimit || bWorkArea)
    1632             :         {
    1633           0 :             Rectangle aSR2(GetMarkedRect());
    1634           0 :             Point aD(aPt1-DragStat().GetStart());
    1635             : 
    1636           0 :             if (bDragLimit)
    1637             :             {
    1638           0 :                 Rectangle aR2(GetDragLimitRect());
    1639             : 
    1640           0 :                 if (bWorkArea)
    1641           0 :                     aLR.Intersection(aR2);
    1642             :                 else
    1643           0 :                     aLR=aR2;
    1644             :             }
    1645             : 
    1646           0 :             if (aSR2.Left()>aLR.Left() || aSR2.Right()<aLR.Right())
    1647             :             { // any space to move to?
    1648           0 :                 aSR2.Move(aD.X(),0);
    1649             : 
    1650           0 :                 if (aSR2.Left()<aLR.Left())
    1651             :                 {
    1652           0 :                     aPt1.X()-=aSR2.Left()-aLR.Left();
    1653             :                 }
    1654           0 :                 else if (aSR2.Right()>aLR.Right())
    1655             :                 {
    1656           0 :                     aPt1.X()-=aSR2.Right()-aLR.Right();
    1657             :                 }
    1658             :             }
    1659             :             else
    1660           0 :                 aPt1.X()=DragStat().GetStart().X(); // no space to move to
    1661             : 
    1662           0 :             if (aSR2.Top()>aLR.Top() || aSR2.Bottom()<aLR.Bottom())
    1663             :             { // any space to move to?
    1664           0 :                 aSR2.Move(0,aD.Y());
    1665             : 
    1666           0 :                 if (aSR2.Top()<aLR.Top())
    1667             :                 {
    1668           0 :                     aPt1.Y()-=aSR2.Top()-aLR.Top();
    1669             :                 }
    1670           0 :                 else if (aSR2.Bottom()>aLR.Bottom())
    1671             :                 {
    1672           0 :                     aPt1.Y()-=aSR2.Bottom()-aLR.Bottom();
    1673             :                 }
    1674             :             }
    1675             :             else
    1676           0 :                 aPt1.Y()=DragStat().GetStart().Y(); // no space to move to
    1677             :         }
    1678             : 
    1679           0 :         if (getSdrDragView().IsDraggingGluePoints())
    1680             :         { // restrict glue points to the BoundRect of the Obj
    1681           0 :             aPt1-=DragStat().GetStart();
    1682           0 :             const SdrMarkList& rML=GetMarkedObjectList();
    1683           0 :             const size_t nMarkAnz=rML.GetMarkCount();
    1684             : 
    1685           0 :             for (size_t nMarkNum=0; nMarkNum<nMarkAnz; ++nMarkNum)
    1686             :             {
    1687           0 :                 const SdrMark* pM=rML.GetMark(nMarkNum);
    1688           0 :                 const SdrUShortCont* pPts=pM->GetMarkedGluePoints();
    1689           0 :                 const size_t nPtAnz=pPts==NULL ? 0 : pPts->size();
    1690             : 
    1691           0 :                 if (nPtAnz!=0)
    1692             :                 {
    1693           0 :                     const SdrObject* pObj=pM->GetMarkedSdrObj();
    1694           0 :                     const SdrGluePointList* pGPL=pObj->GetGluePointList();
    1695           0 :                     Rectangle aBound(pObj->GetCurrentBoundRect());
    1696             : 
    1697           0 :                     for (SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it)
    1698             :                     {
    1699           0 :                         sal_uInt16 nId = *it;
    1700           0 :                         sal_uInt16 nGlueNum=pGPL->FindGluePoint(nId);
    1701             : 
    1702           0 :                         if (nGlueNum!=SDRGLUEPOINT_NOTFOUND)
    1703             :                         {
    1704           0 :                             Point aPt((*pGPL)[nGlueNum].GetAbsolutePos(*pObj));
    1705           0 :                             aPt+=aPt1; // move by this much
    1706           0 :                             if (aPt.X()<aBound.Left()  ) aPt1.X()-=aPt.X()-aBound.Left()  ;
    1707           0 :                             if (aPt.X()>aBound.Right() ) aPt1.X()-=aPt.X()-aBound.Right() ;
    1708           0 :                             if (aPt.Y()<aBound.Top()   ) aPt1.Y()-=aPt.Y()-aBound.Top()   ;
    1709           0 :                             if (aPt.Y()>aBound.Bottom()) aPt1.Y()-=aPt.Y()-aBound.Bottom();
    1710             :                         }
    1711             :                     }
    1712             :                 }
    1713             :             }
    1714             : 
    1715           0 :             aPt1+=DragStat().GetStart();
    1716             :         }
    1717             : 
    1718           0 :         if (bOrtho)
    1719           0 :             OrthoDistance8(DragStat().GetStart(),aPt1,false);
    1720             : 
    1721           0 :         if (aPt1!=DragStat().GetNow())
    1722             :         {
    1723           0 :             Hide();
    1724           0 :             DragStat().NextMove(aPt1);
    1725           0 :             Rectangle aAction(GetMarkedRect());
    1726           0 :             aAction.Move(DragStat().GetDX(),DragStat().GetDY());
    1727           0 :             DragStat().SetActionRect(aAction);
    1728           0 :             Show();
    1729             :         }
    1730             :     }
    1731           0 : }
    1732             : 
    1733           0 : bool SdrDragMove::EndSdrDrag(bool bCopy)
    1734             : {
    1735           0 :     Hide();
    1736             : 
    1737           0 :     if (getSdrDragView().IsInsObjPoint() || getSdrDragView().IsInsGluePoint())
    1738           0 :         bCopy=false;
    1739             : 
    1740           0 :     if (IsDraggingPoints())
    1741             :     {
    1742           0 :         getSdrDragView().MoveMarkedPoints(Size(DragStat().GetDX(),DragStat().GetDY()));
    1743             :     }
    1744           0 :     else if (IsDraggingGluePoints())
    1745             :     {
    1746           0 :         getSdrDragView().MoveMarkedGluePoints(Size(DragStat().GetDX(),DragStat().GetDY()),bCopy);
    1747             :     }
    1748             :     else
    1749             :     {
    1750           0 :         getSdrDragView().MoveMarkedObj(Size(DragStat().GetDX(),DragStat().GetDY()),bCopy);
    1751             :     }
    1752             : 
    1753           0 :     return true;
    1754             : }
    1755             : 
    1756           0 : Pointer SdrDragMove::GetSdrDragPointer() const
    1757             : {
    1758           0 :     if (IsDraggingPoints() || IsDraggingGluePoints())
    1759             :     {
    1760           0 :         return Pointer(POINTER_MOVEPOINT);
    1761             :     }
    1762             :     else
    1763             :     {
    1764           0 :         return Pointer(POINTER_MOVE);
    1765             :     }
    1766             : }
    1767             : 
    1768             : 
    1769             : 
    1770           0 : TYPEINIT1(SdrDragResize,SdrDragMethod);
    1771             : 
    1772           0 : SdrDragResize::SdrDragResize(SdrDragView& rNewView)
    1773             : :   SdrDragMethod(rNewView),
    1774             :     aXFact(1,1),
    1775           0 :     aYFact(1,1)
    1776             : {
    1777           0 : }
    1778             : 
    1779           0 : void SdrDragResize::TakeSdrDragComment(OUString& rStr) const
    1780             : {
    1781           0 :     ImpTakeDescriptionStr(STR_DragMethResize, rStr);
    1782           0 :     Fraction aFact1(1,1);
    1783           0 :     Point aStart(DragStat().GetStart());
    1784           0 :     Point aRef(DragStat().GetRef1());
    1785           0 :     sal_Int32 nXDiv(aStart.X() - aRef.X());
    1786             : 
    1787           0 :     if(!nXDiv)
    1788           0 :         nXDiv = 1;
    1789             : 
    1790           0 :     sal_Int32 nYDiv(aStart.Y() - aRef.Y());
    1791             : 
    1792           0 :     if(!nYDiv)
    1793           0 :         nYDiv = 1;
    1794             : 
    1795           0 :     bool bX(aXFact != aFact1 && std::abs(nXDiv) > 1);
    1796           0 :     bool bY(aYFact != aFact1 && std::abs(nYDiv) > 1);
    1797             : 
    1798           0 :     if(bX || bY)
    1799             :     {
    1800           0 :         OUString aStr;
    1801             : 
    1802           0 :         rStr += " (";
    1803             : 
    1804           0 :         bool bEqual(aXFact == aYFact);
    1805           0 :         if(bX)
    1806             :         {
    1807           0 :             if(!bEqual)
    1808           0 :                 rStr += "x=";
    1809             : 
    1810           0 :             getSdrDragView().GetModel()->TakePercentStr(aXFact, aStr);
    1811           0 :             rStr += aStr;
    1812             :         }
    1813             : 
    1814           0 :         if(bY && !bEqual)
    1815             :         {
    1816           0 :             if(bX)
    1817           0 :                 rStr += " ";
    1818             : 
    1819           0 :             rStr += "y=";
    1820           0 :             getSdrDragView().GetModel()->TakePercentStr(aYFact, aStr);
    1821           0 :             rStr += aStr;
    1822             :         }
    1823             : 
    1824           0 :         rStr += ")";
    1825             :     }
    1826             : 
    1827           0 :     if(getSdrDragView().IsDragWithCopy())
    1828           0 :         rStr += ImpGetResStr(STR_EditWithCopy);
    1829           0 : }
    1830             : 
    1831           0 : bool SdrDragResize::BeginSdrDrag()
    1832             : {
    1833           0 :     SdrHdlKind eRefHdl=HDL_MOVE;
    1834           0 :     SdrHdl* pRefHdl=NULL;
    1835             : 
    1836           0 :     switch (GetDragHdlKind())
    1837             :     {
    1838           0 :         case HDL_UPLFT: eRefHdl=HDL_LWRGT; break;
    1839           0 :         case HDL_UPPER: eRefHdl=HDL_LOWER; DragStat().SetHorFixed(true); break;
    1840           0 :         case HDL_UPRGT: eRefHdl=HDL_LWLFT; break;
    1841           0 :         case HDL_LEFT : eRefHdl=HDL_RIGHT; DragStat().SetVerFixed(true); break;
    1842           0 :         case HDL_RIGHT: eRefHdl=HDL_LEFT ; DragStat().SetVerFixed(true); break;
    1843           0 :         case HDL_LWLFT: eRefHdl=HDL_UPRGT; break;
    1844           0 :         case HDL_LOWER: eRefHdl=HDL_UPPER; DragStat().SetHorFixed(true); break;
    1845           0 :         case HDL_LWRGT: eRefHdl=HDL_UPLFT; break;
    1846           0 :         default: break;
    1847             :     }
    1848             : 
    1849           0 :     if (eRefHdl!=HDL_MOVE)
    1850           0 :         pRefHdl=GetHdlList().GetHdl(eRefHdl);
    1851             : 
    1852           0 :     if (pRefHdl!=NULL && !getSdrDragView().IsResizeAtCenter())
    1853             :     {
    1854             :         // Calc hack to adjust for calc grid
    1855           0 :         DragStat().Ref1()=pRefHdl->GetPos() - getSdrDragView().GetGridOffset();
    1856             :     }
    1857             :     else
    1858             :     {
    1859           0 :         SdrHdl* pRef1=GetHdlList().GetHdl(HDL_UPLFT);
    1860           0 :         SdrHdl* pRef2=GetHdlList().GetHdl(HDL_LWRGT);
    1861             : 
    1862           0 :         if (pRef1!=NULL && pRef2!=NULL)
    1863             :         {
    1864           0 :             DragStat().Ref1()=Rectangle(pRef1->GetPos(),pRef2->GetPos()).Center();
    1865             :         }
    1866             :         else
    1867             :         {
    1868           0 :             DragStat().Ref1()=GetMarkedRect().Center();
    1869             :         }
    1870             :     }
    1871             : 
    1872           0 :     Show();
    1873             : 
    1874           0 :     return true;
    1875             : }
    1876             : 
    1877           0 : basegfx::B2DHomMatrix SdrDragResize::getCurrentTransformation()
    1878             : {
    1879             :     basegfx::B2DHomMatrix aRetval(basegfx::tools::createTranslateB2DHomMatrix(
    1880           0 :         -DragStat().Ref1().X(), -DragStat().Ref1().Y()));
    1881           0 :     aRetval.scale(aXFact, aYFact);
    1882           0 :     aRetval.translate(DragStat().Ref1().X(), DragStat().Ref1().Y());
    1883             : 
    1884           0 :     return aRetval;
    1885             : }
    1886             : 
    1887           0 : void SdrDragResize::MoveSdrDrag(const Point& rNoSnapPnt)
    1888             : {
    1889           0 :     Point aPnt(GetSnapPos(rNoSnapPnt));
    1890           0 :     Point aStart(DragStat().GetStart());
    1891           0 :     Point aRef(DragStat().GetRef1());
    1892           0 :     Fraction aMaxFact(0x7FFFFFFF,1);
    1893           0 :     Rectangle aLR(getSdrDragView().GetWorkArea());
    1894           0 :     bool bWorkArea=!aLR.IsEmpty();
    1895           0 :     bool bDragLimit=IsDragLimit();
    1896             : 
    1897           0 :     if (bDragLimit || bWorkArea)
    1898             :     {
    1899           0 :         Rectangle aSR(GetMarkedRect());
    1900             : 
    1901           0 :         if (bDragLimit)
    1902             :         {
    1903           0 :             Rectangle aR2(GetDragLimitRect());
    1904             : 
    1905           0 :             if (bWorkArea)
    1906           0 :                 aLR.Intersection(aR2);
    1907             :             else
    1908           0 :                 aLR=aR2;
    1909             :         }
    1910             : 
    1911           0 :         if (aPnt.X()<aLR.Left())
    1912           0 :             aPnt.X()=aLR.Left();
    1913           0 :         else if (aPnt.X()>aLR.Right())
    1914           0 :             aPnt.X()=aLR.Right();
    1915             : 
    1916           0 :         if (aPnt.Y()<aLR.Top())
    1917           0 :             aPnt.Y()=aLR.Top();
    1918           0 :         else if (aPnt.Y()>aLR.Bottom())
    1919           0 :             aPnt.Y()=aLR.Bottom();
    1920             : 
    1921           0 :         if (aRef.X()>aSR.Left())
    1922             :         {
    1923           0 :             Fraction aMax(aRef.X()-aLR.Left(),aRef.X()-aSR.Left());
    1924             : 
    1925           0 :             if (aMax<aMaxFact)
    1926           0 :                 aMaxFact=aMax;
    1927             :         }
    1928             : 
    1929           0 :         if (aRef.X()<aSR.Right())
    1930             :         {
    1931           0 :             Fraction aMax(aLR.Right()-aRef.X(),aSR.Right()-aRef.X());
    1932             : 
    1933           0 :             if (aMax<aMaxFact)
    1934           0 :                 aMaxFact=aMax;
    1935             :         }
    1936             : 
    1937           0 :         if (aRef.Y()>aSR.Top())
    1938             :         {
    1939           0 :             Fraction aMax(aRef.Y()-aLR.Top(),aRef.Y()-aSR.Top());
    1940             : 
    1941           0 :             if (aMax<aMaxFact)
    1942           0 :                 aMaxFact=aMax;
    1943             :         }
    1944             : 
    1945           0 :         if (aRef.Y()<aSR.Bottom())
    1946             :         {
    1947           0 :             Fraction aMax(aLR.Bottom()-aRef.Y(),aSR.Bottom()-aRef.Y());
    1948             : 
    1949           0 :             if (aMax<aMaxFact)
    1950           0 :                 aMaxFact=aMax;
    1951             :         }
    1952             :     }
    1953             : 
    1954           0 :     long nXDiv=aStart.X()-aRef.X(); if (nXDiv==0) nXDiv=1;
    1955           0 :     long nYDiv=aStart.Y()-aRef.Y(); if (nYDiv==0) nYDiv=1;
    1956           0 :     long nXMul=aPnt.X()-aRef.X();
    1957           0 :     long nYMul=aPnt.Y()-aRef.Y();
    1958             : 
    1959           0 :     if (nXDiv<0)
    1960             :     {
    1961           0 :         nXDiv=-nXDiv;
    1962           0 :         nXMul=-nXMul;
    1963             :     }
    1964             : 
    1965           0 :     if (nYDiv<0)
    1966             :     {
    1967           0 :         nYDiv=-nYDiv;
    1968           0 :         nYMul=-nYMul;
    1969             :     }
    1970             : 
    1971           0 :     bool bXNeg=nXMul<0; if (bXNeg) nXMul=-nXMul;
    1972           0 :     bool bYNeg=nYMul<0; if (bYNeg) nYMul=-nYMul;
    1973           0 :     bool bOrtho=getSdrDragView().IsOrtho() || !getSdrDragView().IsResizeAllowed(false);
    1974             : 
    1975           0 :     if (!DragStat().IsHorFixed() && !DragStat().IsVerFixed())
    1976             :     {
    1977           0 :         if (std::abs(nXDiv)<=1 || std::abs(nYDiv)<=1)
    1978           0 :             bOrtho=false;
    1979             : 
    1980           0 :         if (bOrtho)
    1981             :         {
    1982           0 :             if ((Fraction(nXMul,nXDiv)>Fraction(nYMul,nYDiv)) !=getSdrDragView().IsBigOrtho())
    1983             :             {
    1984           0 :                 nXMul=nYMul;
    1985           0 :                 nXDiv=nYDiv;
    1986             :             }
    1987             :             else
    1988             :             {
    1989           0 :                 nYMul=nXMul;
    1990           0 :                 nYDiv=nXDiv;
    1991             :             }
    1992             :         }
    1993             :     }
    1994             :     else
    1995             :     {
    1996           0 :         if (bOrtho)
    1997             :         {
    1998           0 :             if (DragStat().IsHorFixed())
    1999             :             {
    2000           0 :                 bXNeg=false;
    2001           0 :                 nXMul=nYMul;
    2002           0 :                 nXDiv=nYDiv;
    2003             :             }
    2004             : 
    2005           0 :             if (DragStat().IsVerFixed())
    2006             :             {
    2007           0 :                 bYNeg=false;
    2008           0 :                 nYMul=nXMul;
    2009           0 :                 nYDiv=nXDiv;
    2010             :             }
    2011             :         }
    2012             :         else
    2013             :         {
    2014           0 :             if (DragStat().IsHorFixed())
    2015             :             {
    2016           0 :                 bXNeg=false;
    2017           0 :                 nXMul=1;
    2018           0 :                 nXDiv=1;
    2019             :             }
    2020             : 
    2021           0 :             if (DragStat().IsVerFixed())
    2022             :             {
    2023           0 :                 bYNeg=false;
    2024           0 :                 nYMul=1;
    2025           0 :                 nYDiv=1;
    2026             :             }
    2027             :         }
    2028             :     }
    2029             : 
    2030           0 :     Fraction aNeuXFact(nXMul,nXDiv);
    2031           0 :     Fraction aNeuYFact(nYMul,nYDiv);
    2032             : 
    2033           0 :     if (bOrtho)
    2034             :     {
    2035           0 :         if (aNeuXFact>aMaxFact)
    2036             :         {
    2037           0 :             aNeuXFact=aMaxFact;
    2038           0 :             aNeuYFact=aMaxFact;
    2039             :         }
    2040             : 
    2041           0 :         if (aNeuYFact>aMaxFact)
    2042             :         {
    2043           0 :             aNeuXFact=aMaxFact;
    2044           0 :             aNeuYFact=aMaxFact;
    2045             :         }
    2046             :     }
    2047             : 
    2048           0 :     if (bXNeg)
    2049           0 :         aNeuXFact=Fraction(-aNeuXFact.GetNumerator(),aNeuXFact.GetDenominator());
    2050             : 
    2051           0 :     if (bYNeg)
    2052           0 :         aNeuYFact=Fraction(-aNeuYFact.GetNumerator(),aNeuYFact.GetDenominator());
    2053             : 
    2054           0 :     if (DragStat().CheckMinMoved(aPnt))
    2055             :     {
    2056           0 :         if ((!DragStat().IsHorFixed() && aPnt.X()!=DragStat().GetNow().X()) ||
    2057           0 :             (!DragStat().IsVerFixed() && aPnt.Y()!=DragStat().GetNow().Y()))
    2058             :         {
    2059           0 :             Hide();
    2060           0 :             DragStat().NextMove(aPnt);
    2061           0 :             aXFact=aNeuXFact;
    2062           0 :             aYFact=aNeuYFact;
    2063           0 :             Show();
    2064             :         }
    2065             :     }
    2066           0 : }
    2067             : 
    2068           0 : void SdrDragResize::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
    2069             : {
    2070           0 :     rTarget.Resize(DragStat().Ref1(),aXFact,aYFact);
    2071           0 : }
    2072             : 
    2073           0 : bool SdrDragResize::EndSdrDrag(bool bCopy)
    2074             : {
    2075           0 :     Hide();
    2076             : 
    2077           0 :     if (IsDraggingPoints())
    2078             :     {
    2079           0 :         getSdrDragView().ResizeMarkedPoints(DragStat().Ref1(),aXFact,aYFact);
    2080             :     }
    2081           0 :     else if (IsDraggingGluePoints())
    2082             :     {
    2083           0 :         getSdrDragView().ResizeMarkedGluePoints(DragStat().Ref1(),aXFact,aYFact,bCopy);
    2084             :     }
    2085             :     else
    2086             :     {
    2087           0 :         getSdrDragView().ResizeMarkedObj(DragStat().Ref1(),aXFact,aYFact,bCopy);
    2088             :     }
    2089             : 
    2090           0 :     return true;
    2091             : }
    2092             : 
    2093           0 : Pointer SdrDragResize::GetSdrDragPointer() const
    2094             : {
    2095           0 :     const SdrHdl* pHdl=GetDragHdl();
    2096             : 
    2097           0 :     if (pHdl!=NULL)
    2098             :     {
    2099           0 :         return pHdl->GetPointer();
    2100             :     }
    2101             : 
    2102           0 :     return Pointer(POINTER_MOVE);
    2103             : }
    2104             : 
    2105             : 
    2106             : 
    2107           0 : TYPEINIT1(SdrDragRotate,SdrDragMethod);
    2108             : 
    2109           0 : void SdrDragRotate::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
    2110             : {
    2111           0 :     rTarget.Rotate(DragStat().GetRef1(), nWink, sin(nWink*nPi180), cos(nWink*nPi180));
    2112           0 : }
    2113             : 
    2114           0 : SdrDragRotate::SdrDragRotate(SdrDragView& rNewView)
    2115             : :   SdrDragMethod(rNewView),
    2116             :     nSin(0.0),
    2117             :     nCos(1.0),
    2118             :     nWink0(0),
    2119             :     nWink(0),
    2120           0 :     bRight(false)
    2121             : {
    2122           0 : }
    2123             : 
    2124           0 : void SdrDragRotate::TakeSdrDragComment(OUString& rStr) const
    2125             : {
    2126           0 :     ImpTakeDescriptionStr(STR_DragMethRotate, rStr);
    2127           0 :     rStr += " (";
    2128           0 :     sal_Int32 nTmpWink(NormAngle360(nWink));
    2129             : 
    2130           0 :     if(bRight && nWink)
    2131             :     {
    2132           0 :         nTmpWink -= 36000;
    2133             :     }
    2134             : 
    2135           0 :     OUString aStr;
    2136           0 :     getSdrDragView().GetModel()->TakeWinkStr(nTmpWink, aStr);
    2137           0 :     rStr += aStr + ")";
    2138             : 
    2139           0 :     if(getSdrDragView().IsDragWithCopy())
    2140           0 :         rStr += ImpGetResStr(STR_EditWithCopy);
    2141           0 : }
    2142             : 
    2143           0 : bool SdrDragRotate::BeginSdrDrag()
    2144             : {
    2145           0 :     SdrHdl* pH=GetHdlList().GetHdl(HDL_REF1);
    2146             : 
    2147           0 :     if (pH!=NULL)
    2148             :     {
    2149           0 :         Show();
    2150           0 :         DragStat().Ref1()=pH->GetPos();
    2151           0 :         nWink0=GetAngle(DragStat().GetStart()-DragStat().GetRef1());
    2152           0 :         return true;
    2153             :     }
    2154             :     else
    2155             :     {
    2156             :         OSL_FAIL("SdrDragRotate::BeginSdrDrag(): No reference point handle found.");
    2157           0 :         return false;
    2158             :     }
    2159             : }
    2160             : 
    2161           0 : basegfx::B2DHomMatrix SdrDragRotate::getCurrentTransformation()
    2162             : {
    2163             :     return basegfx::tools::createRotateAroundPoint(
    2164           0 :         DragStat().GetRef1().X(), DragStat().GetRef1().Y(),
    2165           0 :         -atan2(nSin, nCos));
    2166             : }
    2167             : 
    2168           0 : void SdrDragRotate::MoveSdrDrag(const Point& rPnt_)
    2169             : {
    2170           0 :     Point aPnt(rPnt_);
    2171           0 :     if (DragStat().CheckMinMoved(aPnt))
    2172             :     {
    2173           0 :         long nNeuWink=NormAngle360(GetAngle(aPnt-DragStat().GetRef1())-nWink0);
    2174           0 :         long nSA=0;
    2175             : 
    2176           0 :         if (getSdrDragView().IsAngleSnapEnabled())
    2177           0 :             nSA=getSdrDragView().GetSnapAngle();
    2178             : 
    2179           0 :         if (!getSdrDragView().IsRotateAllowed(false))
    2180           0 :             nSA=9000;
    2181             : 
    2182           0 :         if (nSA!=0)
    2183             :         { // angle snapping
    2184           0 :             nNeuWink+=nSA/2;
    2185           0 :             nNeuWink/=nSA;
    2186           0 :             nNeuWink*=nSA;
    2187             :         }
    2188             : 
    2189           0 :         nNeuWink=NormAngle180(nNeuWink);
    2190             : 
    2191           0 :         if (nWink!=nNeuWink)
    2192             :         {
    2193           0 :             sal_uInt16 nSekt0=GetAngleSector(nWink);
    2194           0 :             sal_uInt16 nSekt1=GetAngleSector(nNeuWink);
    2195             : 
    2196           0 :             if (nSekt0==0 && nSekt1==3)
    2197           0 :                 bRight=true;
    2198             : 
    2199           0 :             if (nSekt0==3 && nSekt1==0)
    2200           0 :                 bRight=false;
    2201             : 
    2202           0 :             nWink=nNeuWink;
    2203           0 :             double a=nWink*nPi180;
    2204           0 :             double nSin1=sin(a); // calculate now, so as little time as possible
    2205           0 :             double nCos1=cos(a); // passes between Hide() and Show()
    2206           0 :             Hide();
    2207           0 :             nSin=nSin1;
    2208           0 :             nCos=nCos1;
    2209           0 :             DragStat().NextMove(aPnt);
    2210           0 :             Show();
    2211             :         }
    2212             :     }
    2213           0 : }
    2214             : 
    2215           0 : bool SdrDragRotate::EndSdrDrag(bool bCopy)
    2216             : {
    2217           0 :     Hide();
    2218             : 
    2219           0 :     if (nWink!=0)
    2220             :     {
    2221           0 :         if (IsDraggingPoints())
    2222             :         {
    2223           0 :             getSdrDragView().RotateMarkedPoints(DragStat().GetRef1(),nWink);
    2224             :         }
    2225           0 :         else if (IsDraggingGluePoints())
    2226             :         {
    2227           0 :             getSdrDragView().RotateMarkedGluePoints(DragStat().GetRef1(),nWink,bCopy);
    2228             :         }
    2229             :         else
    2230             :         {
    2231           0 :             getSdrDragView().RotateMarkedObj(DragStat().GetRef1(),nWink,bCopy);
    2232             :         }
    2233             :     }
    2234           0 :     return true;
    2235             : }
    2236             : 
    2237           0 : Pointer SdrDragRotate::GetSdrDragPointer() const
    2238             : {
    2239           0 :     return Pointer(POINTER_ROTATE);
    2240             : }
    2241             : 
    2242             : 
    2243             : 
    2244           0 : TYPEINIT1(SdrDragShear,SdrDragMethod);
    2245             : 
    2246           0 : SdrDragShear::SdrDragShear(SdrDragView& rNewView, bool bSlant1)
    2247             : :   SdrDragMethod(rNewView),
    2248             :     aFact(1,1),
    2249             :     nWink0(0),
    2250             :     nWink(0),
    2251             :     nTan(0.0),
    2252             :     bVertical(false),
    2253             :     bResize(false),
    2254             :     bUpSideDown(false),
    2255           0 :     bSlant(bSlant1)
    2256             : {
    2257           0 : }
    2258             : 
    2259           0 : void SdrDragShear::TakeSdrDragComment(OUString& rStr) const
    2260             : {
    2261           0 :     ImpTakeDescriptionStr(STR_DragMethShear, rStr);
    2262           0 :     rStr += " (";
    2263             : 
    2264           0 :     sal_Int32 nTmpWink(nWink);
    2265             : 
    2266           0 :     if(bUpSideDown)
    2267           0 :         nTmpWink += 18000;
    2268             : 
    2269           0 :     nTmpWink = NormAngle180(nTmpWink);
    2270             : 
    2271           0 :     OUString aStr;
    2272           0 :     getSdrDragView().GetModel()->TakeWinkStr(nTmpWink, aStr);
    2273           0 :     rStr += aStr + ")";
    2274             : 
    2275           0 :     if(getSdrDragView().IsDragWithCopy())
    2276           0 :         rStr += ImpGetResStr(STR_EditWithCopy);
    2277           0 : }
    2278             : 
    2279           0 : bool SdrDragShear::BeginSdrDrag()
    2280             : {
    2281           0 :     SdrHdlKind eRefHdl=HDL_MOVE;
    2282           0 :     SdrHdl* pRefHdl=NULL;
    2283             : 
    2284           0 :     switch (GetDragHdlKind())
    2285             :     {
    2286           0 :         case HDL_UPPER: eRefHdl=HDL_LOWER; break;
    2287           0 :         case HDL_LOWER: eRefHdl=HDL_UPPER; break;
    2288           0 :         case HDL_LEFT : eRefHdl=HDL_RIGHT; bVertical=true; break;
    2289           0 :         case HDL_RIGHT: eRefHdl=HDL_LEFT ; bVertical=true; break;
    2290           0 :         default: break;
    2291             :     }
    2292             : 
    2293           0 :     if (eRefHdl!=HDL_MOVE)
    2294           0 :         pRefHdl=GetHdlList().GetHdl(eRefHdl);
    2295             : 
    2296           0 :     if (pRefHdl!=NULL)
    2297             :     {
    2298           0 :         DragStat().Ref1()=pRefHdl->GetPos();
    2299           0 :         nWink0=GetAngle(DragStat().GetStart()-DragStat().GetRef1());
    2300             :     }
    2301             :     else
    2302             :     {
    2303             :         OSL_FAIL("SdrDragShear::BeginSdrDrag(): No reference point handle for shearing found.");
    2304           0 :         return false;
    2305             :     }
    2306             : 
    2307           0 :     Show();
    2308           0 :     return true;
    2309             : }
    2310             : 
    2311           0 : basegfx::B2DHomMatrix SdrDragShear::getCurrentTransformation()
    2312             : {
    2313             :     basegfx::B2DHomMatrix aRetval(basegfx::tools::createTranslateB2DHomMatrix(
    2314           0 :         -DragStat().GetRef1().X(), -DragStat().GetRef1().Y()));
    2315             : 
    2316           0 :     if (bResize)
    2317             :     {
    2318           0 :         if (bVertical)
    2319             :         {
    2320           0 :             aRetval.scale(aFact, 1.0);
    2321           0 :             aRetval.shearY(-nTan);
    2322             :         }
    2323             :         else
    2324             :         {
    2325           0 :             aRetval.scale(1.0, aFact);
    2326           0 :             aRetval.shearX(-nTan);
    2327             :         }
    2328             :     }
    2329             : 
    2330           0 :     aRetval.translate(DragStat().GetRef1().X(), DragStat().GetRef1().Y());
    2331             : 
    2332           0 :     return aRetval;
    2333             : }
    2334             : 
    2335           0 : void SdrDragShear::MoveSdrDrag(const Point& rPnt)
    2336             : {
    2337           0 :     if (DragStat().CheckMinMoved(rPnt))
    2338             :     {
    2339           0 :         bResize=!getSdrDragView().IsOrtho();
    2340           0 :         long nSA=0;
    2341             : 
    2342           0 :         if (getSdrDragView().IsAngleSnapEnabled())
    2343           0 :             nSA=getSdrDragView().GetSnapAngle();
    2344             : 
    2345           0 :         Point aP0(DragStat().GetStart());
    2346           0 :         Point aPnt(rPnt);
    2347           0 :         Fraction aNeuFact(1,1);
    2348             : 
    2349             :         // if angle snapping not activated, snap to raster (except when using slant)
    2350           0 :         if (nSA==0 && !bSlant)
    2351           0 :             aPnt=GetSnapPos(aPnt);
    2352             : 
    2353           0 :         if (!bSlant && !bResize)
    2354             :         { // shear, but no resize
    2355           0 :             if (bVertical)
    2356           0 :                 aPnt.X()=aP0.X();
    2357             :             else
    2358           0 :                 aPnt.Y()=aP0.Y();
    2359             :         }
    2360             : 
    2361           0 :         Point aRef(DragStat().GetRef1());
    2362           0 :         Point aDif(aPnt-aRef);
    2363             : 
    2364           0 :         long nNeuWink=0;
    2365             : 
    2366           0 :         if (bSlant)
    2367             :         {
    2368           0 :             nNeuWink=NormAngle180(-(GetAngle(aDif)-nWink0));
    2369             : 
    2370           0 :             if (bVertical)
    2371           0 :                 nNeuWink=NormAngle180(-nNeuWink);
    2372             :         }
    2373             :         else
    2374             :         {
    2375           0 :             if (bVertical)
    2376           0 :                 nNeuWink=NormAngle180(GetAngle(aDif));
    2377             :             else
    2378           0 :                 nNeuWink=NormAngle180(-(GetAngle(aDif)-9000));
    2379             : 
    2380           0 :             if (nNeuWink<-9000 || nNeuWink>9000)
    2381           0 :                 nNeuWink=NormAngle180(nNeuWink+18000);
    2382             : 
    2383           0 :             if (bResize)
    2384             :             {
    2385           0 :                 Point aPt2(aPnt);
    2386             : 
    2387           0 :                 if (nSA!=0)
    2388           0 :                     aPt2=GetSnapPos(aPnt); // snap this one in any case
    2389             : 
    2390           0 :                 if (bVertical)
    2391             :                 {
    2392           0 :                     aNeuFact=Fraction(aPt2.X()-aRef.X(),aP0.X()-aRef.X());
    2393             :                 }
    2394             :                 else
    2395             :                 {
    2396           0 :                     aNeuFact=Fraction(aPt2.Y()-aRef.Y(),aP0.Y()-aRef.Y());
    2397             :                 }
    2398             :             }
    2399             :         }
    2400             : 
    2401           0 :         bool bNeg=nNeuWink<0;
    2402             : 
    2403           0 :         if (bNeg)
    2404           0 :             nNeuWink=-nNeuWink;
    2405             : 
    2406           0 :         if (nSA!=0)
    2407             :         { // angle snapping
    2408           0 :             nNeuWink+=nSA/2;
    2409           0 :             nNeuWink/=nSA;
    2410           0 :             nNeuWink*=nSA;
    2411             :         }
    2412             : 
    2413           0 :         nNeuWink=NormAngle360(nNeuWink);
    2414           0 :         bUpSideDown=nNeuWink>9000 && nNeuWink<27000;
    2415             : 
    2416           0 :         if (bSlant)
    2417             :         { // calculate resize for slant
    2418             :             // when angle snapping is activated, disable 89 degree limit
    2419           0 :             long nTmpWink=nNeuWink;
    2420           0 :             if (bUpSideDown) nNeuWink-=18000;
    2421           0 :             if (bNeg) nTmpWink=-nTmpWink;
    2422           0 :             bResize=true;
    2423           0 :             double nCos=cos(nTmpWink*nPi180);
    2424           0 :             aNeuFact=nCos;
    2425           0 :             Kuerzen(aFact,10); // three decimals should be enough
    2426             :         }
    2427             : 
    2428           0 :         if (nNeuWink>8900)
    2429           0 :             nNeuWink=8900;
    2430             : 
    2431           0 :         if (bNeg)
    2432           0 :             nNeuWink=-nNeuWink;
    2433             : 
    2434           0 :         if (nWink!=nNeuWink || aFact!=aNeuFact)
    2435             :         {
    2436           0 :             nWink=nNeuWink;
    2437           0 :             aFact=aNeuFact;
    2438           0 :             double a=nWink*nPi180;
    2439           0 :             double nTan1=tan(a); // calculate now, so as little time as possible passes between Hide() and Show()
    2440           0 :             Hide();
    2441           0 :             nTan=nTan1;
    2442           0 :             DragStat().NextMove(rPnt);
    2443           0 :             Show();
    2444             :         }
    2445             :     }
    2446           0 : }
    2447             : 
    2448           0 : void SdrDragShear::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
    2449             : {
    2450           0 :     if (bResize)
    2451             :     {
    2452           0 :         if (bVertical)
    2453             :         {
    2454           0 :             rTarget.Resize(DragStat().GetRef1(),aFact,Fraction(1,1));
    2455             :         }
    2456             :         else
    2457             :         {
    2458           0 :             rTarget.Resize(DragStat().GetRef1(),Fraction(1,1),aFact);
    2459             :         }
    2460             :     }
    2461             : 
    2462           0 :     if (nWink!=0)
    2463             :     {
    2464           0 :         rTarget.Shear(DragStat().GetRef1(),nWink,tan(nWink*nPi180),bVertical);
    2465             :     }
    2466           0 : }
    2467             : 
    2468           0 : bool SdrDragShear::EndSdrDrag(bool bCopy)
    2469             : {
    2470           0 :     Hide();
    2471             : 
    2472           0 :     if (bResize && aFact==Fraction(1,1))
    2473           0 :         bResize=false;
    2474             : 
    2475           0 :     if (nWink!=0 || bResize)
    2476             :     {
    2477           0 :         if (nWink!=0 && bResize)
    2478             :         {
    2479           0 :             OUString aStr;
    2480           0 :             ImpTakeDescriptionStr(STR_EditShear,aStr);
    2481             : 
    2482           0 :             if (bCopy)
    2483           0 :                 aStr += ImpGetResStr(STR_EditWithCopy);
    2484             : 
    2485           0 :             getSdrDragView().BegUndo(aStr);
    2486             :         }
    2487             : 
    2488           0 :         if (bResize)
    2489             :         {
    2490           0 :             if (bVertical)
    2491             :             {
    2492           0 :                 getSdrDragView().ResizeMarkedObj(DragStat().GetRef1(),aFact,Fraction(1,1),bCopy);
    2493             :             }
    2494             :             else
    2495             :             {
    2496           0 :                 getSdrDragView().ResizeMarkedObj(DragStat().GetRef1(),Fraction(1,1),aFact,bCopy);
    2497             :             }
    2498             : 
    2499           0 :             bCopy=false;
    2500             :         }
    2501             : 
    2502           0 :         if (nWink!=0)
    2503             :         {
    2504           0 :             getSdrDragView().ShearMarkedObj(DragStat().GetRef1(),nWink,bVertical,bCopy);
    2505             :         }
    2506             : 
    2507           0 :         if (nWink!=0 && bResize)
    2508           0 :             getSdrDragView().EndUndo();
    2509             : 
    2510           0 :         return true;
    2511             :     }
    2512             : 
    2513           0 :     return false;
    2514             : }
    2515             : 
    2516           0 : Pointer SdrDragShear::GetSdrDragPointer() const
    2517             : {
    2518           0 :     if (bVertical)
    2519           0 :         return Pointer(POINTER_VSHEAR);
    2520             :     else
    2521           0 :         return Pointer(POINTER_HSHEAR);
    2522             : }
    2523             : 
    2524             : 
    2525             : 
    2526           0 : TYPEINIT1(SdrDragMirror,SdrDragMethod);
    2527             : 
    2528           0 : void SdrDragMirror::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
    2529             : {
    2530           0 :     if(bMirrored)
    2531             :     {
    2532           0 :         rTarget.Mirror(DragStat().GetRef1(), DragStat().GetRef2());
    2533             :     }
    2534           0 : }
    2535             : 
    2536           0 : SdrDragMirror::SdrDragMirror(SdrDragView& rNewView)
    2537             : :   SdrDragMethod(rNewView),
    2538             :     nWink(0),
    2539             :     bMirrored(false),
    2540           0 :     bSide0(false)
    2541             : {
    2542           0 : }
    2543             : 
    2544           0 : bool SdrDragMirror::ImpCheckSide(const Point& rPnt) const
    2545             : {
    2546           0 :     long nWink1=GetAngle(rPnt-DragStat().GetRef1());
    2547           0 :     nWink1-=nWink;
    2548           0 :     nWink1=NormAngle360(nWink1);
    2549             : 
    2550           0 :     return nWink1<18000;
    2551             : }
    2552             : 
    2553           0 : void SdrDragMirror::TakeSdrDragComment(OUString& rStr) const
    2554             : {
    2555           0 :     if (aDif.X()==0)
    2556           0 :         ImpTakeDescriptionStr(STR_DragMethMirrorHori,rStr);
    2557           0 :     else if (aDif.Y()==0)
    2558           0 :         ImpTakeDescriptionStr(STR_DragMethMirrorVert,rStr);
    2559           0 :     else if (std::abs(aDif.X()) == std::abs(aDif.Y()))
    2560           0 :         ImpTakeDescriptionStr(STR_DragMethMirrorDiag,rStr);
    2561             :     else
    2562           0 :         ImpTakeDescriptionStr(STR_DragMethMirrorFree,rStr);
    2563             : 
    2564           0 :     if (getSdrDragView().IsDragWithCopy())
    2565           0 :         rStr+=ImpGetResStr(STR_EditWithCopy);
    2566           0 : }
    2567             : 
    2568           0 : bool SdrDragMirror::BeginSdrDrag()
    2569             : {
    2570           0 :     SdrHdl* pH1=GetHdlList().GetHdl(HDL_REF1);
    2571           0 :     SdrHdl* pH2=GetHdlList().GetHdl(HDL_REF2);
    2572             : 
    2573           0 :     if (pH1!=NULL && pH2!=NULL)
    2574             :     {
    2575           0 :         DragStat().Ref1()=pH1->GetPos();
    2576           0 :         DragStat().Ref2()=pH2->GetPos();
    2577           0 :         Ref1()=pH1->GetPos();
    2578           0 :         Ref2()=pH2->GetPos();
    2579           0 :         aDif=pH2->GetPos()-pH1->GetPos();
    2580           0 :         bool b90=(aDif.X()==0) || aDif.Y()==0;
    2581           0 :         bool b45=b90 || (std::abs(aDif.X()) == std::abs(aDif.Y()));
    2582           0 :         nWink=NormAngle360(GetAngle(aDif));
    2583             : 
    2584           0 :         if (!getSdrDragView().IsMirrorAllowed(false,false) && !b45)
    2585           0 :             return false; // free choice of axis angle not allowed
    2586             : 
    2587           0 :         if (!getSdrDragView().IsMirrorAllowed(true,false) && !b90)
    2588           0 :             return false;  // 45 degrees not allowed either
    2589             : 
    2590           0 :         bSide0=ImpCheckSide(DragStat().GetStart());
    2591           0 :         Show();
    2592           0 :         return true;
    2593             :     }
    2594             :     else
    2595             :     {
    2596             :         OSL_FAIL("SdrDragMirror::BeginSdrDrag(): Axis of reflection not found.");
    2597           0 :         return false;
    2598             :     }
    2599             : }
    2600             : 
    2601           0 : basegfx::B2DHomMatrix SdrDragMirror::getCurrentTransformation()
    2602             : {
    2603           0 :     basegfx::B2DHomMatrix aRetval;
    2604             : 
    2605           0 :     if (bMirrored)
    2606             :     {
    2607           0 :         const double fDeltaX(DragStat().GetRef2().X() - DragStat().GetRef1().X());
    2608           0 :         const double fDeltaY(DragStat().GetRef2().Y() - DragStat().GetRef1().Y());
    2609           0 :         const double fRotation(atan2(fDeltaY, fDeltaX));
    2610             : 
    2611           0 :         aRetval = basegfx::tools::createTranslateB2DHomMatrix(-DragStat().GetRef1().X(), -DragStat().GetRef1().Y());
    2612           0 :         aRetval.rotate(-fRotation);
    2613           0 :         aRetval.scale(1.0, -1.0);
    2614           0 :         aRetval.rotate(fRotation);
    2615           0 :         aRetval.translate(DragStat().GetRef1().X(), DragStat().GetRef1().Y());
    2616             :     }
    2617             : 
    2618           0 :     return aRetval;
    2619             : }
    2620             : 
    2621           0 : void SdrDragMirror::MoveSdrDrag(const Point& rPnt)
    2622             : {
    2623           0 :     if (DragStat().CheckMinMoved(rPnt))
    2624             :     {
    2625           0 :         bool bNeuSide=ImpCheckSide(rPnt);
    2626           0 :         bool bNeuMirr=bSide0!=bNeuSide;
    2627             : 
    2628           0 :         if (bMirrored!=bNeuMirr)
    2629             :         {
    2630           0 :             Hide();
    2631           0 :             bMirrored=bNeuMirr;
    2632           0 :             DragStat().NextMove(rPnt);
    2633           0 :             Show();
    2634             :         }
    2635             :     }
    2636           0 : }
    2637             : 
    2638           0 : bool SdrDragMirror::EndSdrDrag(bool bCopy)
    2639             : {
    2640           0 :     Hide();
    2641             : 
    2642           0 :     if (bMirrored)
    2643             :     {
    2644           0 :         getSdrDragView().MirrorMarkedObj(DragStat().GetRef1(),DragStat().GetRef2(),bCopy);
    2645             :     }
    2646             : 
    2647           0 :     return true;
    2648             : }
    2649             : 
    2650           0 : Pointer SdrDragMirror::GetSdrDragPointer() const
    2651             : {
    2652           0 :     return Pointer(POINTER_MIRROR);
    2653             : }
    2654             : 
    2655             : 
    2656             : 
    2657           0 : TYPEINIT1(SdrDragGradient, SdrDragMethod);
    2658             : 
    2659           0 : SdrDragGradient::SdrDragGradient(SdrDragView& rNewView, bool bGrad)
    2660             : :   SdrDragMethod(rNewView),
    2661             :     pIAOHandle(NULL),
    2662           0 :     bIsGradient(bGrad)
    2663             : {
    2664           0 : }
    2665             : 
    2666           0 : void SdrDragGradient::TakeSdrDragComment(OUString& rStr) const
    2667             : {
    2668           0 :     if(IsGradient())
    2669           0 :         ImpTakeDescriptionStr(STR_DragMethGradient, rStr);
    2670             :     else
    2671           0 :         ImpTakeDescriptionStr(STR_DragMethTransparence, rStr);
    2672           0 : }
    2673             : 
    2674           0 : bool SdrDragGradient::BeginSdrDrag()
    2675             : {
    2676           0 :     bool bRetval(false);
    2677             : 
    2678           0 :     pIAOHandle = static_cast<SdrHdlGradient*>(GetHdlList().GetHdl(IsGradient() ? HDL_GRAD : HDL_TRNS));
    2679             : 
    2680           0 :     if(pIAOHandle)
    2681             :     {
    2682             :         // save old values
    2683           0 :         DragStat().Ref1() = pIAOHandle->GetPos();
    2684           0 :         DragStat().Ref2() = pIAOHandle->Get2ndPos();
    2685             : 
    2686             :         // what was hit?
    2687           0 :         bool bHit(false);
    2688           0 :         SdrHdlColor* pColHdl = pIAOHandle->GetColorHdl1();
    2689             : 
    2690             :         // init handling flags
    2691           0 :         pIAOHandle->SetMoveSingleHandle(false);
    2692           0 :         pIAOHandle->SetMoveFirstHandle(false);
    2693             : 
    2694             :         // test first color handle
    2695           0 :         if(pColHdl)
    2696             :         {
    2697           0 :             basegfx::B2DPoint aPosition(DragStat().GetStart().X(), DragStat().GetStart().Y());
    2698             : 
    2699           0 :             if(pColHdl->getOverlayObjectList().isHitLogic(aPosition))
    2700             :             {
    2701           0 :                 bHit = true;
    2702           0 :                 pIAOHandle->SetMoveSingleHandle(true);
    2703           0 :                 pIAOHandle->SetMoveFirstHandle(true);
    2704           0 :             }
    2705             :         }
    2706             : 
    2707             :         // test second color handle
    2708           0 :         pColHdl = pIAOHandle->GetColorHdl2();
    2709             : 
    2710           0 :         if(!bHit && pColHdl)
    2711             :         {
    2712           0 :             basegfx::B2DPoint aPosition(DragStat().GetStart().X(), DragStat().GetStart().Y());
    2713             : 
    2714           0 :             if(pColHdl->getOverlayObjectList().isHitLogic(aPosition))
    2715             :             {
    2716           0 :                 bHit = true;
    2717           0 :                 pIAOHandle->SetMoveSingleHandle(true);
    2718           0 :             }
    2719             :         }
    2720             : 
    2721             :         // test gradient handle itself
    2722           0 :         if(!bHit)
    2723             :         {
    2724           0 :             basegfx::B2DPoint aPosition(DragStat().GetStart().X(), DragStat().GetStart().Y());
    2725             : 
    2726           0 :             if(pIAOHandle->getOverlayObjectList().isHitLogic(aPosition))
    2727             :             {
    2728           0 :                 bHit = true;
    2729           0 :             }
    2730             :         }
    2731             : 
    2732             :         // everything up and running :o}
    2733           0 :         bRetval = bHit;
    2734             :     }
    2735             :     else
    2736             :     {
    2737             :         OSL_FAIL("SdrDragGradient::BeginSdrDrag(): IAOGradient not found.");
    2738             :     }
    2739             : 
    2740           0 :     return bRetval;
    2741             : }
    2742             : 
    2743           0 : void SdrDragGradient::MoveSdrDrag(const Point& rPnt)
    2744             : {
    2745           0 :     if(pIAOHandle && DragStat().CheckMinMoved(rPnt))
    2746             :     {
    2747           0 :         DragStat().NextMove(rPnt);
    2748             : 
    2749             :         // Do the Move here!!! DragStat().GetStart()
    2750           0 :         Point aMoveDiff = rPnt - DragStat().GetStart();
    2751             : 
    2752           0 :         if(pIAOHandle->IsMoveSingleHandle())
    2753             :         {
    2754           0 :             if(pIAOHandle->IsMoveFirstHandle())
    2755             :             {
    2756           0 :                 pIAOHandle->SetPos(DragStat().Ref1() + aMoveDiff);
    2757           0 :                 if(pIAOHandle->GetColorHdl1())
    2758           0 :                     pIAOHandle->GetColorHdl1()->SetPos(DragStat().Ref1() + aMoveDiff);
    2759             :             }
    2760             :             else
    2761             :             {
    2762           0 :                 pIAOHandle->Set2ndPos(DragStat().Ref2() + aMoveDiff);
    2763           0 :                 if(pIAOHandle->GetColorHdl2())
    2764           0 :                     pIAOHandle->GetColorHdl2()->SetPos(DragStat().Ref2() + aMoveDiff);
    2765             :             }
    2766             :         }
    2767             :         else
    2768             :         {
    2769           0 :             pIAOHandle->SetPos(DragStat().Ref1() + aMoveDiff);
    2770           0 :             pIAOHandle->Set2ndPos(DragStat().Ref2() + aMoveDiff);
    2771             : 
    2772           0 :             if(pIAOHandle->GetColorHdl1())
    2773           0 :                 pIAOHandle->GetColorHdl1()->SetPos(DragStat().Ref1() + aMoveDiff);
    2774             : 
    2775           0 :             if(pIAOHandle->GetColorHdl2())
    2776           0 :                 pIAOHandle->GetColorHdl2()->SetPos(DragStat().Ref2() + aMoveDiff);
    2777             :         }
    2778             : 
    2779             :         // new state
    2780           0 :         pIAOHandle->FromIAOToItem(getSdrDragView().GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj(), false, false);
    2781             :     }
    2782           0 : }
    2783             : 
    2784           0 : bool SdrDragGradient::EndSdrDrag(bool /*bCopy*/)
    2785             : {
    2786           0 :     Ref1() = pIAOHandle->GetPos();
    2787           0 :     Ref2() = pIAOHandle->Get2ndPos();
    2788             : 
    2789             :     // new state
    2790           0 :     pIAOHandle->FromIAOToItem(getSdrDragView().GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj(), true, true);
    2791             : 
    2792           0 :     return true;
    2793             : }
    2794             : 
    2795           0 : void SdrDragGradient::CancelSdrDrag()
    2796             : {
    2797             :     // restore old values
    2798           0 :     pIAOHandle->SetPos(DragStat().Ref1());
    2799           0 :     pIAOHandle->Set2ndPos(DragStat().Ref2());
    2800             : 
    2801           0 :     if(pIAOHandle->GetColorHdl1())
    2802           0 :         pIAOHandle->GetColorHdl1()->SetPos(DragStat().Ref1());
    2803             : 
    2804           0 :     if(pIAOHandle->GetColorHdl2())
    2805           0 :         pIAOHandle->GetColorHdl2()->SetPos(DragStat().Ref2());
    2806             : 
    2807             :     // new state
    2808           0 :     pIAOHandle->FromIAOToItem(getSdrDragView().GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj(), true, false);
    2809           0 : }
    2810             : 
    2811           0 : Pointer SdrDragGradient::GetSdrDragPointer() const
    2812             : {
    2813           0 :     return Pointer(POINTER_REFHAND);
    2814             : }
    2815             : 
    2816             : 
    2817             : 
    2818           0 : TYPEINIT1(SdrDragCrook,SdrDragMethod);
    2819             : 
    2820           0 : SdrDragCrook::SdrDragCrook(SdrDragView& rNewView)
    2821             : :   SdrDragMethod(rNewView),
    2822             :     aFact(1,1),
    2823             :     bContortionAllowed(false),
    2824             :     bNoContortionAllowed(false),
    2825             :     bContortion(false),
    2826             :     bResizeAllowed(false),
    2827             :     bResize(false),
    2828             :     bRotateAllowed(false),
    2829             :     bRotate(false),
    2830             :     bVertical(false),
    2831             :     bValid(false),
    2832             :     bLft(false),
    2833             :     bRgt(false),
    2834             :     bUpr(false),
    2835             :     bLwr(false),
    2836             :     bAtCenter(false),
    2837             :     nWink(0),
    2838             :     nMarkSize(0),
    2839           0 :     eMode(SDRCROOK_ROTATE)
    2840             : {
    2841           0 : }
    2842             : 
    2843           0 : void SdrDragCrook::TakeSdrDragComment(OUString& rStr) const
    2844             : {
    2845           0 :     ImpTakeDescriptionStr(!bContortion ? STR_DragMethCrook : STR_DragMethCrookContortion, rStr);
    2846             : 
    2847           0 :     if(bValid)
    2848             :     {
    2849           0 :         rStr += " (";
    2850             : 
    2851           0 :         sal_Int32 nVal(nWink);
    2852             : 
    2853           0 :         if(bAtCenter)
    2854           0 :             nVal *= 2;
    2855             : 
    2856           0 :         nVal = std::abs(nVal);
    2857           0 :         OUString aStr;
    2858           0 :         getSdrDragView().GetModel()->TakeWinkStr(nVal, aStr);
    2859           0 :         rStr += aStr + ")";
    2860             :     }
    2861             : 
    2862           0 :     if(getSdrDragView().IsDragWithCopy())
    2863           0 :         rStr += ImpGetResStr(STR_EditWithCopy);
    2864           0 : }
    2865             : 
    2866             : // These defines parameterize the created raster
    2867             : // for interactions
    2868             : #define DRAG_CROOK_RASTER_MINIMUM   (4)
    2869             : #define DRAG_CROOK_RASTER_MAXIMUM   (15)
    2870             : #define DRAG_CROOK_RASTER_DISTANCE  (30)
    2871             : 
    2872           0 : basegfx::B2DPolyPolygon impCreateDragRaster(SdrPageView& rPageView, const Rectangle& rMarkRect)
    2873             : {
    2874           0 :     basegfx::B2DPolyPolygon aRetval;
    2875             : 
    2876           0 :     if(rPageView.PageWindowCount())
    2877             :     {
    2878           0 :         OutputDevice& rOut = (rPageView.GetPageWindow(0)->GetPaintWindow().GetOutputDevice());
    2879           0 :         Rectangle aPixelSize = rOut.LogicToPixel(rMarkRect);
    2880           0 :         sal_uInt32 nHorDiv(aPixelSize.GetWidth() / DRAG_CROOK_RASTER_DISTANCE);
    2881           0 :         sal_uInt32 nVerDiv(aPixelSize.GetHeight() / DRAG_CROOK_RASTER_DISTANCE);
    2882             : 
    2883           0 :         if(nHorDiv > DRAG_CROOK_RASTER_MAXIMUM)
    2884           0 :             nHorDiv = DRAG_CROOK_RASTER_MAXIMUM;
    2885           0 :         if(nHorDiv < DRAG_CROOK_RASTER_MINIMUM)
    2886           0 :             nHorDiv = DRAG_CROOK_RASTER_MINIMUM;
    2887             : 
    2888           0 :         if(nVerDiv > DRAG_CROOK_RASTER_MAXIMUM)
    2889           0 :             nVerDiv = DRAG_CROOK_RASTER_MAXIMUM;
    2890           0 :         if(nVerDiv < DRAG_CROOK_RASTER_MINIMUM)
    2891           0 :             nVerDiv = DRAG_CROOK_RASTER_MINIMUM;
    2892             : 
    2893           0 :         const double fXLen(rMarkRect.GetWidth() / (double)nHorDiv);
    2894           0 :         const double fYLen(rMarkRect.GetHeight() / (double)nVerDiv);
    2895           0 :         double fYPos(rMarkRect.Top());
    2896             :         sal_uInt32 a, b;
    2897             : 
    2898           0 :         for(a = 0; a <= nVerDiv; a++)
    2899             :         {
    2900             :             // horizontal lines
    2901           0 :             for(b = 0; b < nHorDiv; b++)
    2902             :             {
    2903           0 :                 basegfx::B2DPolygon aHorLineSegment;
    2904             : 
    2905           0 :                 const double fNewX(rMarkRect.Left() + (b * fXLen));
    2906           0 :                 aHorLineSegment.append(basegfx::B2DPoint(fNewX, fYPos));
    2907             :                 aHorLineSegment.appendBezierSegment(
    2908           0 :                     basegfx::B2DPoint(fNewX + (fXLen * (1.0 / 3.0)), fYPos),
    2909           0 :                     basegfx::B2DPoint(fNewX + (fXLen * (2.0 / 3.0)), fYPos),
    2910           0 :                     basegfx::B2DPoint(fNewX + fXLen, fYPos));
    2911           0 :                 aRetval.append(aHorLineSegment);
    2912           0 :             }
    2913             : 
    2914             :             // increments
    2915           0 :             fYPos += fYLen;
    2916             :         }
    2917             : 
    2918           0 :         double fXPos(rMarkRect.Left());
    2919             : 
    2920           0 :         for(a = 0; a <= nHorDiv; a++)
    2921             :         {
    2922             :             // vertical lines
    2923           0 :             for(b = 0; b < nVerDiv; b++)
    2924             :             {
    2925           0 :                 basegfx::B2DPolygon aVerLineSegment;
    2926             : 
    2927           0 :                 const double fNewY(rMarkRect.Top() + (b * fYLen));
    2928           0 :                 aVerLineSegment.append(basegfx::B2DPoint(fXPos, fNewY));
    2929             :                 aVerLineSegment.appendBezierSegment(
    2930           0 :                     basegfx::B2DPoint(fXPos, fNewY + (fYLen * (1.0 / 3.0))),
    2931           0 :                     basegfx::B2DPoint(fXPos, fNewY + (fYLen * (2.0 / 3.0))),
    2932           0 :                     basegfx::B2DPoint(fXPos, fNewY + fYLen));
    2933           0 :                 aRetval.append(aVerLineSegment);
    2934           0 :             }
    2935             : 
    2936             :             // increments
    2937           0 :             fXPos += fXLen;
    2938             :         }
    2939             :     }
    2940             : 
    2941           0 :     return aRetval;
    2942             : }
    2943             : 
    2944           0 : void SdrDragCrook::createSdrDragEntries()
    2945             : {
    2946             :     // Add extended frame raster first, so it will be behind objects
    2947           0 :     if(getSdrDragView().GetSdrPageView())
    2948             :     {
    2949           0 :         const basegfx::B2DPolyPolygon aDragRaster(impCreateDragRaster(*getSdrDragView().GetSdrPageView(), GetMarkedRect()));
    2950             : 
    2951           0 :         if(aDragRaster.count())
    2952             :         {
    2953           0 :             addSdrDragEntry(new SdrDragEntryPolyPolygon(aDragRaster));
    2954           0 :         }
    2955             :     }
    2956             : 
    2957             :     // call parent
    2958           0 :     SdrDragMethod::createSdrDragEntries();
    2959           0 : }
    2960             : 
    2961           0 : bool SdrDragCrook::BeginSdrDrag()
    2962             : {
    2963           0 :     bContortionAllowed=getSdrDragView().IsCrookAllowed(false);
    2964           0 :     bNoContortionAllowed=getSdrDragView().IsCrookAllowed(true);
    2965           0 :     bResizeAllowed=getSdrDragView().IsResizeAllowed(false);
    2966           0 :     bRotateAllowed=getSdrDragView().IsRotateAllowed(false);
    2967             : 
    2968           0 :     if (bContortionAllowed || bNoContortionAllowed)
    2969             :     {
    2970           0 :         bVertical=(GetDragHdlKind()==HDL_LOWER || GetDragHdlKind()==HDL_UPPER);
    2971           0 :         aMarkRect=GetMarkedRect();
    2972           0 :         aMarkCenter=aMarkRect.Center();
    2973           0 :         nMarkSize=bVertical ? (aMarkRect.GetHeight()-1) : (aMarkRect.GetWidth()-1);
    2974           0 :         aCenter=aMarkCenter;
    2975           0 :         aStart=DragStat().GetStart();
    2976           0 :         Show();
    2977           0 :         return true;
    2978             :     }
    2979             :     else
    2980             :     {
    2981           0 :         return false;
    2982             :     }
    2983             : }
    2984             : 
    2985           0 : void SdrDragCrook::_MovAllPoints(basegfx::B2DPolyPolygon& rTarget)
    2986             : {
    2987           0 :     SdrPageView* pPV = getSdrDragView().GetSdrPageView();
    2988             : 
    2989           0 :     if(pPV)
    2990             :     {
    2991           0 :         XPolyPolygon aTempPolyPoly(rTarget);
    2992             : 
    2993           0 :         if (pPV->HasMarkedObjPageView())
    2994             :         {
    2995           0 :             sal_uInt16 nPolyAnz=aTempPolyPoly.Count();
    2996             : 
    2997           0 :             if (!bContortion && !getSdrDragView().IsNoDragXorPolys())
    2998             :             {
    2999           0 :                 sal_uInt16 n1st=0,nLast=0;
    3000           0 :                 Point aC(aCenter);
    3001             : 
    3002           0 :                 while (n1st<nPolyAnz)
    3003             :                 {
    3004           0 :                     nLast=n1st;
    3005           0 :                     while (nLast<nPolyAnz && aTempPolyPoly[nLast].GetPointCount()!=0) nLast++;
    3006           0 :                     Rectangle aBound(aTempPolyPoly[n1st].GetBoundRect());
    3007             :                     sal_uInt16 i;
    3008             : 
    3009           0 :                     for (i=n1st+1; i<nLast; i++)
    3010             :                     {
    3011           0 :                         aBound.Union(aTempPolyPoly[n1st].GetBoundRect());
    3012             :                     }
    3013             : 
    3014           0 :                     Point aCtr0(aBound.Center());
    3015           0 :                     Point aCtr1(aCtr0);
    3016             : 
    3017           0 :                     if (bResize)
    3018             :                     {
    3019           0 :                         Fraction aFact1(1,1);
    3020             : 
    3021           0 :                         if (bVertical)
    3022             :                         {
    3023           0 :                             ResizePoint(aCtr1,aC,aFact1,aFact);
    3024             :                         }
    3025             :                         else
    3026             :                         {
    3027           0 :                             ResizePoint(aCtr1,aC,aFact,aFact1);
    3028             :                         }
    3029             :                     }
    3030             : 
    3031           0 :                     bool bRotOk=false;
    3032           0 :                     double nSin=0,nCos=0;
    3033             : 
    3034           0 :                     if (aRad.X()!=0 && aRad.Y()!=0)
    3035             :                     {
    3036           0 :                         bRotOk=bRotate;
    3037             : 
    3038           0 :                         switch (eMode)
    3039             :                         {
    3040           0 :                             case SDRCROOK_ROTATE : CrookRotateXPoint (aCtr1,NULL,NULL,aC,aRad,nSin,nCos,bVertical);           break;
    3041           0 :                             case SDRCROOK_SLANT  : CrookSlantXPoint  (aCtr1,NULL,NULL,aC,aRad,nSin,nCos,bVertical);           break;
    3042           0 :                             case SDRCROOK_STRETCH: CrookStretchXPoint(aCtr1,NULL,NULL,aC,aRad,nSin,nCos,bVertical,aMarkRect); break;
    3043             :                         } // switch
    3044             :                     }
    3045             : 
    3046           0 :                     aCtr1-=aCtr0;
    3047             : 
    3048           0 :                     for (i=n1st; i<nLast; i++)
    3049             :                     {
    3050           0 :                         if (bRotOk)
    3051             :                         {
    3052           0 :                             RotateXPoly(aTempPolyPoly[i],aCtr0,nSin,nCos);
    3053             :                         }
    3054             : 
    3055           0 :                         aTempPolyPoly[i].Move(aCtr1.X(),aCtr1.Y());
    3056             :                     }
    3057             : 
    3058           0 :                     n1st=nLast+1;
    3059             :                 }
    3060             :             }
    3061             :             else
    3062             :             {
    3063             :                 sal_uInt16 i,j;
    3064             : 
    3065           0 :                 for (j=0; j<nPolyAnz; j++)
    3066             :                 {
    3067           0 :                     XPolygon& aPol=aTempPolyPoly[j];
    3068           0 :                     sal_uInt16 nPtAnz=aPol.GetPointCount();
    3069           0 :                     i=0;
    3070             : 
    3071           0 :                     while (i<nPtAnz)
    3072             :                     {
    3073           0 :                         Point* pPnt=&aPol[i];
    3074           0 :                         Point* pC1=NULL;
    3075           0 :                         Point* pC2=NULL;
    3076             : 
    3077           0 :                         if (i+1<nPtAnz && aPol.IsControl(i))
    3078             :                         { // control point on the left
    3079           0 :                             pC1=pPnt;
    3080           0 :                             i++;
    3081           0 :                             pPnt=&aPol[i];
    3082             :                         }
    3083             : 
    3084           0 :                         i++;
    3085             : 
    3086           0 :                         if (i<nPtAnz && aPol.IsControl(i))
    3087             :                         { // control point on the right
    3088           0 :                             pC2=&aPol[i];
    3089           0 :                             i++;
    3090             :                         }
    3091             : 
    3092           0 :                         _MovCrookPoint(*pPnt,pC1,pC2);
    3093             :                     }
    3094             :                 }
    3095             :             }
    3096             :         }
    3097             : 
    3098           0 :         rTarget = aTempPolyPoly.getB2DPolyPolygon();
    3099             :     }
    3100           0 : }
    3101             : 
    3102           0 : void SdrDragCrook::_MovCrookPoint(Point& rPnt, Point* pC1, Point* pC2)
    3103             : {
    3104           0 :     bool bVert=bVertical;
    3105           0 :     bool bC1=pC1!=NULL;
    3106           0 :     bool bC2=pC2!=NULL;
    3107           0 :     Point aC(aCenter);
    3108             : 
    3109           0 :     if (bResize)
    3110             :     {
    3111           0 :         Fraction aFact1(1,1);
    3112             : 
    3113           0 :         if (bVert)
    3114             :         {
    3115           0 :             ResizePoint(rPnt,aC,aFact1,aFact);
    3116             : 
    3117           0 :             if (bC1)
    3118           0 :                 ResizePoint(*pC1,aC,aFact1,aFact);
    3119             : 
    3120           0 :             if (bC2)
    3121           0 :                 ResizePoint(*pC2,aC,aFact1,aFact);
    3122             :         }
    3123             :         else
    3124             :         {
    3125           0 :             ResizePoint(rPnt,aC,aFact,aFact1);
    3126             : 
    3127           0 :             if (bC1)
    3128           0 :                 ResizePoint(*pC1,aC,aFact,aFact1);
    3129             : 
    3130           0 :             if (bC2)
    3131           0 :                 ResizePoint(*pC2,aC,aFact,aFact1);
    3132             :         }
    3133             :     }
    3134             : 
    3135           0 :     if (aRad.X()!=0 && aRad.Y()!=0)
    3136             :     {
    3137             :         double nSin,nCos;
    3138             : 
    3139           0 :         switch (eMode)
    3140             :         {
    3141           0 :             case SDRCROOK_ROTATE : CrookRotateXPoint (rPnt,pC1,pC2,aC,aRad,nSin,nCos,bVert);           break;
    3142           0 :             case SDRCROOK_SLANT  : CrookSlantXPoint  (rPnt,pC1,pC2,aC,aRad,nSin,nCos,bVert);           break;
    3143           0 :             case SDRCROOK_STRETCH: CrookStretchXPoint(rPnt,pC1,pC2,aC,aRad,nSin,nCos,bVert,aMarkRect); break;
    3144             :         } // switch
    3145             :     }
    3146           0 : }
    3147             : 
    3148           0 : void SdrDragCrook::MoveSdrDrag(const Point& rPnt)
    3149             : {
    3150           0 :     if (DragStat().CheckMinMoved(rPnt))
    3151             :     {
    3152           0 :         bool bNeuMoveOnly=getSdrDragView().IsMoveOnlyDragging();
    3153           0 :         bAtCenter=false;
    3154           0 :         SdrCrookMode eNeuMode=getSdrDragView().GetCrookMode();
    3155           0 :         bool bNeuContortion=!bNeuMoveOnly && ((bContortionAllowed && !getSdrDragView().IsCrookNoContortion()) || !bNoContortionAllowed);
    3156           0 :         bResize=!getSdrDragView().IsOrtho() && bResizeAllowed && !bNeuMoveOnly;
    3157           0 :         bool bNeuRotate=bRotateAllowed && !bNeuContortion && !bNeuMoveOnly && eNeuMode==SDRCROOK_ROTATE;
    3158             : 
    3159           0 :         Point aPnt(GetSnapPos(rPnt));
    3160             : 
    3161           0 :         Point aNeuCenter(aMarkCenter.X(),aStart.Y());
    3162             : 
    3163           0 :         if (bVertical)
    3164             :         {
    3165           0 :             aNeuCenter.X()=aStart.X();
    3166           0 :             aNeuCenter.Y()=aMarkCenter.Y();
    3167             :         }
    3168             : 
    3169           0 :         if (!getSdrDragView().IsCrookAtCenter())
    3170             :         {
    3171           0 :             switch (GetDragHdlKind())
    3172             :             {
    3173           0 :                 case HDL_UPLFT: aNeuCenter.X()=aMarkRect.Right();  bLft=true; break;
    3174           0 :                 case HDL_UPPER: aNeuCenter.Y()=aMarkRect.Bottom(); bUpr=true; break;
    3175           0 :                 case HDL_UPRGT: aNeuCenter.X()=aMarkRect.Left();   bRgt=true; break;
    3176           0 :                 case HDL_LEFT : aNeuCenter.X()=aMarkRect.Right();  bLft=true; break;
    3177           0 :                 case HDL_RIGHT: aNeuCenter.X()=aMarkRect.Left();   bRgt=true; break;
    3178           0 :                 case HDL_LWLFT: aNeuCenter.X()=aMarkRect.Right();  bLft=true; break;
    3179           0 :                 case HDL_LOWER: aNeuCenter.Y()=aMarkRect.Top();    bLwr=true; break;
    3180           0 :                 case HDL_LWRGT: aNeuCenter.X()=aMarkRect.Left();   bRgt=true; break;
    3181           0 :                 default: bAtCenter=true;
    3182             :             }
    3183             :         }
    3184             :         else
    3185           0 :             bAtCenter=true;
    3186             : 
    3187           0 :         Fraction aNeuFact(1,1);
    3188           0 :         long dx1=aPnt.X()-aNeuCenter.X();
    3189           0 :         long dy1=aPnt.Y()-aNeuCenter.Y();
    3190           0 :         bValid=bVertical ? dx1!=0 : dy1!=0;
    3191             : 
    3192           0 :         if (bValid)
    3193             :         {
    3194           0 :             if (bVertical)
    3195           0 :                 bValid = std::abs(dx1)*100>std::abs(dy1);
    3196             :             else
    3197           0 :                 bValid = std::abs(dy1)*100>std::abs(dx1);
    3198             :         }
    3199             : 
    3200           0 :         long nNeuRad=0;
    3201           0 :         nWink=0;
    3202             : 
    3203           0 :         if (bValid)
    3204             :         {
    3205           0 :             double a=0; // slope of the radius
    3206           0 :             long nPntWink=0;
    3207             : 
    3208           0 :             if (bVertical)
    3209             :             {
    3210           0 :                 a=((double)dy1)/((double)dx1); // slope of the radius
    3211           0 :                 nNeuRad=((long)(dy1*a)+dx1) /2;
    3212           0 :                 aNeuCenter.X()+=nNeuRad;
    3213           0 :                 nPntWink=GetAngle(aPnt-aNeuCenter);
    3214             :             }
    3215             :             else
    3216             :             {
    3217           0 :                 a=((double)dx1)/((double)dy1); // slope of the radius
    3218           0 :                 nNeuRad=((long)(dx1*a)+dy1) /2;
    3219           0 :                 aNeuCenter.Y()+=nNeuRad;
    3220           0 :                 nPntWink=GetAngle(aPnt-aNeuCenter)-9000;
    3221             :             }
    3222             : 
    3223           0 :             if (!bAtCenter)
    3224             :             {
    3225           0 :                 if (nNeuRad<0)
    3226             :                 {
    3227           0 :                     if (bRgt) nPntWink+=18000;
    3228           0 :                     if (bLft) nPntWink=18000-nPntWink;
    3229           0 :                     if (bLwr) nPntWink=-nPntWink;
    3230             :                 }
    3231             :                 else
    3232             :                 {
    3233           0 :                     if (bRgt) nPntWink=-nPntWink;
    3234           0 :                     if (bUpr) nPntWink=18000-nPntWink;
    3235           0 :                     if (bLwr) nPntWink+=18000;
    3236             :                 }
    3237             : 
    3238           0 :                 nPntWink=NormAngle360(nPntWink);
    3239             :             }
    3240             :             else
    3241             :             {
    3242           0 :                 if (nNeuRad<0) nPntWink+=18000;
    3243           0 :                 if (bVertical) nPntWink=18000-nPntWink;
    3244           0 :                 nPntWink=NormAngle180(nPntWink);
    3245           0 :                 nPntWink = std::abs(nPntWink);
    3246             :             }
    3247             : 
    3248           0 :             double nUmfang = 2 * std::abs(nNeuRad)*nPi;
    3249             : 
    3250           0 :             if (bResize)
    3251             :             {
    3252           0 :                 long nMul=(long)(nUmfang*NormAngle360(nPntWink)/36000);
    3253             : 
    3254           0 :                 if (bAtCenter)
    3255           0 :                     nMul*=2;
    3256             : 
    3257           0 :                 aNeuFact=Fraction(nMul,nMarkSize);
    3258           0 :                 nWink=nPntWink;
    3259             :             }
    3260             :             else
    3261             :             {
    3262           0 :                 nWink=(long)((nMarkSize*360/nUmfang)*100)/2;
    3263             : 
    3264           0 :                 if (nWink==0)
    3265           0 :                     bValid=false;
    3266             :             }
    3267             :         }
    3268             : 
    3269           0 :         if (nWink==0 || nNeuRad==0)
    3270           0 :             bValid=false;
    3271             : 
    3272           0 :         if (!bValid)
    3273           0 :             nNeuRad=0;
    3274             : 
    3275           0 :         if (!bValid && bResize)
    3276             :         {
    3277           0 :             long nMul=bVertical ? dy1 : dx1;
    3278             : 
    3279           0 :             if (bLft || bUpr)
    3280           0 :                 nMul=-nMul;
    3281             : 
    3282           0 :             long nDiv=nMarkSize;
    3283             : 
    3284           0 :             if (bAtCenter)
    3285             :             {
    3286           0 :                 nMul*=2;
    3287           0 :                 nMul = std::abs(nMul);
    3288             :             }
    3289             : 
    3290           0 :             aNeuFact=Fraction(nMul,nDiv);
    3291             :         }
    3292             : 
    3293           0 :         if (aNeuCenter!=aCenter || bNeuContortion!=bContortion || aNeuFact!=aFact ||
    3294           0 :             bNeuMoveOnly != getMoveOnly() || bNeuRotate!=bRotate || eNeuMode!=eMode)
    3295             :         {
    3296           0 :             Hide();
    3297           0 :             setMoveOnly(bNeuMoveOnly);
    3298           0 :             bRotate=bNeuRotate;
    3299           0 :             eMode=eNeuMode;
    3300           0 :             bContortion=bNeuContortion;
    3301           0 :             aCenter=aNeuCenter;
    3302           0 :             aFact=aNeuFact;
    3303           0 :             aRad=Point(nNeuRad,nNeuRad);
    3304           0 :             bResize=aFact!=Fraction(1,1) && aFact.GetDenominator()!=0 && aFact.IsValid();
    3305           0 :             DragStat().NextMove(aPnt);
    3306           0 :             Show();
    3307             :         }
    3308             :     }
    3309           0 : }
    3310             : 
    3311           0 : void SdrDragCrook::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
    3312             : {
    3313           0 :     const bool bDoResize(aFact!=Fraction(1,1));
    3314           0 :     const bool bDoCrook(aCenter!=aMarkCenter && aRad.X()!=0 && aRad.Y()!=0);
    3315             : 
    3316           0 :     if (bDoCrook || bDoResize)
    3317             :     {
    3318           0 :         if (bDoResize)
    3319             :         {
    3320           0 :             Fraction aFact1(1,1);
    3321             : 
    3322           0 :             if (bContortion)
    3323             :             {
    3324           0 :                 if (bVertical)
    3325             :                 {
    3326           0 :                     rTarget.Resize(aCenter,aFact1,aFact);
    3327             :                 }
    3328             :                 else
    3329             :                 {
    3330           0 :                     rTarget.Resize(aCenter,aFact,aFact1);
    3331             :                 }
    3332             :             }
    3333             :             else
    3334             :             {
    3335           0 :                 Point aCtr0(rTarget.GetSnapRect().Center());
    3336           0 :                 Point aCtr1(aCtr0);
    3337             : 
    3338           0 :                 if (bVertical)
    3339             :                 {
    3340           0 :                     ResizePoint(aCtr1,aCenter,aFact1,aFact);
    3341             :                 }
    3342             :                 else
    3343             :                 {
    3344           0 :                     ResizePoint(aCtr1,aCenter,aFact,aFact1);
    3345             :                 }
    3346             : 
    3347           0 :                 Size aSiz(aCtr1.X()-aCtr0.X(),aCtr1.Y()-aCtr0.Y());
    3348             : 
    3349           0 :                 rTarget.Move(aSiz);
    3350             :             }
    3351             :         }
    3352             : 
    3353           0 :         if (bDoCrook)
    3354             :         {
    3355           0 :             const Rectangle aLocalMarkRect(getSdrDragView().GetMarkedObjRect());
    3356           0 :             const bool bLocalRotate(!bContortion && eMode == SDRCROOK_ROTATE && getSdrDragView().IsRotateAllowed(false));
    3357             : 
    3358           0 :             getSdrDragView().ImpCrookObj(&rTarget,aCenter,aRad,eMode,bVertical,!bContortion,bLocalRotate,aLocalMarkRect);
    3359             :         }
    3360             :     }
    3361           0 : }
    3362             : 
    3363           0 : void SdrDragCrook::applyCurrentTransformationToPolyPolygon(basegfx::B2DPolyPolygon& rTarget)
    3364             : {
    3365             :     // use helper derived from old stuff
    3366           0 :     _MovAllPoints(rTarget);
    3367           0 : }
    3368             : 
    3369           0 : bool SdrDragCrook::EndSdrDrag(bool bCopy)
    3370             : {
    3371           0 :     Hide();
    3372             : 
    3373           0 :     if (bResize && aFact==Fraction(1,1))
    3374           0 :         bResize=false;
    3375             : 
    3376           0 :     const bool bUndo = getSdrDragView().IsUndoEnabled();
    3377             : 
    3378           0 :     bool bDoCrook=aCenter!=aMarkCenter && aRad.X()!=0 && aRad.Y()!=0;
    3379             : 
    3380           0 :     if (bDoCrook || bResize)
    3381             :     {
    3382           0 :         if (bResize && bUndo)
    3383             :         {
    3384           0 :             OUString aStr;
    3385           0 :             ImpTakeDescriptionStr(!bContortion?STR_EditCrook:STR_EditCrookContortion,aStr);
    3386             : 
    3387           0 :             if (bCopy)
    3388           0 :                 aStr += ImpGetResStr(STR_EditWithCopy);
    3389             : 
    3390           0 :             getSdrDragView().BegUndo(aStr);
    3391             :         }
    3392             : 
    3393           0 :         if (bResize)
    3394             :         {
    3395           0 :             Fraction aFact1(1,1);
    3396             : 
    3397           0 :             if (bContortion)
    3398             :             {
    3399           0 :                 if (bVertical)
    3400           0 :                     getSdrDragView().ResizeMarkedObj(aCenter,aFact1,aFact,bCopy);
    3401             :                 else
    3402           0 :                     getSdrDragView().ResizeMarkedObj(aCenter,aFact,aFact1,bCopy);
    3403             :             }
    3404             :             else
    3405             :             {
    3406           0 :                 if (bCopy)
    3407           0 :                     getSdrDragView().CopyMarkedObj();
    3408             : 
    3409           0 :                 const size_t nMarkAnz=getSdrDragView().GetMarkedObjectList().GetMarkCount();
    3410             : 
    3411           0 :                 for (size_t nm=0; nm<nMarkAnz; ++nm)
    3412             :                 {
    3413           0 :                     SdrMark* pM=getSdrDragView().GetMarkedObjectList().GetMark(nm);
    3414           0 :                     SdrObject* pO=pM->GetMarkedSdrObj();
    3415           0 :                     Point aCtr0(pO->GetSnapRect().Center());
    3416           0 :                     Point aCtr1(aCtr0);
    3417             : 
    3418           0 :                     if (bVertical)
    3419           0 :                         ResizePoint(aCtr1,aCenter,aFact1,aFact);
    3420             :                     else
    3421           0 :                         ResizePoint(aCtr1,aCenter,aFact,aFact1);
    3422             : 
    3423           0 :                     Size aSiz(aCtr1.X()-aCtr0.X(),aCtr1.Y()-aCtr0.Y());
    3424           0 :                     if( bUndo )
    3425           0 :                         AddUndo(getSdrDragView().GetModel()->GetSdrUndoFactory().CreateUndoMoveObject(*pO,aSiz));
    3426           0 :                     pO->Move(aSiz);
    3427             :                 }
    3428             :             }
    3429             : 
    3430           0 :             bCopy=false;
    3431             :         }
    3432             : 
    3433           0 :         if (bDoCrook)
    3434             :         {
    3435           0 :             getSdrDragView().CrookMarkedObj(aCenter,aRad,eMode,bVertical,!bContortion,bCopy);
    3436           0 :             getSdrDragView().SetLastCrookCenter(aCenter);
    3437             :         }
    3438             : 
    3439           0 :         if (bResize && bUndo)
    3440           0 :             getSdrDragView().EndUndo();
    3441             : 
    3442           0 :         return true;
    3443             :     }
    3444             : 
    3445           0 :     return false;
    3446             : }
    3447             : 
    3448           0 : Pointer SdrDragCrook::GetSdrDragPointer() const
    3449             : {
    3450           0 :     return Pointer(POINTER_CROOK);
    3451             : }
    3452             : 
    3453             : 
    3454             : 
    3455           0 : TYPEINIT1(SdrDragDistort,SdrDragMethod);
    3456             : 
    3457           0 : SdrDragDistort::SdrDragDistort(SdrDragView& rNewView)
    3458             : :   SdrDragMethod(rNewView),
    3459             :     nPolyPt(0),
    3460             :     bContortionAllowed(false),
    3461             :     bNoContortionAllowed(false),
    3462           0 :     bContortion(false)
    3463             : {
    3464           0 : }
    3465             : 
    3466           0 : void SdrDragDistort::TakeSdrDragComment(OUString& rStr) const
    3467             : {
    3468           0 :     ImpTakeDescriptionStr(STR_DragMethDistort, rStr);
    3469             : 
    3470           0 :     OUString aStr;
    3471             : 
    3472           0 :     rStr += " (x=";
    3473           0 :     getSdrDragView().GetModel()->TakeMetricStr(DragStat().GetDX(), aStr);
    3474           0 :     rStr += aStr + " y=";
    3475           0 :     getSdrDragView().GetModel()->TakeMetricStr(DragStat().GetDY(), aStr);
    3476           0 :     rStr += aStr + ")";
    3477             : 
    3478           0 :     if(getSdrDragView().IsDragWithCopy())
    3479           0 :         rStr += ImpGetResStr(STR_EditWithCopy);
    3480           0 : }
    3481             : 
    3482           0 : void SdrDragDistort::createSdrDragEntries()
    3483             : {
    3484             :     // Add extended frame raster first, so it will be behind objects
    3485           0 :     if(getSdrDragView().GetSdrPageView())
    3486             :     {
    3487           0 :         const basegfx::B2DPolyPolygon aDragRaster(impCreateDragRaster(*getSdrDragView().GetSdrPageView(), GetMarkedRect()));
    3488             : 
    3489           0 :         if(aDragRaster.count())
    3490             :         {
    3491           0 :             addSdrDragEntry(new SdrDragEntryPolyPolygon(aDragRaster));
    3492           0 :         }
    3493             :     }
    3494             : 
    3495             :     // call parent
    3496           0 :     SdrDragMethod::createSdrDragEntries();
    3497           0 : }
    3498             : 
    3499           0 : bool SdrDragDistort::BeginSdrDrag()
    3500             : {
    3501           0 :     bContortionAllowed=getSdrDragView().IsDistortAllowed(false);
    3502           0 :     bNoContortionAllowed=getSdrDragView().IsDistortAllowed(true);
    3503             : 
    3504           0 :     if (bContortionAllowed || bNoContortionAllowed)
    3505             :     {
    3506           0 :         SdrHdlKind eKind=GetDragHdlKind();
    3507           0 :         nPolyPt=0xFFFF;
    3508             : 
    3509           0 :         if (eKind==HDL_UPLFT) nPolyPt=0;
    3510           0 :         if (eKind==HDL_UPRGT) nPolyPt=1;
    3511           0 :         if (eKind==HDL_LWRGT) nPolyPt=2;
    3512           0 :         if (eKind==HDL_LWLFT) nPolyPt=3;
    3513           0 :         if (nPolyPt>3) return false;
    3514             : 
    3515           0 :         aMarkRect=GetMarkedRect();
    3516           0 :         aDistortedRect=XPolygon(aMarkRect);
    3517           0 :         Show();
    3518           0 :         return true;
    3519             :     }
    3520             :     else
    3521             :     {
    3522           0 :         return false;
    3523             :     }
    3524             : }
    3525             : 
    3526           0 : void SdrDragDistort::_MovAllPoints(basegfx::B2DPolyPolygon& rTarget)
    3527             : {
    3528           0 :     if (bContortion)
    3529             :     {
    3530           0 :         SdrPageView* pPV = getSdrDragView().GetSdrPageView();
    3531             : 
    3532           0 :         if(pPV)
    3533             :         {
    3534           0 :             if (pPV->HasMarkedObjPageView())
    3535             :             {
    3536           0 :                 basegfx::B2DPolyPolygon aDragPolygon(rTarget);
    3537           0 :                 const basegfx::B2DRange aOriginalRange(aMarkRect.Left(), aMarkRect.Top(), aMarkRect.Right(), aMarkRect.Bottom());
    3538           0 :                 const basegfx::B2DPoint aTopLeft(aDistortedRect[0].X(), aDistortedRect[0].Y());
    3539           0 :                 const basegfx::B2DPoint aTopRight(aDistortedRect[1].X(), aDistortedRect[1].Y());
    3540           0 :                 const basegfx::B2DPoint aBottomLeft(aDistortedRect[3].X(), aDistortedRect[3].Y());
    3541           0 :                 const basegfx::B2DPoint aBottomRight(aDistortedRect[2].X(), aDistortedRect[2].Y());
    3542             : 
    3543           0 :                 aDragPolygon = basegfx::tools::distort(aDragPolygon, aOriginalRange, aTopLeft, aTopRight, aBottomLeft, aBottomRight);
    3544           0 :                 rTarget = aDragPolygon;
    3545             :             }
    3546             :         }
    3547             :     }
    3548           0 : }
    3549             : 
    3550           0 : void SdrDragDistort::MoveSdrDrag(const Point& rPnt)
    3551             : {
    3552           0 :     if (DragStat().CheckMinMoved(rPnt))
    3553             :     {
    3554           0 :         Point aPnt(GetSnapPos(rPnt));
    3555             : 
    3556           0 :         if (getSdrDragView().IsOrtho())
    3557           0 :             OrthoDistance8(DragStat().GetStart(),aPnt,getSdrDragView().IsBigOrtho());
    3558             : 
    3559           0 :         bool bNeuContortion=(bContortionAllowed && !getSdrDragView().IsCrookNoContortion()) || !bNoContortionAllowed;
    3560             : 
    3561           0 :         if (bNeuContortion!=bContortion || aDistortedRect[nPolyPt]!=aPnt)
    3562             :         {
    3563           0 :             Hide();
    3564           0 :             aDistortedRect[nPolyPt]=aPnt;
    3565           0 :             bContortion=bNeuContortion;
    3566           0 :             DragStat().NextMove(aPnt);
    3567           0 :             Show();
    3568             :         }
    3569             :     }
    3570           0 : }
    3571             : 
    3572           0 : bool SdrDragDistort::EndSdrDrag(bool bCopy)
    3573             : {
    3574           0 :     Hide();
    3575           0 :     bool bDoDistort=DragStat().GetDX()!=0 || DragStat().GetDY()!=0;
    3576             : 
    3577           0 :     if (bDoDistort)
    3578             :     {
    3579           0 :         getSdrDragView().DistortMarkedObj(aMarkRect,aDistortedRect,!bContortion,bCopy);
    3580           0 :         return true;
    3581             :     }
    3582             : 
    3583           0 :     return false;
    3584             : }
    3585             : 
    3586           0 : Pointer SdrDragDistort::GetSdrDragPointer() const
    3587             : {
    3588           0 :     return Pointer(POINTER_REFHAND);
    3589             : }
    3590             : 
    3591           0 : void SdrDragDistort::applyCurrentTransformationToSdrObject(SdrObject& rTarget)
    3592             : {
    3593           0 :     const bool bDoDistort(DragStat().GetDX()!=0 || DragStat().GetDY()!=0);
    3594             : 
    3595           0 :     if (bDoDistort)
    3596             :     {
    3597           0 :         getSdrDragView().ImpDistortObj(&rTarget, aMarkRect, aDistortedRect, !bContortion);
    3598             :     }
    3599           0 : }
    3600             : 
    3601           0 : void SdrDragDistort::applyCurrentTransformationToPolyPolygon(basegfx::B2DPolyPolygon& rTarget)
    3602             : {
    3603             :     // use helper derived from old stuff
    3604           0 :     _MovAllPoints(rTarget);
    3605           0 : }
    3606             : 
    3607             : 
    3608             : 
    3609           0 : TYPEINIT1(SdrDragCrop,SdrDragResize);
    3610             : 
    3611           0 : SdrDragCrop::SdrDragCrop(SdrDragView& rNewView)
    3612           0 : :   SdrDragObjOwn(rNewView)
    3613             : {
    3614             :     // switch off solid dragging for crop; it just makes no sense since showing
    3615             :     // a 50% transparent object above the original will not be visible
    3616           0 :     setSolidDraggingActive(false);
    3617           0 : }
    3618             : 
    3619           0 : void SdrDragCrop::TakeSdrDragComment(OUString& rStr) const
    3620             : {
    3621           0 :     ImpTakeDescriptionStr(STR_DragMethCrop, rStr);
    3622             : 
    3623           0 :     OUString aStr;
    3624             : 
    3625           0 :     rStr += " (x=";
    3626           0 :     getSdrDragView().GetModel()->TakeMetricStr(DragStat().GetDX(), aStr);
    3627           0 :     rStr += aStr + " y=";
    3628           0 :     getSdrDragView().GetModel()->TakeMetricStr(DragStat().GetDY(), aStr);
    3629           0 :     rStr += aStr + ")";
    3630             : 
    3631           0 :     if(getSdrDragView().IsDragWithCopy())
    3632           0 :         rStr += ImpGetResStr(STR_EditWithCopy);
    3633           0 : }
    3634             : 
    3635           0 : bool SdrDragCrop::BeginSdrDrag()
    3636             : {
    3637             :     // call parent
    3638           0 :     bool bRetval(SdrDragObjOwn::BeginSdrDrag());
    3639             : 
    3640           0 :     if(!GetDragHdl())
    3641             :     {
    3642             :         // we need the DragHdl, break if not there
    3643           0 :         bRetval = false;
    3644             :     }
    3645             : 
    3646           0 :     return bRetval;
    3647             : }
    3648             : 
    3649           0 : bool SdrDragCrop::EndSdrDrag(bool /*bCopy*/)
    3650             : {
    3651           0 :     Hide();
    3652             : 
    3653           0 :     if( DragStat().GetDX()==0 && DragStat().GetDY()==0 )
    3654           0 :         return false;
    3655             : 
    3656           0 :     const SdrMarkList& rMarkList = getSdrDragView().GetMarkedObjectList();
    3657             : 
    3658           0 :     if( rMarkList.GetMarkCount() != 1 )
    3659           0 :         return false;
    3660             : 
    3661           0 :     SdrGrafObj* pObj = dynamic_cast<SdrGrafObj*>( rMarkList.GetMark( 0 )->GetMarkedSdrObj() );
    3662             : 
    3663           0 :     if( !pObj || (pObj->GetGraphicType() == GRAPHIC_NONE) || (pObj->GetGraphicType() == GRAPHIC_DEFAULT) )
    3664           0 :         return false;
    3665             : 
    3666           0 :     const GraphicObject& rGraphicObject = pObj->GetGraphicObject();
    3667           0 :     const MapMode aMapMode100thmm(MAP_100TH_MM);
    3668           0 :     Size aGraphicSize(rGraphicObject.GetPrefSize());
    3669             : 
    3670           0 :     if( MAP_PIXEL == rGraphicObject.GetPrefMapMode().GetMapUnit() )
    3671           0 :         aGraphicSize = Application::GetDefaultDevice()->PixelToLogic( aGraphicSize, aMapMode100thmm );
    3672             :     else
    3673           0 :         aGraphicSize = OutputDevice::LogicToLogic( aGraphicSize, rGraphicObject.GetPrefMapMode(), aMapMode100thmm);
    3674             : 
    3675           0 :     if( aGraphicSize.A() == 0 || aGraphicSize.B() == 0 )
    3676           0 :         return false;
    3677             : 
    3678           0 :     const SdrGrafCropItem& rOldCrop = static_cast<const SdrGrafCropItem&>(pObj->GetMergedItem(SDRATTR_GRAFCROP));
    3679             : 
    3680           0 :     const bool bUndo = getSdrDragView().IsUndoEnabled();
    3681             : 
    3682           0 :     if( bUndo )
    3683             :     {
    3684           0 :         OUString aUndoStr;
    3685           0 :         ImpTakeDescriptionStr(STR_DragMethCrop, aUndoStr);
    3686             : 
    3687           0 :         getSdrDragView().BegUndo( aUndoStr );
    3688           0 :         getSdrDragView().AddUndo( getSdrDragView().GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj));
    3689             :         // also need attr undo, the SdrGrafCropItem will be changed
    3690           0 :         getSdrDragView().AddUndo( getSdrDragView().GetModel()->GetSdrUndoFactory().CreateUndoAttrObject(*pObj));
    3691             :     }
    3692             : 
    3693             :     // new part to comute the user's drag activities
    3694             :     // get the original objects transformation
    3695           0 :     basegfx::B2DHomMatrix aOriginalMatrix;
    3696           0 :     basegfx::B2DPolyPolygon aPolyPolygon;
    3697           0 :     bool bShearCorrected(false);
    3698             : 
    3699             :     // get transformation from object
    3700           0 :     pObj->TRGetBaseGeometry(aOriginalMatrix, aPolyPolygon);
    3701             : 
    3702             :     {   // TTTT correct shear, it comes currently mirrored from TRGetBaseGeometry, can be removed with aw080
    3703           0 :         basegfx::B2DTuple aScale;
    3704           0 :         basegfx::B2DTuple aTranslate;
    3705           0 :         double fRotate(0.0), fShearX(0.0);
    3706             : 
    3707           0 :         aOriginalMatrix.decompose(aScale, aTranslate, fRotate, fShearX);
    3708             : 
    3709           0 :         if(!basegfx::fTools::equalZero(fShearX))
    3710             :         {
    3711           0 :             bShearCorrected = true;
    3712           0 :             aOriginalMatrix = basegfx::tools::createScaleShearXRotateTranslateB2DHomMatrix(
    3713             :                 aScale,
    3714             :                 -fShearX,
    3715             :                 fRotate,
    3716           0 :                 aTranslate);
    3717           0 :         }
    3718             :     }
    3719             : 
    3720             :     // invert it to be able to work on unit coordinates
    3721           0 :     basegfx::B2DHomMatrix aInverse(aOriginalMatrix);
    3722             : 
    3723           0 :     aInverse.invert();
    3724             : 
    3725             :     // gererate start point of original drag vector in unit coordinates (the
    3726             :     // vis-a-vis of the drag point)
    3727           0 :     basegfx::B2DPoint aLocalStart(0.0, 0.0);
    3728           0 :     bool bOnAxis(false);
    3729             : 
    3730           0 :     switch(GetDragHdlKind())
    3731             :     {
    3732           0 :         case HDL_UPLFT: aLocalStart.setX(1.0); aLocalStart.setY(1.0); break;
    3733           0 :         case HDL_UPPER: aLocalStart.setX(0.5); aLocalStart.setY(1.0); bOnAxis = true; break;
    3734           0 :         case HDL_UPRGT: aLocalStart.setX(0.0); aLocalStart.setY(1.0); break;
    3735           0 :         case HDL_LEFT : aLocalStart.setX(1.0); aLocalStart.setY(0.5); bOnAxis = true; break;
    3736           0 :         case HDL_RIGHT: aLocalStart.setX(0.0); aLocalStart.setY(0.5); bOnAxis = true; break;
    3737           0 :         case HDL_LWLFT: aLocalStart.setX(1.0); aLocalStart.setY(0.0); break;
    3738           0 :         case HDL_LOWER: aLocalStart.setX(0.5); aLocalStart.setY(0.0); bOnAxis = true; break;
    3739           0 :         case HDL_LWRGT: aLocalStart.setX(0.0); aLocalStart.setY(0.0); break;
    3740           0 :         default: break;
    3741             :     }
    3742             : 
    3743             :     // create the current drag position in unit coordinates
    3744           0 :     basegfx::B2DPoint aLocalCurrent(aInverse * basegfx::B2DPoint(DragStat().GetNow().X(), DragStat().GetNow().Y()));
    3745             : 
    3746             :     // if one of the edge handles is used, limit to X or Y drag only
    3747           0 :     if(bOnAxis)
    3748             :     {
    3749           0 :         if(basegfx::fTools::equal(aLocalStart.getX(), 0.5))
    3750             :         {
    3751           0 :             aLocalCurrent.setX(aLocalStart.getX());
    3752             :         }
    3753             :         else
    3754             :         {
    3755           0 :             aLocalCurrent.setY(aLocalStart.getY());
    3756             :         }
    3757             :     }
    3758             : 
    3759             :     // create internal change in unit coordinates
    3760           0 :     basegfx::B2DHomMatrix aDiscreteChangeMatrix;
    3761             : 
    3762           0 :     if(!basegfx::fTools::equal(aLocalCurrent.getX(), aLocalStart.getX()))
    3763             :     {
    3764           0 :         if(aLocalStart.getX() < 0.5)
    3765             :         {
    3766           0 :             aDiscreteChangeMatrix.scale(aLocalCurrent.getX(), 1.0);
    3767             :         }
    3768             :         else
    3769             :         {
    3770           0 :             aDiscreteChangeMatrix.scale(1.0 - aLocalCurrent.getX(), 1.0);
    3771           0 :             aDiscreteChangeMatrix.translate(aLocalCurrent.getX(), 0.0);
    3772             :         }
    3773             :     }
    3774             : 
    3775           0 :     if(!basegfx::fTools::equal(aLocalCurrent.getY(), aLocalStart.getY()))
    3776             :     {
    3777           0 :         if(aLocalStart.getY() < 0.5)
    3778             :         {
    3779           0 :             aDiscreteChangeMatrix.scale(1.0, aLocalCurrent.getY());
    3780             :         }
    3781             :         else
    3782             :         {
    3783           0 :             aDiscreteChangeMatrix.scale(1.0, 1.0 - aLocalCurrent.getY());
    3784           0 :             aDiscreteChangeMatrix.translate(0.0, aLocalCurrent.getY());
    3785             :         }
    3786             :     }
    3787             : 
    3788             :     // preparematrix to apply to object; evtl. back-correct shear
    3789           0 :     basegfx::B2DHomMatrix aNewObjectMatrix(aOriginalMatrix * aDiscreteChangeMatrix);
    3790             : 
    3791           0 :     if(bShearCorrected)
    3792             :     {
    3793             :         // TTTT back-correct shear
    3794           0 :         basegfx::B2DTuple aScale;
    3795           0 :         basegfx::B2DTuple aTranslate;
    3796           0 :         double fRotate(0.0), fShearX(0.0);
    3797             : 
    3798           0 :         aNewObjectMatrix.decompose(aScale, aTranslate, fRotate, fShearX);
    3799           0 :         aNewObjectMatrix = basegfx::tools::createScaleShearXRotateTranslateB2DHomMatrix(
    3800             :             aScale,
    3801             :             -fShearX,
    3802             :             fRotate,
    3803           0 :             aTranslate);
    3804             :     }
    3805             : 
    3806             :     // apply change to object by applying the unit coordinate change followed
    3807             :     // by the original change
    3808           0 :     pObj->TRSetBaseGeometry(aNewObjectMatrix, aPolyPolygon);
    3809             : 
    3810             :     // the following old code uses aOldRect/aNewRect to calculate the crop change for
    3811             :     // the crop item. It implies unrotated objects, so create the unrotated original
    3812             :     // erctangle and the unrotated modified rectangle. Latter can in case of shear and/or
    3813             :     // rotation not be fetched by using
    3814             : 
    3815             :     //Rectangle aNewRect( pObj->GetLogicRect() );
    3816             : 
    3817             :     // as it was done before because the top-left of that new rect *will* have an offset
    3818             :     // caused by the evtl. existing shear and/or rotation, so calculate a unrotated
    3819             :     // rectangle how it would be as a result when appling the unit coordinate change
    3820             :     // to the unrotated original transformation.
    3821           0 :     basegfx::B2DTuple aScale;
    3822           0 :     basegfx::B2DTuple aTranslate;
    3823             :     double fRotate, fShearX;
    3824             : 
    3825             :     // get access to scale and translate
    3826           0 :     aOriginalMatrix.decompose(aScale, aTranslate, fRotate, fShearX);
    3827             : 
    3828             :     // prepare unsheared/unrotated versions of the old and new transformation
    3829             :     const basegfx::B2DHomMatrix aMatrixOriginalNoShearNoRotate(
    3830             :         basegfx::tools::createScaleTranslateB2DHomMatrix(
    3831             :             basegfx::absolute(aScale),
    3832           0 :             aTranslate));
    3833             : 
    3834             :     // create the ranges for these
    3835           0 :     basegfx::B2DRange aRangeOriginalNoShearNoRotate(0.0, 0.0, 1.0, 1.0);
    3836           0 :     basegfx::B2DRange aRangeNewNoShearNoRotate(0.0, 0.0, 1.0, 1.0);
    3837             : 
    3838           0 :     aRangeOriginalNoShearNoRotate.transform(aMatrixOriginalNoShearNoRotate);
    3839           0 :     aRangeNewNoShearNoRotate.transform(aMatrixOriginalNoShearNoRotate * aDiscreteChangeMatrix);
    3840             : 
    3841             :     // extract the old Rectangle structures
    3842             :     Rectangle aOldRect(
    3843           0 :         basegfx::fround(aRangeOriginalNoShearNoRotate.getMinX()),
    3844           0 :         basegfx::fround(aRangeOriginalNoShearNoRotate.getMinY()),
    3845           0 :         basegfx::fround(aRangeOriginalNoShearNoRotate.getMaxX()),
    3846           0 :         basegfx::fround(aRangeOriginalNoShearNoRotate.getMaxY()));
    3847             :     Rectangle aNewRect(
    3848           0 :         basegfx::fround(aRangeNewNoShearNoRotate.getMinX()),
    3849           0 :         basegfx::fround(aRangeNewNoShearNoRotate.getMinY()),
    3850           0 :         basegfx::fround(aRangeNewNoShearNoRotate.getMaxX()),
    3851           0 :         basegfx::fround(aRangeNewNoShearNoRotate.getMaxY()));
    3852             : 
    3853             :     // continue with the old original stuff
    3854           0 :     double fScaleX = ( aGraphicSize.Width() - rOldCrop.GetLeft() - rOldCrop.GetRight() ) / (double)aOldRect.GetWidth();
    3855           0 :     double fScaleY = ( aGraphicSize.Height() - rOldCrop.GetTop() - rOldCrop.GetBottom() ) / (double)aOldRect.GetHeight();
    3856             : 
    3857             :     // not needed since the modification is done in unit coordinates, free from shear/rotate and mirror
    3858             :     // // TTTT may be removed or exhanged by other stuff in aw080
    3859             :     // // to correct the never working combination of cropped images and mirroring
    3860             :     // // I have to correct the rectangles the calculation is based on here. In the current
    3861             :     // // core geometry stuff a vertical mirror is expressed as 180 degree rotation. All
    3862             :     // // this can be removed again when aw080 will have cleaned up the old
    3863             :     // // (non-)transformation mess in the core.
    3864             :     // if(18000 == pObj->GetGeoStat().nRotationAngle)
    3865             :     // {
    3866             :     //     // old notation of vertical mirror, need to correct diffs since both rects
    3867             :     //     // are rotated by 180 degrees
    3868             :     //     aOldRect = Rectangle(aOldRect.TopLeft() - (aOldRect.BottomRight() - aOldRect.TopLeft()), aOldRect.TopLeft());
    3869             :     //     aNewRect = Rectangle(aNewRect.TopLeft() - (aNewRect.BottomRight() - aNewRect.TopLeft()), aNewRect.TopLeft());
    3870             :     // }
    3871             : 
    3872           0 :     sal_Int32 nDiffLeft = aNewRect.Left() - aOldRect.Left();
    3873           0 :     sal_Int32 nDiffTop = aNewRect.Top() - aOldRect.Top();
    3874           0 :     sal_Int32 nDiffRight = aNewRect.Right() - aOldRect.Right();
    3875           0 :     sal_Int32 nDiffBottom = aNewRect.Bottom() - aOldRect.Bottom();
    3876             : 
    3877           0 :     if(pObj->IsMirrored())
    3878             :     {
    3879             :         // mirrored X or Y, for old stuff, exchange X
    3880             :         // TTTT: check for aw080
    3881           0 :         sal_Int32 nTmp(nDiffLeft);
    3882           0 :         nDiffLeft = -nDiffRight;
    3883           0 :         nDiffRight = -nTmp;
    3884             :     }
    3885             : 
    3886           0 :     sal_Int32 nLeftCrop = static_cast<sal_Int32>( rOldCrop.GetLeft() + nDiffLeft * fScaleX );
    3887           0 :     sal_Int32 nTopCrop = static_cast<sal_Int32>( rOldCrop.GetTop() + nDiffTop * fScaleY );
    3888           0 :     sal_Int32 nRightCrop = static_cast<sal_Int32>( rOldCrop.GetRight() - nDiffRight * fScaleX );
    3889           0 :     sal_Int32 nBottomCrop = static_cast<sal_Int32>( rOldCrop.GetBottom() - nDiffBottom * fScaleY );
    3890             : 
    3891           0 :     SfxItemPool& rPool = getSdrDragView().GetModel()->GetItemPool();
    3892           0 :     SfxItemSet aSet( rPool, SDRATTR_GRAFCROP, SDRATTR_GRAFCROP );
    3893           0 :     aSet.Put( SdrGrafCropItem( nLeftCrop, nTopCrop, nRightCrop, nBottomCrop ) );
    3894           0 :     getSdrDragView().SetAttributes( aSet, false );
    3895             : 
    3896           0 :     if( bUndo )
    3897           0 :         getSdrDragView().EndUndo();
    3898             : 
    3899           0 :     return true;
    3900             : }
    3901             : 
    3902           0 : Pointer SdrDragCrop::GetSdrDragPointer() const
    3903             : {
    3904           0 :     return Pointer(POINTER_CROP);
    3905         651 : }
    3906             : 
    3907             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10