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 :
21 : #include <svx/svdglev.hxx>
22 : #include <math.h>
23 :
24 : #include <svx/svdundo.hxx>
25 : #include "svx/svdstr.hrc" // names taken from the resource
26 : #include "svx/svdglob.hxx" // StringCache
27 : #include <svx/svdpagv.hxx>
28 : #include <svx/svdglue.hxx>
29 : #include <svx/svdtrans.hxx>
30 : #include <svx/svdobj.hxx>
31 :
32 : ////////////////////////////////////////////////////////////////////////////////////////////////////
33 :
34 640 : void SdrGlueEditView::ImpClearVars()
35 : {
36 640 : }
37 :
38 640 : SdrGlueEditView::SdrGlueEditView(SdrModel* pModel1, OutputDevice* pOut):
39 640 : SdrPolyEditView(pModel1,pOut)
40 : {
41 640 : ImpClearVars();
42 640 : }
43 :
44 286 : SdrGlueEditView::~SdrGlueEditView()
45 : {
46 286 : }
47 :
48 : ////////////////////////////////////////////////////////////////////////////////////////////////////
49 :
50 0 : void SdrGlueEditView::ImpDoMarkedGluePoints(PGlueDoFunc pDoFunc, sal_Bool bConst, const void* p1, const void* p2, const void* p3, const void* p4, const void* p5)
51 : {
52 0 : sal_uIntPtr nMarkAnz=GetMarkedObjectCount();
53 0 : for (sal_uIntPtr nm=0; nm<nMarkAnz; nm++) {
54 0 : SdrMark* pM=GetSdrMarkByIndex(nm);
55 0 : SdrObject* pObj=pM->GetMarkedSdrObj();
56 0 : const SdrUShortCont* pPts=pM->GetMarkedGluePoints();
57 0 : sal_uIntPtr nPtAnz=pPts==NULL ? 0 : pPts->size();
58 0 : if (nPtAnz!=0) {
59 0 : SdrGluePointList* pGPL=NULL;
60 0 : if (bConst) {
61 0 : const SdrGluePointList* pConstGPL=pObj->GetGluePointList();
62 0 : pGPL=(SdrGluePointList*)pConstGPL;
63 : } else {
64 0 : pGPL=pObj->ForceGluePointList();
65 : }
66 0 : if (pGPL!=NULL)
67 : {
68 0 : if(!bConst && IsUndoEnabled() )
69 0 : AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj));
70 :
71 0 : for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it)
72 : {
73 0 : sal_uInt16 nPtId=*it;
74 0 : sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId);
75 0 : if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND)
76 : {
77 0 : SdrGluePoint& rGP=(*pGPL)[nGlueIdx];
78 0 : (*pDoFunc)(rGP,pObj,p1,p2,p3,p4,p5);
79 : }
80 : }
81 0 : if (!bConst)
82 : {
83 0 : pObj->SetChanged();
84 0 : pObj->BroadcastObjectChange();
85 : }
86 : }
87 : }
88 : }
89 0 : if (!bConst && nMarkAnz!=0) pMod->SetChanged();
90 0 : }
91 :
92 : ////////////////////////////////////////////////////////////////////////////////////////////////////
93 :
94 0 : static void ImpGetEscDir(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pbFirst, const void* pnThisEsc, const void* pnRet, const void*, const void*)
95 : {
96 0 : sal_uInt16& nRet=*(sal_uInt16*)pnRet;
97 0 : sal_Bool& bFirst=*(sal_Bool*)pbFirst;
98 0 : if (nRet!=FUZZY) {
99 0 : sal_uInt16 nEsc=rGP.GetEscDir();
100 0 : sal_Bool bOn=(nEsc & *(sal_uInt16*)pnThisEsc)!=0;
101 0 : if (bFirst) { nRet=bOn; bFirst=sal_False; }
102 0 : else if (nRet!=bOn) nRet=FUZZY;
103 : }
104 0 : }
105 :
106 0 : TRISTATE SdrGlueEditView::IsMarkedGluePointsEscDir(sal_uInt16 nThisEsc) const
107 : {
108 0 : ForceUndirtyMrkPnt();
109 0 : sal_Bool bFirst=sal_True;
110 0 : sal_uInt16 nRet=sal_False;
111 0 : ((SdrGlueEditView*)this)->ImpDoMarkedGluePoints(ImpGetEscDir,sal_True,&bFirst,&nThisEsc,&nRet);
112 0 : return (TRISTATE)nRet;
113 : }
114 :
115 0 : static void ImpSetEscDir(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pnThisEsc, const void* pbOn, const void*, const void*, const void*)
116 : {
117 0 : sal_uInt16 nEsc=rGP.GetEscDir();
118 0 : if (*(sal_Bool*)pbOn) nEsc|=*(sal_uInt16*)pnThisEsc;
119 0 : else nEsc&=~*(sal_uInt16*)pnThisEsc;
120 0 : rGP.SetEscDir(nEsc);
121 0 : }
122 :
123 0 : void SdrGlueEditView::SetMarkedGluePointsEscDir(sal_uInt16 nThisEsc, sal_Bool bOn)
124 : {
125 0 : ForceUndirtyMrkPnt();
126 0 : BegUndo(ImpGetResStr(STR_EditSetGlueEscDir),GetDescriptionOfMarkedGluePoints());
127 0 : ImpDoMarkedGluePoints(ImpSetEscDir,sal_False,&nThisEsc,&bOn);
128 0 : EndUndo();
129 0 : }
130 :
131 : ////////////////////////////////////////////////////////////////////////////////////////////////////
132 :
133 0 : static void ImpGetPercent(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pbFirst, const void* pnRet, const void*, const void*, const void*)
134 : {
135 0 : sal_uInt16& nRet=*(sal_uInt16*)pnRet;
136 0 : sal_Bool& bFirst=*(sal_Bool*)pbFirst;
137 0 : if (nRet!=FUZZY) {
138 0 : bool bOn=rGP.IsPercent();
139 0 : if (bFirst) { nRet=bOn; bFirst=sal_False; }
140 0 : else if ((nRet!=0)!=bOn) nRet=FUZZY;
141 : }
142 0 : }
143 :
144 0 : TRISTATE SdrGlueEditView::IsMarkedGluePointsPercent() const
145 : {
146 0 : ForceUndirtyMrkPnt();
147 0 : sal_Bool bFirst=sal_True;
148 0 : sal_uInt16 nRet=sal_True;
149 0 : ((SdrGlueEditView*)this)->ImpDoMarkedGluePoints(ImpGetPercent,sal_True,&bFirst,&nRet);
150 0 : return (TRISTATE)nRet;
151 : }
152 :
153 0 : static void ImpSetPercent(SdrGluePoint& rGP, const SdrObject* pObj, const void* pbOn, const void*, const void*, const void*, const void*)
154 : {
155 0 : Point aPos(rGP.GetAbsolutePos(*pObj));
156 0 : rGP.SetPercent(*(sal_Bool*)pbOn);
157 0 : rGP.SetAbsolutePos(aPos,*pObj);
158 0 : }
159 :
160 0 : void SdrGlueEditView::SetMarkedGluePointsPercent(sal_Bool bOn)
161 : {
162 0 : ForceUndirtyMrkPnt();
163 0 : BegUndo(ImpGetResStr(STR_EditSetGluePercent),GetDescriptionOfMarkedGluePoints());
164 0 : ImpDoMarkedGluePoints(ImpSetPercent,sal_False,&bOn);
165 0 : EndUndo();
166 0 : }
167 :
168 : ////////////////////////////////////////////////////////////////////////////////////////////////////
169 :
170 0 : static void ImpGetAlign(SdrGluePoint& rGP, const SdrObject* /*pObj*/, const void* pbFirst, const void* pbDontCare, const void* pbVert, const void* pnRet, const void*)
171 : {
172 0 : sal_uInt16& nRet=*(sal_uInt16*)pnRet;
173 0 : sal_Bool& bFirst=*(sal_Bool*)pbFirst;
174 0 : sal_Bool& bDontCare=*(sal_Bool*)pbDontCare;
175 0 : sal_Bool bVert=*(sal_Bool*)pbVert;
176 0 : if (!bDontCare) {
177 0 : sal_uInt16 nAlg=0;
178 0 : if (bVert) {
179 0 : nAlg=rGP.GetVertAlign();
180 : } else {
181 0 : nAlg=rGP.GetHorzAlign();
182 : }
183 0 : if (bFirst) { nRet=nAlg; bFirst=sal_False; }
184 0 : else if (nRet!=nAlg) {
185 0 : if (bVert) {
186 0 : nRet=SDRVERTALIGN_DONTCARE;
187 : } else {
188 0 : nRet=SDRHORZALIGN_DONTCARE;
189 : }
190 0 : bDontCare=sal_True;
191 : }
192 : }
193 0 : }
194 :
195 0 : sal_uInt16 SdrGlueEditView::GetMarkedGluePointsAlign(sal_Bool bVert) const
196 : {
197 0 : ForceUndirtyMrkPnt();
198 0 : sal_Bool bFirst=sal_True;
199 0 : sal_Bool bDontCare=sal_False;
200 0 : sal_uInt16 nRet=0;
201 0 : ((SdrGlueEditView*)this)->ImpDoMarkedGluePoints(ImpGetAlign,sal_True,&bFirst,&bDontCare,&bVert,&nRet);
202 0 : return nRet;
203 : }
204 :
205 0 : static void ImpSetAlign(SdrGluePoint& rGP, const SdrObject* pObj, const void* pbVert, const void* pnAlign, const void*, const void*, const void*)
206 : {
207 0 : Point aPos(rGP.GetAbsolutePos(*pObj));
208 0 : if (*(sal_Bool*)pbVert) { // bVert?
209 0 : rGP.SetVertAlign(*(sal_uInt16*)pnAlign);
210 : } else {
211 0 : rGP.SetHorzAlign(*(sal_uInt16*)pnAlign);
212 : }
213 0 : rGP.SetAbsolutePos(aPos,*pObj);
214 0 : }
215 :
216 0 : void SdrGlueEditView::SetMarkedGluePointsAlign(sal_Bool bVert, sal_uInt16 nAlign)
217 : {
218 0 : ForceUndirtyMrkPnt();
219 0 : BegUndo(ImpGetResStr(STR_EditSetGlueAlign),GetDescriptionOfMarkedGluePoints());
220 0 : ImpDoMarkedGluePoints(ImpSetAlign,sal_False,&bVert,&nAlign);
221 0 : EndUndo();
222 0 : }
223 :
224 0 : void SdrGlueEditView::DeleteMarkedGluePoints()
225 : {
226 0 : BrkAction();
227 0 : ForceUndirtyMrkPnt();
228 0 : const bool bUndo = IsUndoEnabled();
229 0 : if( bUndo )
230 0 : BegUndo(ImpGetResStr(STR_EditDelete),GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_DELETE);
231 :
232 0 : sal_uIntPtr nMarkAnz=GetMarkedObjectCount();
233 0 : for (sal_uIntPtr nm=0; nm<nMarkAnz; nm++)
234 : {
235 0 : SdrMark* pM=GetSdrMarkByIndex(nm);
236 0 : SdrObject* pObj=pM->GetMarkedSdrObj();
237 0 : const SdrUShortCont* pPts=pM->GetMarkedGluePoints();
238 0 : sal_uIntPtr nPtAnz=pPts==NULL ? 0 : pPts->size();
239 0 : if (nPtAnz!=0)
240 : {
241 0 : SdrGluePointList* pGPL=pObj->ForceGluePointList();
242 0 : if (pGPL!=NULL)
243 : {
244 0 : if( bUndo )
245 0 : AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj));
246 :
247 0 : for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it)
248 : {
249 0 : sal_uInt16 nPtId=*it;
250 0 : sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId);
251 0 : if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND)
252 : {
253 0 : pGPL->Delete(nGlueIdx);
254 : }
255 : }
256 0 : pObj->SetChanged();
257 0 : pObj->BroadcastObjectChange();
258 : }
259 : }
260 : }
261 0 : if( bUndo )
262 0 : EndUndo();
263 0 : UnmarkAllGluePoints();
264 0 : if (nMarkAnz!=0)
265 0 : pMod->SetChanged();
266 0 : }
267 :
268 : ////////////////////////////////////////////////////////////////////////////////////////////////////
269 :
270 0 : void SdrGlueEditView::ImpCopyMarkedGluePoints()
271 : {
272 0 : const bool bUndo = IsUndoEnabled();
273 :
274 0 : if( bUndo )
275 0 : BegUndo();
276 :
277 0 : sal_uIntPtr nMarkAnz=GetMarkedObjectCount();
278 0 : for (sal_uIntPtr nm=0; nm<nMarkAnz; nm++)
279 : {
280 0 : SdrMark* pM=GetSdrMarkByIndex(nm);
281 0 : SdrObject* pObj=pM->GetMarkedSdrObj();
282 0 : SdrUShortCont* pPts=pM->GetMarkedGluePoints();
283 0 : SdrGluePointList* pGPL=pObj->ForceGluePointList();
284 0 : sal_uIntPtr nPtAnz=pPts==NULL ? 0 : pPts->size();
285 0 : if (nPtAnz!=0 && pGPL!=NULL)
286 : {
287 0 : if( bUndo )
288 0 : AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj));
289 :
290 0 : SdrUShortCont aIdsToErase;
291 0 : SdrUShortCont aIdsToInsert;
292 0 : for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it)
293 : {
294 0 : sal_uInt16 nPtId=*it;
295 0 : sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId);
296 0 : if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND)
297 : {
298 0 : SdrGluePoint aNewGP((*pGPL)[nGlueIdx]); // clone GluePoint
299 0 : sal_uInt16 nNewIdx=pGPL->Insert(aNewGP); // and insert it
300 0 : sal_uInt16 nNewId=(*pGPL)[nNewIdx].GetId(); // retrieve ID of new GluePoints
301 0 : aIdsToErase.insert(nPtId); // select it (instead of the old one)
302 0 : aIdsToInsert.insert(nNewId);
303 : }
304 : }
305 0 : for(SdrUShortCont::const_iterator it = aIdsToErase.begin(); it != aIdsToErase.end(); ++it)
306 0 : pPts->erase(*it);
307 0 : pPts->insert(aIdsToInsert.begin(), aIdsToInsert.end());
308 :
309 : }
310 : }
311 0 : if( bUndo )
312 0 : EndUndo();
313 :
314 0 : if (nMarkAnz!=0)
315 0 : pMod->SetChanged();
316 0 : }
317 :
318 : ////////////////////////////////////////////////////////////////////////////////////////////////////
319 :
320 0 : void SdrGlueEditView::ImpTransformMarkedGluePoints(PGlueTrFunc pTrFunc, const void* p1, const void* p2, const void* p3, const void* p4, const void* p5)
321 : {
322 0 : sal_uIntPtr nMarkAnz=GetMarkedObjectCount();
323 0 : for (sal_uIntPtr nm=0; nm<nMarkAnz; nm++) {
324 0 : SdrMark* pM=GetSdrMarkByIndex(nm);
325 0 : SdrObject* pObj=pM->GetMarkedSdrObj();
326 0 : const SdrUShortCont* pPts=pM->GetMarkedGluePoints();
327 0 : sal_uIntPtr nPtAnz=pPts==NULL ? 0 : pPts->size();
328 0 : if (nPtAnz!=0) {
329 0 : SdrGluePointList* pGPL=pObj->ForceGluePointList();
330 0 : if (pGPL!=NULL)
331 : {
332 0 : if( IsUndoEnabled() )
333 0 : AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj));
334 :
335 0 : for(SdrUShortCont::const_iterator it = pPts->begin(); it != pPts->end(); ++it)
336 : {
337 0 : sal_uInt16 nPtId=*it;
338 0 : sal_uInt16 nGlueIdx=pGPL->FindGluePoint(nPtId);
339 0 : if (nGlueIdx!=SDRGLUEPOINT_NOTFOUND) {
340 0 : SdrGluePoint& rGP=(*pGPL)[nGlueIdx];
341 0 : Point aPos(rGP.GetAbsolutePos(*pObj));
342 0 : (*pTrFunc)(aPos,p1,p2,p3,p4,p5);
343 0 : rGP.SetAbsolutePos(aPos,*pObj);
344 : }
345 : }
346 0 : pObj->SetChanged();
347 0 : pObj->BroadcastObjectChange();
348 : }
349 : }
350 : }
351 0 : if (nMarkAnz!=0) pMod->SetChanged();
352 0 : }
353 :
354 : ////////////////////////////////////////////////////////////////////////////////////////////////////
355 :
356 0 : static void ImpMove(Point& rPt, const void* p1, const void* /*p2*/, const void* /*p3*/, const void* /*p4*/, const void* /*p5*/)
357 : {
358 0 : rPt.X()+=((const Size*)p1)->Width();
359 0 : rPt.Y()+=((const Size*)p1)->Height();
360 0 : }
361 :
362 0 : void SdrGlueEditView::MoveMarkedGluePoints(const Size& rSiz, bool bCopy)
363 : {
364 0 : ForceUndirtyMrkPnt();
365 0 : XubString aStr(ImpGetResStr(STR_EditMove));
366 0 : if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy);
367 0 : BegUndo(aStr,GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_MOVE);
368 0 : if (bCopy) ImpCopyMarkedGluePoints();
369 0 : ImpTransformMarkedGluePoints(ImpMove,&rSiz);
370 0 : EndUndo();
371 0 : AdjustMarkHdl();
372 0 : }
373 :
374 : ////////////////////////////////////////////////////////////////////////////////////////////////////
375 :
376 0 : static void ImpResize(Point& rPt, const void* p1, const void* p2, const void* p3, const void* /*p4*/, const void* /*p5*/)
377 : {
378 0 : ResizePoint(rPt,*(const Point*)p1,*(const Fraction*)p2,*(const Fraction*)p3);
379 0 : }
380 :
381 0 : void SdrGlueEditView::ResizeMarkedGluePoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact, bool bCopy)
382 : {
383 0 : ForceUndirtyMrkPnt();
384 0 : XubString aStr(ImpGetResStr(STR_EditResize));
385 0 : if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy);
386 0 : BegUndo(aStr,GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_RESIZE);
387 0 : if (bCopy) ImpCopyMarkedGluePoints();
388 0 : ImpTransformMarkedGluePoints(ImpResize,&rRef,&xFact,&yFact);
389 0 : EndUndo();
390 0 : AdjustMarkHdl();
391 0 : }
392 :
393 : ////////////////////////////////////////////////////////////////////////////////////////////////////
394 :
395 0 : static void ImpRotate(Point& rPt, const void* p1, const void* /*p2*/, const void* p3, const void* p4, const void* /*p5*/)
396 : {
397 0 : RotatePoint(rPt,*(const Point*)p1,*(const double*)p3,*(const double*)p4);
398 0 : }
399 :
400 0 : void SdrGlueEditView::RotateMarkedGluePoints(const Point& rRef, long nWink, bool bCopy)
401 : {
402 0 : ForceUndirtyMrkPnt();
403 0 : XubString aStr(ImpGetResStr(STR_EditRotate));
404 0 : if (bCopy) aStr+=ImpGetResStr(STR_EditWithCopy);
405 0 : BegUndo(aStr,GetDescriptionOfMarkedGluePoints(),SDRREPFUNC_OBJ_ROTATE);
406 0 : if (bCopy) ImpCopyMarkedGluePoints();
407 0 : double nSin=sin(nWink*nPi180);
408 0 : double nCos=cos(nWink*nPi180);
409 0 : ImpTransformMarkedGluePoints(ImpRotate,&rRef,&nWink,&nSin,&nCos);
410 0 : EndUndo();
411 0 : AdjustMarkHdl();
412 0 : }
413 :
414 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|