/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include "svx/svdstr.hrc" #include "svdglob.hxx" #include #include #include #include SdrGlueEditView::SdrGlueEditView(SdrModel* pModel1, OutputDevice* pOut): SdrPolyEditView(pModel1,pOut) { } SdrGlueEditView::~SdrGlueEditView() { } void SdrGlueEditView::ImpDoMarkedGluePoints(PGlueDoFunc pDoFunc, bool bConst, const void* p1, const void* p2, const void* p3, const void* p4, const void* p5) { const size_t nMarkCount=GetMarkedObjectCount(); for (size_t nm=0; nmGetMarkedSdrObj(); const SdrUShortCont* pPts=pM->GetMarkedGluePoints(); sal_uIntPtr nPointCount=pPts==nullptr ? 0 : pPts->size(); if (nPointCount!=0) { SdrGluePointList* pGPL=nullptr; if (bConst) { const SdrGluePointList* pConstGPL=pObj->GetGluePointList(); pGPL=const_cast(pConstGPL); } else { pGPL=pObj->ForceGluePointList(); } if (pGPL!=nullptr) { if(!bConst && IsUndoEnabled() ) AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj)); for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it) { sal_uInt16 nPtId=*it; sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId); if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND) { SdrGluePoint& rGP=(*pGPL)[nGlueIdx]; (*pDoFunc)(rGP,pObj,p1,p2,p3,p4,p5); } } if (!bConst) { pObj->SetChanged(); pObj->BroadcastObjectChange(); } } } } if (!bConst && nMarkCount!=0) mpModel->SetChanged(); } static void ImpGetEscDir(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pbFirst, const void* pnThisEsc, const void* pnRet, const void*, const void*) { sal_uInt16& nRet=*const_cast(static_cast(pnRet)); if (nRet!=FUZZY) { SdrEscapeDirection nEsc = rGP.GetEscDir(); bool bOn = bool(nEsc & *static_cast(pnThisEsc)); bool& bFirst=*const_cast(static_cast(pbFirst)); if (bFirst) { nRet = bOn ? 1 : 0; bFirst = false; } else if (nRet != (bOn ? 1 : 0)) nRet=FUZZY; } } SDR_TRISTATE SdrGlueEditView::IsMarkedGluePointsEscDir(SdrEscapeDirection nThisEsc) const { ForceUndirtyMrkPnt(); bool bFirst=true; sal_uInt16 nRet=0; const_cast(this)->ImpDoMarkedGluePoints(ImpGetEscDir,true,&bFirst,&nThisEsc,&nRet); return (SDR_TRISTATE)nRet; } static void ImpSetEscDir(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pnThisEsc, const void* pbOn, const void*, const void*, const void*) { SdrEscapeDirection nEsc=rGP.GetEscDir(); if (*static_cast(pbOn)) nEsc |= *static_cast(pnThisEsc); else nEsc &= ~*static_cast(pnThisEsc); rGP.SetEscDir(nEsc); } void SdrGlueEditView::SetMarkedGluePointsEscDir(SdrEscapeDirection nThisEsc, bool bOn) { ForceUndirtyMrkPnt(); BegUndo(ImpGetResStr(STR_EditSetGlueEscDir),GetDescriptionOfMarkedGluePoints()); ImpDoMarkedGluePoints(ImpSetEscDir,false,&nThisEsc,&bOn); EndUndo(); } static void ImpGetPercent(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pbFirst, const void* pnRet, const void*, const void*, const void*) { sal_uInt16& nRet=*const_cast(static_cast(pnRet)); if (nRet!=FUZZY) { bool bOn=rGP.IsPercent(); bool& bFirst=*const_cast(static_cast(pbFirst)); if (bFirst) { nRet=sal_uInt16(bOn); bFirst=false; } else if ((nRet!=0)!=bOn) nRet=FUZZY; } } SDR_TRISTATE SdrGlueEditView::IsMarkedGluePointsPercent() const { ForceUndirtyMrkPnt(); bool bFirst=true; sal_uInt16 nRet=sal_uInt16(true); const_cast(this)->ImpDoMarkedGluePoints(ImpGetPercent,true,&bFirst,&nRet); return (SDR_TRISTATE)nRet; } static void ImpSetPercent(SdrGluePoint& rGP, const SdrObject* pObj, const void* pbOn, const void*, const void*, const void*, const void*) { Point aPos(rGP.GetAbsolutePos(*pObj)); rGP.SetPercent(*static_cast(pbOn)); rGP.SetAbsolutePos(aPos,*pObj); } void SdrGlueEditView::SetMarkedGluePointsPercent(bool bOn) { ForceUndirtyMrkPnt(); BegUndo(ImpGetResStr(STR_EditSetGluePercent),GetDescriptionOfMarkedGluePoints()); ImpDoMarkedGluePoints(ImpSetPercent,false,&bOn); EndUndo(); } static void ImpGetAlign(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pbFirst, const void* pbDontCare, const void* pbVert, const void* pnRet, const void*) { SdrAlign& nRet=*const_cast(static_cast(pnRet)); bool& bDontCare=*const_cast(static_cast(pbDontCare)); bool bVert=*static_cast(pbVert); if (!bDontCare) { SdrAlign nAlg=SdrAlign::NONE; if (bVert) { nAlg=rGP.GetVertAlign(); } else { nAlg=rGP.GetHorzAlign(); } bool& bFirst=*const_cast(static_cast(pbFirst)); if (bFirst) { nRet=nAlg; bFirst=false; } else if (nRet!=nAlg) { if (bVert) { nRet=SdrAlign::VERT_DONTCARE; } else { nRet=SdrAlign::HORZ_DONTCARE; } bDontCare=true; } } } SdrAlign SdrGlueEditView::GetMarkedGluePointsAlign(bool bVert) const { ForceUndirtyMrkPnt(); bool bFirst=true; bool bDontCare=false; SdrAlign nRet=SdrAlign::NONE; const_cast(this)->ImpDoMarkedGluePoints(ImpGetAlign,true,&bFirst,&bDontCare,&bVert,&nRet); return nRet; } static void ImpSetAlign(SdrGluePoint& rGP, const SdrObject* pObj, const void* pbVert, const void* pnAlign, const void*, const void*, const void*) { Point aPos(rGP.GetAbsolutePos(*pObj)); if (*static_cast(pbVert)) { // bVert? rGP.SetVertAlign(*static_cast(pnAlign)); } else { rGP.SetHorzAlign(*static_cast(pnAlign)); } rGP.SetAbsolutePos(aPos,*pObj); } void SdrGlueEditView::SetMarkedGluePointsAlign(bool bVert, SdrAlign nAlign) { ForceUndirtyMrkPnt(); BegUndo(ImpGetResStr(STR_EditSetGlueAlign),GetDescriptionOfMarkedGluePoints()); ImpDoMarkedGluePoints(ImpSetAlign,false,&bVert,&nAlign); EndUndo(); } void SdrGlueEditView::DeleteMarkedGluePoints() { BrkAction(); ForceUndirtyMrkPnt(); const bool bUndo = IsUndoEnabled(); if( bUndo ) BegUndo(ImpGetResStr(STR_EditDelete),GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_DELETE); const size_t nMarkCount=GetMarkedObjectCount(); for (size_t nm=0; nmGetMarkedSdrObj(); const SdrUShortCont* pPts=pM->GetMarkedGluePoints(); sal_uIntPtr nPointCount=pPts==nullptr ? 0 : pPts->size(); if (nPointCount!=0) { SdrGluePointList* pGPL=pObj->ForceGluePointList(); if (pGPL!=nullptr) { if( bUndo ) AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj)); for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it) { sal_uInt16 nPtId=*it; sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId); if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND) { pGPL->Delete(nGlueIdx); } } pObj->SetChanged(); pObj->BroadcastObjectChange(); } } } if( bUndo ) EndUndo(); UnmarkAllGluePoints(); if (nMarkCount!=0) mpModel->SetChanged(); } void SdrGlueEditView::ImpCopyMarkedGluePoints() { const bool bUndo = IsUndoEnabled(); if( bUndo ) BegUndo(); const size_t nMarkCount=GetMarkedObjectCount(); for (size_t nm=0; nmGetMarkedSdrObj(); SdrUShortCont* pPts=pM->GetMarkedGluePoints(); SdrGluePointList* pGPL=pObj->ForceGluePointList(); sal_uIntPtr nPointCount=pPts==nullptr ? 0 : pPts->size(); if (nPointCount!=0 && pGPL!=nullptr) { if( bUndo ) AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj)); SdrUShortCont aIdsToErase; SdrUShortCont aIdsToInsert; for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it) { sal_uInt16 nPtId=*it; sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId); if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND) { SdrGluePoint aNewGP((*pGPL)[nGlueIdx]); // clone GluePoint sal_uInt16 nNewIdx=pGPL->Insert(aNewGP); // and insert it sal_uInt16 nNewId=(*pGPL)[nNewIdx].GetId(); // retrieve ID of new GluePoints aIdsToErase.insert(nPtId); // select it (instead of the old one) aIdsToInsert.insert(nNewId); } } for(SdrUShortCont::const_iterator it = aIdsToErase.begin(); it != aIdsToErase.end(); ++it) pPts->erase(*it); pPts->insert(aIdsToInsert.begin(), aIdsToInsert.end()); } } if( bUndo ) EndUndo(); if (nMarkCount!=0) mpModel->SetChanged(); } void SdrGlueEditView::ImpTransformMarkedGluePoints(PGlueTrFunc pTrFunc, const void* p1, const void* p2, const void* p3, const void* p4, const void* p5) { const size_t nMarkCount=GetMarkedObjectCount(); for (size_t nm=0; nmGetMarkedSdrObj(); const SdrUShortCont* pPts=pM->GetMarkedGluePoints(); sal_uIntPtr nPointCount=pPts==nullptr ? 0 : pPts->size(); if (nPointCount!=0) { SdrGluePointList* pGPL=pObj->ForceGluePointList(); if (pGPL!=nullptr) { if( IsUndoEnabled() ) AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj)); for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it) { sal_uInt16 nPtId=*it; sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId); if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND) { SdrGluePoint& rGP=(*pGPL)[nGlueIdx]; Point aPos(rGP.GetAbsolutePos(*pObj)); (*pTrFunc)(aPos,p1,p2,p3,p4,p5); rGP.SetAbsolutePos(aPos,*pObj); } } pObj->SetChanged(); pObj->BroadcastObjectChange(); } } } if (nMarkCount!=0) mpModel->SetChanged(); } static void ImpMove(Point& rPt, const void* p1, const void* /*p2*/, const void* /*p3*/, const void* /*p4*/, const void* /*p5*/) { rPt.X()+=static_cast(p1)->Width(); rPt.Y()+=static_cast(p1)->Height(); } void SdrGlueEditView::MoveMarkedGluePoints(const Size& rSiz, bool bCopy) { ForceUndirtyMrkPnt(); OUString aStr(ImpGetResStr(STR_EditMove)); if (bCopy) aStr += ImpGetResStr(STR_EditWithCopy); BegUndo(aStr,GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_MOVE); if (bCopy) ImpCopyMarkedGluePoints(); ImpTransformMarkedGluePoints(ImpMove,&rSiz); EndUndo(); AdjustMarkHdl(); } static void ImpResize(Point& rPt, const void* p1, const void* p2, const void* p3, const void* /*p4*/, const void* /*p5*/) { ResizePoint(rPt,*static_cast(p1),*static_cast(p2),*static_cast(p3)); } void SdrGlueEditView::ResizeMarkedGluePoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact, bool bCopy) { ForceUndirtyMrkPnt(); OUString aStr(ImpGetResStr(STR_EditResize)); if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy); BegUndo(aStr,GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_RESIZE); if (bCopy) ImpCopyMarkedGluePoints(); ImpTransformMarkedGluePoints(ImpResize,&rRef,&xFact,&yFact); EndUndo(); AdjustMarkHdl(); } static void ImpRotate(Point& rPt, const void* p1, const void* /*p2*/, const void* p3, const void* p4, const void* /*p5*/) { RotatePoint(rPt,*static_cast(p1),*static_cast(p3),*static_cast(p4)); } void SdrGlueEditView::RotateMarkedGluePoints(const Point& rRef, long nAngle, bool bCopy) { ForceUndirtyMrkPnt(); OUString aStr(ImpGetResStr(STR_EditRotate)); if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy); BegUndo(aStr,GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_ROTATE); if (bCopy) ImpCopyMarkedGluePoints(); double nSin=sin(nAngle*nPi180); double nCos=cos(nAngle*nPi180); ImpTransformMarkedGluePoints(ImpRotate,&rRef,&nAngle,&nSin,&nCos); EndUndo(); AdjustMarkHdl(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */