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 "scitems.hxx"
21 : #include <svtools/colorcfg.hxx>
22 : #include <editeng/eeitem.hxx>
23 : #include <editeng/outlobj.hxx>
24 : #include <svx/sdshitm.hxx>
25 : #include <svx/sdsxyitm.hxx>
26 : #include <svx/sdtditm.hxx>
27 : #include <svx/svditer.hxx>
28 : #include <svx/svdocapt.hxx>
29 : #include <svx/svdocirc.hxx>
30 : #include <svx/svdopath.hxx>
31 : #include <svx/svdorect.hxx>
32 : #include <svx/svdpage.hxx>
33 : #include <svx/svdundo.hxx>
34 : #include <svx/xfillit0.hxx>
35 : #include <svx/xflclit.hxx>
36 : #include <svx/xlnclit.hxx>
37 : #include <svx/xlnedcit.hxx>
38 : #include <svx/xlnedit.hxx>
39 : #include <svx/xlnedwit.hxx>
40 : #include <svx/xlnstcit.hxx>
41 : #include <svx/xlnstit.hxx>
42 : #include <svx/xlnstwit.hxx>
43 : #include <svx/xlnwtit.hxx>
44 : #include <svx/xtable.hxx>
45 : #include <editeng/outliner.hxx>
46 : #include <editeng/editobj.hxx>
47 : #include <svx/sxcecitm.hxx>
48 : #include <svl/whiter.hxx>
49 : #include <editeng/writingmodeitem.hxx>
50 :
51 : #include <basegfx/point/b2dpoint.hxx>
52 : #include <basegfx/polygon/b2dpolygontools.hxx>
53 : #include <basegfx/polygon/b2dpolygon.hxx>
54 :
55 : #include "detfunc.hxx"
56 : #include "document.hxx"
57 : #include "dociter.hxx"
58 : #include "drwlayer.hxx"
59 : #include "userdat.hxx"
60 : #include "validat.hxx"
61 : #include "formulacell.hxx"
62 : #include "docpool.hxx"
63 : #include "patattr.hxx"
64 : #include "attrib.hxx"
65 : #include "scmod.hxx"
66 : #include "postit.hxx"
67 : #include "rangelst.hxx"
68 : #include "reftokenhelper.hxx"
69 : #include "formulaiter.hxx"
70 : #include "cellvalue.hxx"
71 :
72 : #include <vector>
73 : #include <boost/scoped_array.hpp>
74 :
75 : using ::std::vector;
76 : using namespace com::sun::star;
77 :
78 : // line ends are now created with an empty name.
79 : // The checkForUniqueItem method then finds a unique name for the item's value.
80 : #define SC_LINEEND_NAME EMPTY_OUSTRING
81 :
82 : enum DetInsertResult { // Return-Werte beim Einfuegen in einen Level
83 : DET_INS_CONTINUE,
84 : DET_INS_INSERTED,
85 : DET_INS_EMPTY,
86 : DET_INS_CIRCULAR };
87 :
88 28 : class ScDetectiveData
89 : {
90 : private:
91 : SfxItemSet aBoxSet;
92 : SfxItemSet aArrowSet;
93 : SfxItemSet aToTabSet;
94 : SfxItemSet aFromTabSet;
95 : SfxItemSet aCircleSet; //! einzeln ?
96 : sal_uInt16 nMaxLevel;
97 :
98 : public:
99 : ScDetectiveData( SdrModel* pModel );
100 :
101 0 : SfxItemSet& GetBoxSet() { return aBoxSet; }
102 2 : SfxItemSet& GetArrowSet() { return aArrowSet; }
103 0 : SfxItemSet& GetToTabSet() { return aToTabSet; }
104 26 : SfxItemSet& GetFromTabSet() { return aFromTabSet; }
105 0 : SfxItemSet& GetCircleSet() { return aCircleSet; }
106 :
107 28 : void SetMaxLevel( sal_uInt16 nVal ) { nMaxLevel = nVal; }
108 0 : sal_uInt16 GetMaxLevel() const { return nMaxLevel; }
109 : };
110 :
111 0 : class ScCommentData
112 : {
113 : public:
114 : ScCommentData( ScDocument& rDoc, SdrModel* pModel );
115 :
116 0 : SfxItemSet& GetCaptionSet() { return aCaptionSet; }
117 : void UpdateCaptionSet( const SfxItemSet& rItemSet );
118 :
119 : private:
120 : SfxItemSet aCaptionSet;
121 : };
122 :
123 : ColorData ScDetectiveFunc::nArrowColor = 0;
124 : ColorData ScDetectiveFunc::nErrorColor = 0;
125 : ColorData ScDetectiveFunc::nCommentColor = 0;
126 : bool ScDetectiveFunc::bColorsInitialized = false;
127 :
128 0 : static bool lcl_HasThickLine( SdrObject& rObj )
129 : {
130 : // thin lines get width 0 -> everything greater 0 is a thick line
131 :
132 0 : return static_cast<const XLineWidthItem&>(rObj.GetMergedItem(XATTR_LINEWIDTH)).GetValue() > 0;
133 : }
134 :
135 28 : ScDetectiveData::ScDetectiveData( SdrModel* pModel ) :
136 28 : aBoxSet( pModel->GetItemPool(), SDRATTR_START, SDRATTR_END ),
137 28 : aArrowSet( pModel->GetItemPool(), SDRATTR_START, SDRATTR_END ),
138 28 : aToTabSet( pModel->GetItemPool(), SDRATTR_START, SDRATTR_END ),
139 28 : aFromTabSet( pModel->GetItemPool(), SDRATTR_START, SDRATTR_END ),
140 112 : aCircleSet( pModel->GetItemPool(), SDRATTR_START, SDRATTR_END )
141 : {
142 28 : nMaxLevel = 0;
143 :
144 28 : aBoxSet.Put( XLineColorItem( EMPTY_OUSTRING, Color( ScDetectiveFunc::GetArrowColor() ) ) );
145 28 : aBoxSet.Put( XFillStyleItem( drawing::FillStyle_NONE ) );
146 :
147 : // Standard-Linienenden (wie aus XLineEndList::Create) selber zusammenbasteln,
148 : // um von den konfigurierten Linienenden unabhaengig zu sein
149 :
150 28 : basegfx::B2DPolygon aTriangle;
151 28 : aTriangle.append(basegfx::B2DPoint(10.0, 0.0));
152 28 : aTriangle.append(basegfx::B2DPoint(0.0, 30.0));
153 28 : aTriangle.append(basegfx::B2DPoint(20.0, 30.0));
154 28 : aTriangle.setClosed(true);
155 :
156 56 : basegfx::B2DPolygon aSquare;
157 28 : aSquare.append(basegfx::B2DPoint(0.0, 0.0));
158 28 : aSquare.append(basegfx::B2DPoint(10.0, 0.0));
159 28 : aSquare.append(basegfx::B2DPoint(10.0, 10.0));
160 28 : aSquare.append(basegfx::B2DPoint(0.0, 10.0));
161 28 : aSquare.setClosed(true);
162 :
163 56 : basegfx::B2DPolygon aCircle(basegfx::tools::createPolygonFromEllipse(basegfx::B2DPoint(0.0, 0.0), 100.0, 100.0));
164 28 : aCircle.setClosed(true);
165 :
166 56 : OUString aName = SC_LINEEND_NAME;
167 :
168 28 : aArrowSet.Put( XLineStartItem( aName, basegfx::B2DPolyPolygon(aCircle) ) );
169 28 : aArrowSet.Put( XLineStartWidthItem( 200 ) );
170 28 : aArrowSet.Put( XLineStartCenterItem( true ) );
171 28 : aArrowSet.Put( XLineEndItem( aName, basegfx::B2DPolyPolygon(aTriangle) ) );
172 28 : aArrowSet.Put( XLineEndWidthItem( 200 ) );
173 28 : aArrowSet.Put( XLineEndCenterItem( false ) );
174 :
175 28 : aToTabSet.Put( XLineStartItem( aName, basegfx::B2DPolyPolygon(aCircle) ) );
176 28 : aToTabSet.Put( XLineStartWidthItem( 200 ) );
177 28 : aToTabSet.Put( XLineStartCenterItem( true ) );
178 28 : aToTabSet.Put( XLineEndItem( aName, basegfx::B2DPolyPolygon(aSquare) ) );
179 28 : aToTabSet.Put( XLineEndWidthItem( 300 ) );
180 28 : aToTabSet.Put( XLineEndCenterItem( false ) );
181 :
182 28 : aFromTabSet.Put( XLineStartItem( aName, basegfx::B2DPolyPolygon(aSquare) ) );
183 28 : aFromTabSet.Put( XLineStartWidthItem( 300 ) );
184 28 : aFromTabSet.Put( XLineStartCenterItem( true ) );
185 28 : aFromTabSet.Put( XLineEndItem( aName, basegfx::B2DPolyPolygon(aTriangle) ) );
186 28 : aFromTabSet.Put( XLineEndWidthItem( 200 ) );
187 28 : aFromTabSet.Put( XLineEndCenterItem( false ) );
188 :
189 28 : aCircleSet.Put( XLineColorItem( OUString(), Color( ScDetectiveFunc::GetErrorColor() ) ) );
190 28 : aCircleSet.Put( XFillStyleItem( drawing::FillStyle_NONE ) );
191 28 : sal_uInt16 nWidth = 55; // 54 = 1 Pixel
192 56 : aCircleSet.Put( XLineWidthItem( nWidth ) );
193 28 : }
194 :
195 0 : ScCommentData::ScCommentData( ScDocument& rDoc, SdrModel* pModel ) :
196 0 : aCaptionSet( pModel->GetItemPool(), SDRATTR_START, SDRATTR_END, EE_ITEMS_START, EE_ITEMS_END, 0, 0 )
197 : {
198 0 : basegfx::B2DPolygon aTriangle;
199 0 : aTriangle.append(basegfx::B2DPoint(10.0, 0.0));
200 0 : aTriangle.append(basegfx::B2DPoint(0.0, 30.0));
201 0 : aTriangle.append(basegfx::B2DPoint(20.0, 30.0));
202 0 : aTriangle.setClosed(true);
203 :
204 0 : OUString aName = SC_LINEEND_NAME;
205 :
206 0 : aCaptionSet.Put( XLineStartItem( aName, basegfx::B2DPolyPolygon(aTriangle) ) );
207 0 : aCaptionSet.Put( XLineStartWidthItem( 200 ) );
208 0 : aCaptionSet.Put( XLineStartCenterItem( false ) );
209 0 : aCaptionSet.Put( XFillStyleItem( drawing::FillStyle_SOLID ) );
210 0 : Color aYellow( ScDetectiveFunc::GetCommentColor() );
211 0 : aCaptionSet.Put( XFillColorItem( OUString(), aYellow ) );
212 :
213 : // shadow
214 : // SdrShadowItem has sal_False, instead the shadow is set for the rectangle
215 : // only with SetSpecialTextBoxShadow when the object is created
216 : // (item must be set to adjust objects from older files)
217 0 : aCaptionSet.Put( makeSdrShadowItem( false ) );
218 0 : aCaptionSet.Put( makeSdrShadowXDistItem( 100 ) );
219 0 : aCaptionSet.Put( makeSdrShadowYDistItem( 100 ) );
220 :
221 : // text attributes
222 0 : aCaptionSet.Put( makeSdrTextLeftDistItem( 100 ) );
223 0 : aCaptionSet.Put( makeSdrTextRightDistItem( 100 ) );
224 0 : aCaptionSet.Put( makeSdrTextUpperDistItem( 100 ) );
225 0 : aCaptionSet.Put( makeSdrTextLowerDistItem( 100 ) );
226 :
227 0 : aCaptionSet.Put( makeSdrTextAutoGrowWidthItem( false ) );
228 0 : aCaptionSet.Put( makeSdrTextAutoGrowHeightItem( true ) );
229 :
230 : // do use the default cell style, so the user has a chance to
231 : // modify the font for the annotations
232 0 : static_cast<const ScPatternAttr&>(rDoc.GetPool()->GetDefaultItem(ATTR_PATTERN)).
233 0 : FillEditItemSet( &aCaptionSet );
234 :
235 : // support the best position for the tail connector now that
236 : // that notes can be resized and repositioned.
237 0 : aCaptionSet.Put( SdrCaptionEscDirItem( SDRCAPT_ESCBESTFIT) );
238 0 : }
239 :
240 0 : void ScCommentData::UpdateCaptionSet( const SfxItemSet& rItemSet )
241 : {
242 0 : SfxWhichIter aWhichIter( rItemSet );
243 0 : const SfxPoolItem* pPoolItem = 0;
244 :
245 0 : for( sal_uInt16 nWhich = aWhichIter.FirstWhich(); nWhich > 0; nWhich = aWhichIter.NextWhich() )
246 : {
247 0 : if(rItemSet.GetItemState(nWhich, false, &pPoolItem) == SfxItemState::SET)
248 : {
249 0 : switch(nWhich)
250 : {
251 : case SDRATTR_SHADOW:
252 : // use existing Caption default - appears that setting this
253 : // to true screws up the tail appearance. See also comment
254 : // for default setting above.
255 0 : break;
256 : case SDRATTR_SHADOWXDIST:
257 : // use existing Caption default - svx sets a value of 35
258 : // but default 100 gives a better appearance.
259 0 : break;
260 : case SDRATTR_SHADOWYDIST:
261 : // use existing Caption default - svx sets a value of 35
262 : // but default 100 gives a better appearance.
263 0 : break;
264 :
265 : default:
266 0 : aCaptionSet.Put(*pPoolItem);
267 : }
268 : }
269 0 : }
270 0 : }
271 :
272 54 : void ScDetectiveFunc::Modified()
273 : {
274 54 : if (pDoc->IsStreamValid(nTab))
275 0 : pDoc->SetStreamValid(nTab, false);
276 54 : }
277 :
278 0 : inline bool Intersect( SCCOL nStartCol1, SCROW nStartRow1, SCCOL nEndCol1, SCROW nEndRow1,
279 : SCCOL nStartCol2, SCROW nStartRow2, SCCOL nEndCol2, SCROW nEndRow2 )
280 : {
281 0 : return nEndCol1 >= nStartCol2 && nEndCol2 >= nStartCol1 &&
282 0 : nEndRow1 >= nStartRow2 && nEndRow2 >= nStartRow1;
283 : }
284 :
285 28 : bool ScDetectiveFunc::HasError( const ScRange& rRange, ScAddress& rErrPos )
286 : {
287 28 : rErrPos = rRange.aStart;
288 28 : sal_uInt16 nError = 0;
289 :
290 28 : ScCellIterator aIter( pDoc, rRange);
291 56 : for (bool bHasCell = aIter.first(); bHasCell; bHasCell = aIter.next())
292 : {
293 28 : if (aIter.getType() != CELLTYPE_FORMULA)
294 28 : continue;
295 :
296 0 : nError = aIter.getFormulaCell()->GetErrCode();
297 0 : if (nError)
298 0 : rErrPos = aIter.GetPos();
299 : }
300 :
301 28 : return (nError != 0);
302 : }
303 :
304 116 : Point ScDetectiveFunc::GetDrawPos( SCCOL nCol, SCROW nRow, DrawPosMode eMode ) const
305 : {
306 : OSL_ENSURE( ValidColRow( nCol, nRow ), "ScDetectiveFunc::GetDrawPos - invalid cell address" );
307 116 : SanitizeCol( nCol );
308 116 : SanitizeRow( nRow );
309 :
310 116 : Point aPos;
311 :
312 116 : switch( eMode )
313 : {
314 : case DRAWPOS_TOPLEFT:
315 30 : break;
316 : case DRAWPOS_BOTTOMRIGHT:
317 30 : ++nCol;
318 30 : ++nRow;
319 30 : break;
320 : case DRAWPOS_DETARROW:
321 56 : aPos.X() += pDoc->GetColWidth( nCol, nTab ) / 4;
322 56 : aPos.Y() += pDoc->GetRowHeight( nRow, nTab ) / 2;
323 56 : break;
324 : case DRAWPOS_CAPTIONLEFT:
325 0 : aPos.X() += 6;
326 0 : break;
327 : case DRAWPOS_CAPTIONRIGHT:
328 : {
329 : // find right end of passed cell position
330 0 : const ScMergeAttr* pMerge = static_cast< const ScMergeAttr* >( pDoc->GetAttr( nCol, nRow, nTab, ATTR_MERGE ) );
331 0 : if ( pMerge->GetColMerge() > 1 )
332 0 : nCol = nCol + pMerge->GetColMerge();
333 : else
334 0 : ++nCol;
335 0 : aPos.X() -= 6;
336 : }
337 0 : break;
338 : }
339 :
340 842 : for ( SCCOL i = 0; i < nCol; ++i )
341 726 : aPos.X() += pDoc->GetColWidth( i, nTab );
342 116 : aPos.Y() += pDoc->GetRowHeight( 0, nRow - 1, nTab );
343 :
344 116 : aPos.X() = static_cast< long >( aPos.X() * HMM_PER_TWIPS );
345 116 : aPos.Y() = static_cast< long >( aPos.Y() * HMM_PER_TWIPS );
346 :
347 116 : if ( pDoc->IsNegativePage( nTab ) )
348 0 : aPos.X() *= -1;
349 :
350 116 : return aPos;
351 : }
352 :
353 30 : Rectangle ScDetectiveFunc::GetDrawRect( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) const
354 : {
355 : Rectangle aRect(
356 30 : GetDrawPos( ::std::min( nCol1, nCol2 ), ::std::min( nRow1, nRow2 ), DRAWPOS_TOPLEFT ),
357 60 : GetDrawPos( ::std::max( nCol1, nCol2 ), ::std::max( nRow1, nRow2 ), DRAWPOS_BOTTOMRIGHT ) );
358 30 : aRect.Justify(); // reorder left/right in RTL sheets
359 30 : return aRect;
360 : }
361 :
362 30 : Rectangle ScDetectiveFunc::GetDrawRect( SCCOL nCol, SCROW nRow ) const
363 : {
364 30 : return GetDrawRect( nCol, nRow, nCol, nRow );
365 : }
366 :
367 0 : static bool lcl_IsOtherTab( const basegfx::B2DPolyPolygon& rPolyPolygon )
368 : {
369 : // test if rPolygon is the line end for "other table" (rectangle)
370 0 : if(1L == rPolyPolygon.count())
371 : {
372 0 : const basegfx::B2DPolygon aSubPoly(rPolyPolygon.getB2DPolygon(0L));
373 :
374 : // #i73305# circle consists of 4 segments, too, distinguishable from square by
375 : // the use of control points
376 0 : if(4L == aSubPoly.count() && aSubPoly.isClosed() && !aSubPoly.areControlPointsUsed())
377 : {
378 0 : return true;
379 0 : }
380 : }
381 :
382 0 : return false;
383 : }
384 :
385 28 : bool ScDetectiveFunc::HasArrow( const ScAddress& rStart,
386 : SCCOL nEndCol, SCROW nEndRow, SCTAB nEndTab )
387 : {
388 28 : bool bStartAlien = ( rStart.Tab() != nTab );
389 28 : bool bEndAlien = ( nEndTab != nTab );
390 :
391 28 : if (bStartAlien && bEndAlien)
392 : {
393 : OSL_FAIL("bStartAlien && bEndAlien");
394 0 : return true;
395 : }
396 :
397 28 : Rectangle aStartRect;
398 28 : Rectangle aEndRect;
399 28 : if (!bStartAlien)
400 2 : aStartRect = GetDrawRect( rStart.Col(), rStart.Row() );
401 28 : if (!bEndAlien)
402 28 : aEndRect = GetDrawRect( nEndCol, nEndRow );
403 :
404 28 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
405 28 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
406 : OSL_ENSURE(pPage,"Page ?");
407 :
408 28 : bool bFound = false;
409 28 : SdrObjListIter aIter( *pPage, IM_FLAT );
410 28 : SdrObject* pObject = aIter.Next();
411 56 : while (pObject && !bFound)
412 : {
413 0 : if ( pObject->GetLayer()==SC_LAYER_INTERN &&
414 0 : pObject->IsPolyObj() && pObject->GetPointCount()==2 )
415 : {
416 0 : const SfxItemSet& rSet = pObject->GetMergedItemSet();
417 :
418 : bool bObjStartAlien =
419 0 : lcl_IsOtherTab( static_cast<const XLineStartItem&>(rSet.Get(XATTR_LINESTART)).GetLineStartValue() );
420 : bool bObjEndAlien =
421 0 : lcl_IsOtherTab( static_cast<const XLineEndItem&>(rSet.Get(XATTR_LINEEND)).GetLineEndValue() );
422 :
423 : bool bStartHit = bStartAlien ? bObjStartAlien :
424 0 : ( !bObjStartAlien && aStartRect.IsInside(pObject->GetPoint(0)) );
425 : bool bEndHit = bEndAlien ? bObjEndAlien :
426 0 : ( !bObjEndAlien && aEndRect.IsInside(pObject->GetPoint(1)) );
427 :
428 0 : if ( bStartHit && bEndHit )
429 0 : bFound = true;
430 : }
431 0 : pObject = aIter.Next();
432 : }
433 :
434 28 : return bFound;
435 : }
436 :
437 0 : bool ScDetectiveFunc::IsNonAlienArrow( SdrObject* pObject )
438 : {
439 0 : if ( pObject->GetLayer()==SC_LAYER_INTERN &&
440 0 : pObject->IsPolyObj() && pObject->GetPointCount()==2 )
441 : {
442 0 : const SfxItemSet& rSet = pObject->GetMergedItemSet();
443 :
444 : bool bObjStartAlien =
445 0 : lcl_IsOtherTab( static_cast<const XLineStartItem&>(rSet.Get(XATTR_LINESTART)).GetLineStartValue() );
446 : bool bObjEndAlien =
447 0 : lcl_IsOtherTab( static_cast<const XLineEndItem&>(rSet.Get(XATTR_LINEEND)).GetLineEndValue() );
448 :
449 0 : return !bObjStartAlien && !bObjEndAlien;
450 : }
451 :
452 0 : return false;
453 : }
454 :
455 : // InsertXXX: called from DrawEntry/DrawAlienEntry and InsertObject
456 :
457 28 : bool ScDetectiveFunc::InsertArrow( SCCOL nCol, SCROW nRow,
458 : SCCOL nRefStartCol, SCROW nRefStartRow,
459 : SCCOL nRefEndCol, SCROW nRefEndRow,
460 : bool bFromOtherTab, bool bRed,
461 : ScDetectiveData& rData )
462 : {
463 28 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
464 28 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
465 :
466 28 : bool bArea = ( nRefStartCol != nRefEndCol || nRefStartRow != nRefEndRow );
467 28 : if (bArea && !bFromOtherTab)
468 : {
469 : // insert the rectangle before the arrow - this is relied on in FindFrameForObject
470 :
471 0 : Rectangle aRect = GetDrawRect( nRefStartCol, nRefStartRow, nRefEndCol, nRefEndRow );
472 0 : SdrRectObj* pBox = new SdrRectObj( aRect );
473 :
474 0 : pBox->SetMergedItemSetAndBroadcast(rData.GetBoxSet());
475 :
476 0 : pBox->SetLayer( SC_LAYER_INTERN );
477 0 : pPage->InsertObject( pBox );
478 0 : pModel->AddCalcUndo( new SdrUndoInsertObj( *pBox ) );
479 :
480 0 : ScDrawObjData* pData = ScDrawLayer::GetObjData( pBox, true );
481 0 : pData->maStart.Set( nRefStartCol, nRefStartRow, nTab);
482 0 : pData->maEnd.Set( nRefEndCol, nRefEndRow, nTab);
483 : }
484 :
485 28 : Point aStartPos = GetDrawPos( nRefStartCol, nRefStartRow, DRAWPOS_DETARROW );
486 28 : Point aEndPos = GetDrawPos( nCol, nRow, DRAWPOS_DETARROW );
487 :
488 28 : if (bFromOtherTab)
489 : {
490 26 : bool bNegativePage = pDoc->IsNegativePage( nTab );
491 26 : long nPageSign = bNegativePage ? -1 : 1;
492 :
493 26 : aStartPos = Point( aEndPos.X() - 1000 * nPageSign, aEndPos.Y() - 1000 );
494 26 : if (aStartPos.X() * nPageSign < 0)
495 0 : aStartPos.X() += 2000 * nPageSign;
496 26 : if (aStartPos.Y() < 0)
497 0 : aStartPos.Y() += 2000;
498 : }
499 :
500 28 : SfxItemSet& rAttrSet = bFromOtherTab ? rData.GetFromTabSet() : rData.GetArrowSet();
501 :
502 28 : if (bArea && !bFromOtherTab)
503 0 : rAttrSet.Put( XLineWidthItem( 50 ) ); // Bereich
504 : else
505 28 : rAttrSet.Put( XLineWidthItem( 0 ) ); // einzelne Referenz
506 :
507 28 : ColorData nColorData = ( bRed ? GetErrorColor() : GetArrowColor() );
508 28 : rAttrSet.Put( XLineColorItem( OUString(), Color( nColorData ) ) );
509 :
510 28 : basegfx::B2DPolygon aTempPoly;
511 28 : aTempPoly.append(basegfx::B2DPoint(aStartPos.X(), aStartPos.Y()));
512 28 : aTempPoly.append(basegfx::B2DPoint(aEndPos.X(), aEndPos.Y()));
513 28 : SdrPathObj* pArrow = new SdrPathObj(OBJ_LINE, basegfx::B2DPolyPolygon(aTempPoly));
514 28 : pArrow->NbcSetLogicRect(Rectangle(aStartPos,aEndPos)); //! noetig ???
515 28 : pArrow->SetMergedItemSetAndBroadcast(rAttrSet);
516 :
517 28 : pArrow->SetLayer( SC_LAYER_INTERN );
518 28 : pPage->InsertObject( pArrow );
519 28 : pModel->AddCalcUndo( new SdrUndoInsertObj( *pArrow ) );
520 :
521 28 : ScDrawObjData* pData = ScDrawLayer::GetObjData(pArrow, true);
522 28 : if (bFromOtherTab)
523 26 : pData->maStart.SetInvalid();
524 : else
525 2 : pData->maStart.Set( nRefStartCol, nRefStartRow, nTab);
526 :
527 28 : pData->maEnd.Set( nCol, nRow, nTab);
528 28 : pData->meType = ScDrawObjData::DetectiveArrow;
529 :
530 28 : Modified();
531 28 : return true;
532 : }
533 :
534 0 : bool ScDetectiveFunc::InsertToOtherTab( SCCOL nStartCol, SCROW nStartRow,
535 : SCCOL nEndCol, SCROW nEndRow, bool bRed,
536 : ScDetectiveData& rData )
537 : {
538 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
539 0 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
540 :
541 0 : bool bArea = ( nStartCol != nEndCol || nStartRow != nEndRow );
542 0 : if (bArea)
543 : {
544 0 : Rectangle aRect = GetDrawRect( nStartCol, nStartRow, nEndCol, nEndRow );
545 0 : SdrRectObj* pBox = new SdrRectObj( aRect );
546 :
547 0 : pBox->SetMergedItemSetAndBroadcast(rData.GetBoxSet());
548 :
549 0 : pBox->SetLayer( SC_LAYER_INTERN );
550 0 : pPage->InsertObject( pBox );
551 0 : pModel->AddCalcUndo( new SdrUndoInsertObj( *pBox ) );
552 :
553 0 : ScDrawObjData* pData = ScDrawLayer::GetObjData( pBox, true );
554 0 : pData->maStart.Set( nStartCol, nStartRow, nTab);
555 0 : pData->maEnd.Set( nEndCol, nEndRow, nTab);
556 : }
557 :
558 0 : bool bNegativePage = pDoc->IsNegativePage( nTab );
559 0 : long nPageSign = bNegativePage ? -1 : 1;
560 :
561 0 : Point aStartPos = GetDrawPos( nStartCol, nStartRow, DRAWPOS_DETARROW );
562 0 : Point aEndPos = Point( aStartPos.X() + 1000 * nPageSign, aStartPos.Y() - 1000 );
563 0 : if (aEndPos.Y() < 0)
564 0 : aEndPos.Y() += 2000;
565 :
566 0 : SfxItemSet& rAttrSet = rData.GetToTabSet();
567 0 : if (bArea)
568 0 : rAttrSet.Put( XLineWidthItem( 50 ) ); // Bereich
569 : else
570 0 : rAttrSet.Put( XLineWidthItem( 0 ) ); // einzelne Referenz
571 :
572 0 : ColorData nColorData = ( bRed ? GetErrorColor() : GetArrowColor() );
573 0 : rAttrSet.Put( XLineColorItem( OUString(), Color( nColorData ) ) );
574 :
575 0 : basegfx::B2DPolygon aTempPoly;
576 0 : aTempPoly.append(basegfx::B2DPoint(aStartPos.X(), aStartPos.Y()));
577 0 : aTempPoly.append(basegfx::B2DPoint(aEndPos.X(), aEndPos.Y()));
578 0 : SdrPathObj* pArrow = new SdrPathObj(OBJ_LINE, basegfx::B2DPolyPolygon(aTempPoly));
579 0 : pArrow->NbcSetLogicRect(Rectangle(aStartPos,aEndPos)); //! noetig ???
580 :
581 0 : pArrow->SetMergedItemSetAndBroadcast(rAttrSet);
582 :
583 0 : pArrow->SetLayer( SC_LAYER_INTERN );
584 0 : pPage->InsertObject( pArrow );
585 0 : pModel->AddCalcUndo( new SdrUndoInsertObj( *pArrow ) );
586 :
587 0 : ScDrawObjData* pData = ScDrawLayer::GetObjData( pArrow, true );
588 0 : pData->maStart.Set( nStartCol, nStartRow, nTab);
589 0 : pData->maEnd.SetInvalid();
590 :
591 0 : Modified();
592 0 : return true;
593 : }
594 :
595 : // DrawEntry: Formel auf dieser Tabelle,
596 : // Referenz auf dieser oder anderer
597 : // DrawAlienEntry: Formel auf anderer Tabelle,
598 : // Referenz auf dieser
599 :
600 : // return FALSE: da war schon ein Pfeil
601 :
602 28 : bool ScDetectiveFunc::DrawEntry( SCCOL nCol, SCROW nRow,
603 : const ScRange& rRef,
604 : ScDetectiveData& rData )
605 : {
606 28 : if ( HasArrow( rRef.aStart, nCol, nRow, nTab ) )
607 0 : return false;
608 :
609 28 : ScAddress aErrorPos;
610 28 : bool bError = HasError( rRef, aErrorPos );
611 28 : bool bAlien = ( rRef.aEnd.Tab() < nTab || rRef.aStart.Tab() > nTab );
612 :
613 : return InsertArrow( nCol, nRow,
614 28 : rRef.aStart.Col(), rRef.aStart.Row(),
615 28 : rRef.aEnd.Col(), rRef.aEnd.Row(),
616 84 : bAlien, bError, rData );
617 : }
618 :
619 0 : bool ScDetectiveFunc::DrawAlienEntry( const ScRange& rRef,
620 : ScDetectiveData& rData )
621 : {
622 0 : if ( HasArrow( rRef.aStart, 0, 0, nTab+1 ) )
623 0 : return false;
624 :
625 0 : ScAddress aErrorPos;
626 0 : bool bError = HasError( rRef, aErrorPos );
627 :
628 0 : return InsertToOtherTab( rRef.aStart.Col(), rRef.aStart.Row(),
629 0 : rRef.aEnd.Col(), rRef.aEnd.Row(),
630 0 : bError, rData );
631 : }
632 :
633 0 : void ScDetectiveFunc::DrawCircle( SCCOL nCol, SCROW nRow, ScDetectiveData& rData )
634 : {
635 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
636 0 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
637 :
638 0 : Rectangle aRect = GetDrawRect( nCol, nRow );
639 0 : aRect.Left() -= 250;
640 0 : aRect.Right() += 250;
641 0 : aRect.Top() -= 70;
642 0 : aRect.Bottom() += 70;
643 :
644 0 : SdrCircObj* pCircle = new SdrCircObj( OBJ_CIRC, aRect );
645 0 : SfxItemSet& rAttrSet = rData.GetCircleSet();
646 :
647 0 : pCircle->SetMergedItemSetAndBroadcast(rAttrSet);
648 :
649 0 : pCircle->SetLayer( SC_LAYER_INTERN );
650 0 : pPage->InsertObject( pCircle );
651 0 : pModel->AddCalcUndo( new SdrUndoInsertObj( *pCircle ) );
652 :
653 0 : ScDrawObjData* pData = ScDrawLayer::GetObjData( pCircle, true );
654 0 : pData->maStart.Set( nCol, nRow, nTab);
655 0 : pData->maEnd.SetInvalid();
656 0 : pData->meType = ScDrawObjData::ValidationCircle;
657 :
658 0 : Modified();
659 0 : }
660 :
661 0 : void ScDetectiveFunc::DeleteArrowsAt( SCCOL nCol, SCROW nRow, bool bDestPnt )
662 : {
663 0 : Rectangle aRect = GetDrawRect( nCol, nRow );
664 :
665 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
666 0 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
667 : OSL_ENSURE(pPage,"Page ?");
668 :
669 0 : pPage->RecalcObjOrdNums();
670 :
671 0 : const size_t nObjCount = pPage->GetObjCount();
672 0 : if (nObjCount)
673 : {
674 0 : size_t nDelCount = 0;
675 0 : boost::scoped_array<SdrObject*> ppObj(new SdrObject*[nObjCount]);
676 :
677 0 : SdrObjListIter aIter( *pPage, IM_FLAT );
678 0 : SdrObject* pObject = aIter.Next();
679 0 : while (pObject)
680 : {
681 0 : if ( pObject->GetLayer()==SC_LAYER_INTERN &&
682 0 : pObject->IsPolyObj() && pObject->GetPointCount()==2 )
683 : {
684 0 : if (aRect.IsInside(pObject->GetPoint(bDestPnt ? 1 : 0))) // Start/Zielpunkt
685 0 : ppObj[nDelCount++] = pObject;
686 : }
687 :
688 0 : pObject = aIter.Next();
689 : }
690 :
691 0 : for (size_t i=1; i<=nDelCount; ++i)
692 0 : pModel->AddCalcUndo( new SdrUndoRemoveObj( *ppObj[nDelCount-i] ) );
693 :
694 0 : for (size_t i=1; i<=nDelCount; ++i)
695 0 : pPage->RemoveObject( ppObj[nDelCount-i]->GetOrdNum() );
696 :
697 0 : ppObj.reset();
698 :
699 0 : Modified();
700 : }
701 0 : }
702 :
703 : // Box um Referenz loeschen
704 :
705 : #define SC_DET_TOLERANCE 50
706 :
707 0 : inline bool RectIsPoints( const Rectangle& rRect, const Point& rStart, const Point& rEnd )
708 : {
709 0 : return rRect.Left() >= rStart.X() - SC_DET_TOLERANCE
710 0 : && rRect.Left() <= rStart.X() + SC_DET_TOLERANCE
711 0 : && rRect.Right() >= rEnd.X() - SC_DET_TOLERANCE
712 0 : && rRect.Right() <= rEnd.X() + SC_DET_TOLERANCE
713 0 : && rRect.Top() >= rStart.Y() - SC_DET_TOLERANCE
714 0 : && rRect.Top() <= rStart.Y() + SC_DET_TOLERANCE
715 0 : && rRect.Bottom() >= rEnd.Y() - SC_DET_TOLERANCE
716 0 : && rRect.Bottom() <= rEnd.Y() + SC_DET_TOLERANCE;
717 : }
718 :
719 : #undef SC_DET_TOLERANCE
720 :
721 0 : void ScDetectiveFunc::DeleteBox( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 )
722 : {
723 0 : Rectangle aCornerRect = GetDrawRect( nCol1, nRow1, nCol2, nRow2 );
724 0 : Point aStartCorner = aCornerRect.TopLeft();
725 0 : Point aEndCorner = aCornerRect.BottomRight();
726 0 : Rectangle aObjRect;
727 :
728 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
729 0 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
730 : OSL_ENSURE(pPage,"Page ?");
731 :
732 0 : pPage->RecalcObjOrdNums();
733 :
734 0 : const size_t nObjCount = pPage->GetObjCount();
735 0 : if (nObjCount)
736 : {
737 0 : size_t nDelCount = 0;
738 0 : boost::scoped_array<SdrObject*> ppObj(new SdrObject*[nObjCount]);
739 :
740 0 : SdrObjListIter aIter( *pPage, IM_FLAT );
741 0 : SdrObject* pObject = aIter.Next();
742 0 : while (pObject)
743 : {
744 0 : if ( pObject->GetLayer() == SC_LAYER_INTERN &&
745 0 : pObject->Type() == TYPE(SdrRectObj) )
746 : {
747 0 : aObjRect = static_cast<SdrRectObj*>(pObject)->GetLogicRect();
748 0 : aObjRect.Justify();
749 0 : if ( RectIsPoints( aObjRect, aStartCorner, aEndCorner ) )
750 0 : ppObj[nDelCount++] = pObject;
751 : }
752 :
753 0 : pObject = aIter.Next();
754 : }
755 :
756 0 : for (size_t i=1; i<=nDelCount; ++i)
757 0 : pModel->AddCalcUndo( new SdrUndoRemoveObj( *ppObj[nDelCount-i] ) );
758 :
759 0 : for (size_t i=1; i<=nDelCount; ++i)
760 0 : pPage->RemoveObject( ppObj[nDelCount-i]->GetOrdNum() );
761 :
762 0 : ppObj.reset();
763 :
764 0 : Modified();
765 : }
766 0 : }
767 :
768 0 : sal_uInt16 ScDetectiveFunc::InsertPredLevelArea( const ScRange& rRef,
769 : ScDetectiveData& rData, sal_uInt16 nLevel )
770 : {
771 0 : sal_uInt16 nResult = DET_INS_EMPTY;
772 :
773 0 : ScCellIterator aIter( pDoc, rRef);
774 0 : for (bool bHasCell = aIter.first(); bHasCell; bHasCell = aIter.next())
775 : {
776 0 : if (aIter.getType() != CELLTYPE_FORMULA)
777 0 : continue;
778 :
779 0 : const ScAddress& rPos = aIter.GetPos();
780 0 : switch (InsertPredLevel(rPos.Col(), rPos.Row(), rData, nLevel))
781 : {
782 : case DET_INS_INSERTED:
783 0 : nResult = DET_INS_INSERTED;
784 0 : break;
785 : case DET_INS_CONTINUE:
786 0 : if (nResult != DET_INS_INSERTED)
787 0 : nResult = DET_INS_CONTINUE;
788 0 : break;
789 : case DET_INS_CIRCULAR:
790 0 : if (nResult == DET_INS_EMPTY)
791 0 : nResult = DET_INS_CIRCULAR;
792 0 : break;
793 : default:
794 : ;
795 : }
796 : }
797 :
798 0 : return nResult;
799 : }
800 :
801 28 : sal_uInt16 ScDetectiveFunc::InsertPredLevel( SCCOL nCol, SCROW nRow, ScDetectiveData& rData,
802 : sal_uInt16 nLevel )
803 : {
804 28 : ScRefCellValue aCell;
805 28 : aCell.assign(*pDoc, ScAddress(nCol, nRow, nTab));
806 28 : if (aCell.meType != CELLTYPE_FORMULA)
807 0 : return DET_INS_EMPTY;
808 :
809 28 : ScFormulaCell* pFCell = aCell.mpFormula;
810 28 : if (pFCell->IsRunning())
811 0 : return DET_INS_CIRCULAR;
812 :
813 28 : if (pFCell->GetDirty())
814 2 : pFCell->Interpret(); // nach SetRunning geht's nicht mehr!
815 28 : pFCell->SetRunning(true);
816 :
817 28 : sal_uInt16 nResult = DET_INS_EMPTY;
818 :
819 28 : ScDetectiveRefIter aIter(pFCell);
820 28 : ScRange aRef;
821 84 : while ( aIter.GetNextRef( aRef ) )
822 : {
823 28 : if (DrawEntry( nCol, nRow, aRef, rData ))
824 : {
825 28 : nResult = DET_INS_INSERTED; // neuer Pfeil eingetragen
826 : }
827 : else
828 : {
829 : // weiterverfolgen
830 :
831 0 : if ( nLevel < rData.GetMaxLevel() )
832 : {
833 : sal_uInt16 nSubResult;
834 0 : bool bArea = (aRef.aStart != aRef.aEnd);
835 0 : if (bArea)
836 0 : nSubResult = InsertPredLevelArea( aRef, rData, nLevel+1 );
837 : else
838 0 : nSubResult = InsertPredLevel( aRef.aStart.Col(), aRef.aStart.Row(),
839 0 : rData, nLevel+1 );
840 :
841 0 : switch (nSubResult)
842 : {
843 : case DET_INS_INSERTED:
844 0 : nResult = DET_INS_INSERTED;
845 0 : break;
846 : case DET_INS_CONTINUE:
847 0 : if (nResult != DET_INS_INSERTED)
848 0 : nResult = DET_INS_CONTINUE;
849 0 : break;
850 : case DET_INS_CIRCULAR:
851 0 : if (nResult == DET_INS_EMPTY)
852 0 : nResult = DET_INS_CIRCULAR;
853 0 : break;
854 : // DET_INS_EMPTY: unveraendert lassen
855 : }
856 : }
857 : else // nMaxLevel erreicht
858 0 : if (nResult != DET_INS_INSERTED)
859 0 : nResult = DET_INS_CONTINUE;
860 : }
861 : }
862 :
863 28 : pFCell->SetRunning(false);
864 :
865 28 : return nResult;
866 : }
867 :
868 0 : sal_uInt16 ScDetectiveFunc::FindPredLevelArea( const ScRange& rRef,
869 : sal_uInt16 nLevel, sal_uInt16 nDeleteLevel )
870 : {
871 0 : sal_uInt16 nResult = nLevel;
872 :
873 0 : ScCellIterator aCellIter( pDoc, rRef);
874 0 : for (bool bHasCell = aCellIter.first(); bHasCell; bHasCell = aCellIter.next())
875 : {
876 0 : if (aCellIter.getType() != CELLTYPE_FORMULA)
877 0 : continue;
878 :
879 0 : sal_uInt16 nTemp = FindPredLevel(aCellIter.GetPos().Col(), aCellIter.GetPos().Row(), nLevel, nDeleteLevel);
880 0 : if (nTemp > nResult)
881 0 : nResult = nTemp;
882 : }
883 :
884 0 : return nResult;
885 : }
886 :
887 : // nDeleteLevel != 0 -> loeschen
888 :
889 0 : sal_uInt16 ScDetectiveFunc::FindPredLevel( SCCOL nCol, SCROW nRow, sal_uInt16 nLevel, sal_uInt16 nDeleteLevel )
890 : {
891 : OSL_ENSURE( nLevel<1000, "Level" );
892 :
893 0 : ScRefCellValue aCell;
894 0 : aCell.assign(*pDoc, ScAddress(nCol, nRow, nTab));
895 0 : if (aCell.meType != CELLTYPE_FORMULA)
896 0 : return nLevel;
897 :
898 0 : ScFormulaCell* pFCell = aCell.mpFormula;
899 0 : if (pFCell->IsRunning())
900 0 : return nLevel;
901 :
902 0 : if (pFCell->GetDirty())
903 0 : pFCell->Interpret(); // nach SetRunning geht's nicht mehr!
904 0 : pFCell->SetRunning(true);
905 :
906 0 : sal_uInt16 nResult = nLevel;
907 0 : bool bDelete = ( nDeleteLevel && nLevel == nDeleteLevel-1 );
908 :
909 0 : if ( bDelete )
910 : {
911 0 : DeleteArrowsAt( nCol, nRow, true ); // Pfeile, die hierher zeigen
912 : }
913 :
914 0 : ScDetectiveRefIter aIter(pFCell);
915 0 : ScRange aRef;
916 0 : while ( aIter.GetNextRef( aRef) )
917 : {
918 0 : bool bArea = ( aRef.aStart != aRef.aEnd );
919 :
920 0 : if ( bDelete ) // Rahmen loeschen ?
921 : {
922 0 : if (bArea)
923 : {
924 0 : DeleteBox( aRef.aStart.Col(), aRef.aStart.Row(), aRef.aEnd.Col(), aRef.aEnd.Row() );
925 : }
926 : }
927 : else // weitersuchen
928 : {
929 0 : if ( HasArrow( aRef.aStart, nCol,nRow,nTab ) )
930 : {
931 : sal_uInt16 nTemp;
932 0 : if (bArea)
933 0 : nTemp = FindPredLevelArea( aRef, nLevel+1, nDeleteLevel );
934 : else
935 0 : nTemp = FindPredLevel( aRef.aStart.Col(),aRef.aStart.Row(),
936 0 : nLevel+1, nDeleteLevel );
937 0 : if (nTemp > nResult)
938 0 : nResult = nTemp;
939 : }
940 : }
941 : }
942 :
943 0 : pFCell->SetRunning(false);
944 :
945 0 : return nResult;
946 : }
947 :
948 0 : sal_uInt16 ScDetectiveFunc::InsertErrorLevel( SCCOL nCol, SCROW nRow, ScDetectiveData& rData,
949 : sal_uInt16 nLevel )
950 : {
951 0 : ScRefCellValue aCell;
952 0 : aCell.assign(*pDoc, ScAddress(nCol, nRow, nTab));
953 0 : if (aCell.meType != CELLTYPE_FORMULA)
954 0 : return DET_INS_EMPTY;
955 :
956 0 : ScFormulaCell* pFCell = aCell.mpFormula;
957 0 : if (pFCell->IsRunning())
958 0 : return DET_INS_CIRCULAR;
959 :
960 0 : if (pFCell->GetDirty())
961 0 : pFCell->Interpret(); // nach SetRunning geht's nicht mehr!
962 0 : pFCell->SetRunning(true);
963 :
964 0 : sal_uInt16 nResult = DET_INS_EMPTY;
965 :
966 0 : ScDetectiveRefIter aIter(pFCell);
967 0 : ScRange aRef;
968 0 : ScAddress aErrorPos;
969 0 : bool bHasError = false;
970 0 : while ( aIter.GetNextRef( aRef ) )
971 : {
972 0 : if (HasError( aRef, aErrorPos ))
973 : {
974 0 : bHasError = true;
975 0 : if (DrawEntry( nCol, nRow, ScRange( aErrorPos), rData ))
976 0 : nResult = DET_INS_INSERTED;
977 :
978 : // und weiterverfolgen
979 :
980 0 : if ( nLevel < rData.GetMaxLevel() ) // praktisch immer
981 : {
982 0 : if (InsertErrorLevel( aErrorPos.Col(), aErrorPos.Row(),
983 0 : rData, nLevel+1 ) == DET_INS_INSERTED)
984 0 : nResult = DET_INS_INSERTED;
985 : }
986 : }
987 : }
988 :
989 0 : pFCell->SetRunning(false);
990 :
991 : // Blaetter ?
992 0 : if (!bHasError)
993 0 : if (InsertPredLevel( nCol, nRow, rData, rData.GetMaxLevel() ) == DET_INS_INSERTED)
994 0 : nResult = DET_INS_INSERTED;
995 :
996 0 : return nResult;
997 : }
998 :
999 0 : sal_uInt16 ScDetectiveFunc::InsertSuccLevel( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1000 : ScDetectiveData& rData, sal_uInt16 nLevel )
1001 : {
1002 : // over the entire document.
1003 :
1004 0 : sal_uInt16 nResult = DET_INS_EMPTY;
1005 0 : ScCellIterator aCellIter(pDoc, ScRange(0,0,0,MAXCOL,MAXROW,MAXTAB)); // all sheets
1006 0 : for (bool bHas = aCellIter.first(); bHas; bHas = aCellIter.next())
1007 : {
1008 0 : if (aCellIter.getType() != CELLTYPE_FORMULA)
1009 0 : continue;
1010 :
1011 0 : ScFormulaCell* pFCell = aCellIter.getFormulaCell();
1012 0 : bool bRunning = pFCell->IsRunning();
1013 :
1014 0 : if (pFCell->GetDirty())
1015 0 : pFCell->Interpret(); // nach SetRunning geht's nicht mehr!
1016 0 : pFCell->SetRunning(true);
1017 :
1018 0 : ScDetectiveRefIter aIter(pFCell);
1019 0 : ScRange aRef;
1020 0 : while ( aIter.GetNextRef( aRef) )
1021 : {
1022 0 : if (aRef.aStart.Tab() <= nTab && aRef.aEnd.Tab() >= nTab)
1023 : {
1024 0 : if (Intersect( nCol1,nRow1,nCol2,nRow2,
1025 0 : aRef.aStart.Col(),aRef.aStart.Row(),
1026 0 : aRef.aEnd.Col(),aRef.aEnd.Row() ))
1027 : {
1028 0 : bool bAlien = ( aCellIter.GetPos().Tab() != nTab );
1029 : bool bDrawRet;
1030 0 : if (bAlien)
1031 0 : bDrawRet = DrawAlienEntry( aRef, rData );
1032 : else
1033 0 : bDrawRet = DrawEntry( aCellIter.GetPos().Col(), aCellIter.GetPos().Row(),
1034 0 : aRef, rData );
1035 0 : if (bDrawRet)
1036 : {
1037 0 : nResult = DET_INS_INSERTED; // neuer Pfeil eingetragen
1038 : }
1039 : else
1040 : {
1041 0 : if (bRunning)
1042 : {
1043 0 : if (nResult == DET_INS_EMPTY)
1044 0 : nResult = DET_INS_CIRCULAR;
1045 : }
1046 : else
1047 : {
1048 : // weiterverfolgen
1049 :
1050 0 : if ( nLevel < rData.GetMaxLevel() )
1051 : {
1052 : sal_uInt16 nSubResult = InsertSuccLevel(
1053 0 : aCellIter.GetPos().Col(), aCellIter.GetPos().Row(),
1054 0 : aCellIter.GetPos().Col(), aCellIter.GetPos().Row(),
1055 0 : rData, nLevel+1 );
1056 0 : switch (nSubResult)
1057 : {
1058 : case DET_INS_INSERTED:
1059 0 : nResult = DET_INS_INSERTED;
1060 0 : break;
1061 : case DET_INS_CONTINUE:
1062 0 : if (nResult != DET_INS_INSERTED)
1063 0 : nResult = DET_INS_CONTINUE;
1064 0 : break;
1065 : case DET_INS_CIRCULAR:
1066 0 : if (nResult == DET_INS_EMPTY)
1067 0 : nResult = DET_INS_CIRCULAR;
1068 0 : break;
1069 : // DET_INS_EMPTY: unveraendert lassen
1070 : }
1071 : }
1072 : else // nMaxLevel erreicht
1073 0 : if (nResult != DET_INS_INSERTED)
1074 0 : nResult = DET_INS_CONTINUE;
1075 : }
1076 : }
1077 : }
1078 : }
1079 : }
1080 0 : pFCell->SetRunning(bRunning);
1081 : }
1082 :
1083 0 : return nResult;
1084 : }
1085 :
1086 0 : sal_uInt16 ScDetectiveFunc::FindSuccLevel( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1087 : sal_uInt16 nLevel, sal_uInt16 nDeleteLevel )
1088 : {
1089 : OSL_ENSURE( nLevel<1000, "Level" );
1090 :
1091 0 : sal_uInt16 nResult = nLevel;
1092 0 : bool bDelete = ( nDeleteLevel && nLevel == nDeleteLevel-1 );
1093 :
1094 0 : ScCellIterator aCellIter( pDoc, ScRange(0, 0, nTab, MAXCOL, MAXROW, nTab) );
1095 0 : for (bool bHas = aCellIter.first(); bHas; bHas = aCellIter.next())
1096 : {
1097 0 : if (aCellIter.getType() != CELLTYPE_FORMULA)
1098 0 : continue;
1099 :
1100 0 : ScFormulaCell* pFCell = aCellIter.getFormulaCell();
1101 0 : bool bRunning = pFCell->IsRunning();
1102 :
1103 0 : if (pFCell->GetDirty())
1104 0 : pFCell->Interpret(); // nach SetRunning geht's nicht mehr!
1105 0 : pFCell->SetRunning(true);
1106 :
1107 0 : ScDetectiveRefIter aIter(pFCell);
1108 0 : ScRange aRef;
1109 0 : while ( aIter.GetNextRef( aRef) )
1110 : {
1111 0 : if (aRef.aStart.Tab() <= nTab && aRef.aEnd.Tab() >= nTab)
1112 : {
1113 0 : if (Intersect( nCol1,nRow1,nCol2,nRow2,
1114 0 : aRef.aStart.Col(),aRef.aStart.Row(),
1115 0 : aRef.aEnd.Col(),aRef.aEnd.Row() ))
1116 : {
1117 0 : if ( bDelete ) // Pfeile, die hier anfangen
1118 : {
1119 0 : if (aRef.aStart != aRef.aEnd)
1120 : {
1121 0 : DeleteBox( aRef.aStart.Col(), aRef.aStart.Row(),
1122 0 : aRef.aEnd.Col(), aRef.aEnd.Row() );
1123 : }
1124 0 : DeleteArrowsAt( aRef.aStart.Col(), aRef.aStart.Row(), false );
1125 : }
1126 0 : else if ( !bRunning &&
1127 : HasArrow( aRef.aStart,
1128 0 : aCellIter.GetPos().Col(),aCellIter.GetPos().Row(),aCellIter.GetPos().Tab() ) )
1129 : {
1130 0 : sal_uInt16 nTemp = FindSuccLevel( aCellIter.GetPos().Col(), aCellIter.GetPos().Row(),
1131 0 : aCellIter.GetPos().Col(), aCellIter.GetPos().Row(),
1132 0 : nLevel+1, nDeleteLevel );
1133 0 : if (nTemp > nResult)
1134 0 : nResult = nTemp;
1135 : }
1136 : }
1137 : }
1138 : }
1139 :
1140 0 : pFCell->SetRunning(bRunning);
1141 : }
1142 :
1143 0 : return nResult;
1144 : }
1145 :
1146 28 : bool ScDetectiveFunc::ShowPred( SCCOL nCol, SCROW nRow )
1147 : {
1148 28 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1149 28 : if (!pModel)
1150 0 : return false;
1151 :
1152 28 : ScDetectiveData aData( pModel );
1153 :
1154 28 : sal_uInt16 nMaxLevel = 0;
1155 28 : sal_uInt16 nResult = DET_INS_CONTINUE;
1156 84 : while (nResult == DET_INS_CONTINUE && nMaxLevel < 1000)
1157 : {
1158 28 : aData.SetMaxLevel( nMaxLevel );
1159 28 : nResult = InsertPredLevel( nCol, nRow, aData, 0 );
1160 28 : ++nMaxLevel;
1161 : }
1162 :
1163 28 : return ( nResult == DET_INS_INSERTED );
1164 : }
1165 :
1166 0 : bool ScDetectiveFunc::ShowSucc( SCCOL nCol, SCROW nRow )
1167 : {
1168 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1169 0 : if (!pModel)
1170 0 : return false;
1171 :
1172 0 : ScDetectiveData aData( pModel );
1173 :
1174 0 : sal_uInt16 nMaxLevel = 0;
1175 0 : sal_uInt16 nResult = DET_INS_CONTINUE;
1176 0 : while (nResult == DET_INS_CONTINUE && nMaxLevel < 1000)
1177 : {
1178 0 : aData.SetMaxLevel( nMaxLevel );
1179 0 : nResult = InsertSuccLevel( nCol, nRow, nCol, nRow, aData, 0 );
1180 0 : ++nMaxLevel;
1181 : }
1182 :
1183 0 : return ( nResult == DET_INS_INSERTED );
1184 : }
1185 :
1186 0 : bool ScDetectiveFunc::ShowError( SCCOL nCol, SCROW nRow )
1187 : {
1188 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1189 0 : if (!pModel)
1190 0 : return false;
1191 :
1192 0 : ScRange aRange( nCol, nRow, nTab );
1193 0 : ScAddress aErrPos;
1194 0 : if ( !HasError( aRange,aErrPos ) )
1195 0 : return false;
1196 :
1197 0 : ScDetectiveData aData( pModel );
1198 :
1199 0 : aData.SetMaxLevel( 1000 );
1200 0 : sal_uInt16 nResult = InsertErrorLevel( nCol, nRow, aData, 0 );
1201 :
1202 0 : return ( nResult == DET_INS_INSERTED );
1203 : }
1204 :
1205 0 : bool ScDetectiveFunc::DeleteSucc( SCCOL nCol, SCROW nRow )
1206 : {
1207 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1208 0 : if (!pModel)
1209 0 : return false;
1210 :
1211 0 : sal_uInt16 nLevelCount = FindSuccLevel( nCol, nRow, nCol, nRow, 0, 0 );
1212 0 : if ( nLevelCount )
1213 0 : FindSuccLevel( nCol, nRow, nCol, nRow, 0, nLevelCount ); // loeschen
1214 :
1215 0 : return ( nLevelCount != 0 );
1216 : }
1217 :
1218 0 : bool ScDetectiveFunc::DeletePred( SCCOL nCol, SCROW nRow )
1219 : {
1220 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1221 0 : if (!pModel)
1222 0 : return false;
1223 :
1224 0 : sal_uInt16 nLevelCount = FindPredLevel( nCol, nRow, 0, 0 );
1225 0 : if ( nLevelCount )
1226 0 : FindPredLevel( nCol, nRow, 0, nLevelCount ); // loeschen
1227 :
1228 0 : return ( nLevelCount != 0 );
1229 : }
1230 :
1231 52 : bool ScDetectiveFunc::DeleteAll( ScDetectiveDelete eWhat )
1232 : {
1233 52 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1234 52 : if (!pModel)
1235 0 : return false;
1236 :
1237 52 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
1238 : OSL_ENSURE(pPage,"Page ?");
1239 :
1240 52 : pPage->RecalcObjOrdNums();
1241 :
1242 52 : size_t nDelCount = 0;
1243 52 : const size_t nObjCount = pPage->GetObjCount();
1244 52 : if (nObjCount)
1245 : {
1246 26 : boost::scoped_array<SdrObject*> ppObj(new SdrObject*[nObjCount]);
1247 :
1248 52 : SdrObjListIter aIter( *pPage, IM_FLAT );
1249 26 : SdrObject* pObject = aIter.Next();
1250 78 : while (pObject)
1251 : {
1252 26 : if ( pObject->GetLayer() == SC_LAYER_INTERN )
1253 : {
1254 26 : bool bDoThis = true;
1255 26 : if ( eWhat != SC_DET_ALL )
1256 : {
1257 26 : bool bCircle = ( pObject->ISA(SdrCircObj) );
1258 26 : bool bCaption = ScDrawLayer::IsNoteCaption( pObject );
1259 26 : if ( eWhat == SC_DET_DETECTIVE ) // Detektiv, aus Menue
1260 0 : bDoThis = !bCaption; // auch Kreise
1261 26 : else if ( eWhat == SC_DET_CIRCLES ) // Kreise, wenn neue erzeugt werden
1262 0 : bDoThis = bCircle;
1263 26 : else if ( eWhat == SC_DET_ARROWS ) // DetectiveRefresh
1264 26 : bDoThis = !bCaption && !bCircle; // don't include circles
1265 : else
1266 : {
1267 : OSL_FAIL("what?");
1268 : }
1269 : }
1270 26 : if ( bDoThis )
1271 26 : ppObj[nDelCount++] = pObject;
1272 : }
1273 :
1274 26 : pObject = aIter.Next();
1275 : }
1276 :
1277 52 : for (size_t i=1; i<=nDelCount; ++i)
1278 26 : pModel->AddCalcUndo( new SdrUndoRemoveObj( *ppObj[nDelCount-i] ) );
1279 :
1280 52 : for (size_t i=1; i<=nDelCount; ++i)
1281 26 : pPage->RemoveObject( ppObj[nDelCount-i]->GetOrdNum() );
1282 :
1283 26 : ppObj.reset();
1284 :
1285 52 : Modified();
1286 : }
1287 :
1288 52 : return ( nDelCount != 0 );
1289 : }
1290 :
1291 0 : bool ScDetectiveFunc::MarkInvalid(bool& rOverflow)
1292 : {
1293 0 : rOverflow = false;
1294 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1295 0 : if (!pModel)
1296 0 : return false;
1297 :
1298 0 : bool bDeleted = DeleteAll( SC_DET_CIRCLES ); // nur die Kreise
1299 :
1300 0 : ScDetectiveData aData( pModel );
1301 0 : long nInsCount = 0;
1302 :
1303 : // Stellen suchen, wo Gueltigkeit definiert ist
1304 :
1305 0 : ScDocAttrIterator aAttrIter( pDoc, nTab, 0,0,MAXCOL,MAXROW );
1306 : SCCOL nCol;
1307 : SCROW nRow1;
1308 : SCROW nRow2;
1309 0 : const ScPatternAttr* pPattern = aAttrIter.GetNext( nCol, nRow1, nRow2 );
1310 0 : while ( pPattern && nInsCount < SC_DET_MAXCIRCLE )
1311 : {
1312 0 : sal_uLong nIndex = static_cast<const SfxUInt32Item&>(pPattern->GetItem(ATTR_VALIDDATA)).GetValue();
1313 0 : if (nIndex)
1314 : {
1315 0 : const ScValidationData* pData = pDoc->GetValidationEntry( nIndex );
1316 0 : if ( pData )
1317 : {
1318 : // Zellen in dem Bereich durchgehen
1319 :
1320 0 : bool bMarkEmpty = !pData->IsIgnoreBlank();
1321 0 : SCROW nNextRow = nRow1;
1322 : SCROW nRow;
1323 0 : ScCellIterator aCellIter( pDoc, ScRange(nCol, nRow1, nTab, nCol, nRow2, nTab) );
1324 0 : for (bool bHas = aCellIter.first(); bHas && nInsCount < SC_DET_MAXCIRCLE; bHas = aCellIter.next())
1325 : {
1326 0 : SCROW nCellRow = aCellIter.GetPos().Row();
1327 0 : if ( bMarkEmpty )
1328 0 : for ( nRow = nNextRow; nRow < nCellRow && nInsCount < SC_DET_MAXCIRCLE; nRow++ )
1329 : {
1330 0 : DrawCircle( nCol, nRow, aData );
1331 0 : ++nInsCount;
1332 : }
1333 0 : ScRefCellValue aCell = aCellIter.getRefCellValue();
1334 0 : if (!pData->IsDataValid(aCell, aCellIter.GetPos()))
1335 : {
1336 0 : DrawCircle( nCol, nCellRow, aData );
1337 0 : ++nInsCount;
1338 : }
1339 0 : nNextRow = nCellRow + 1;
1340 0 : }
1341 0 : if ( bMarkEmpty )
1342 0 : for ( nRow = nNextRow; nRow <= nRow2 && nInsCount < SC_DET_MAXCIRCLE; nRow++ )
1343 : {
1344 0 : DrawCircle( nCol, nRow, aData );
1345 0 : ++nInsCount;
1346 0 : }
1347 : }
1348 : }
1349 :
1350 0 : pPattern = aAttrIter.GetNext( nCol, nRow1, nRow2 );
1351 : }
1352 :
1353 0 : if ( nInsCount >= SC_DET_MAXCIRCLE )
1354 0 : rOverflow = true;
1355 :
1356 0 : return ( bDeleted || nInsCount != 0 );
1357 : }
1358 :
1359 4 : void ScDetectiveFunc::GetAllPreds(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1360 : vector<ScTokenRef>& rRefTokens)
1361 : {
1362 4 : ScCellIterator aIter(pDoc, ScRange(nCol1, nRow1, nTab, nCol2, nRow2, nTab));
1363 8 : for (bool bHas = aIter.first(); bHas; bHas = aIter.next())
1364 : {
1365 4 : if (aIter.getType() != CELLTYPE_FORMULA)
1366 0 : continue;
1367 :
1368 4 : ScFormulaCell* pFCell = aIter.getFormulaCell();
1369 4 : ScDetectiveRefIter aRefIter(pFCell);
1370 12 : for (formula::FormulaToken* p = aRefIter.GetNextRefToken(); p; p = aRefIter.GetNextRefToken())
1371 : {
1372 8 : ScTokenRef pRef(p->Clone());
1373 8 : ScRefTokenHelper::join(rRefTokens, pRef, aIter.GetPos());
1374 8 : }
1375 4 : }
1376 4 : }
1377 :
1378 2 : void ScDetectiveFunc::GetAllSuccs(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1379 : vector<ScTokenRef>& rRefTokens)
1380 : {
1381 2 : vector<ScTokenRef> aSrcRange;
1382 : aSrcRange.push_back(
1383 2 : ScRefTokenHelper::createRefToken(ScRange(nCol1, nRow1, nTab, nCol2, nRow2, nTab)));
1384 :
1385 4 : ScCellIterator aIter(pDoc, ScRange(0, 0, nTab, MAXCOL, MAXROW, nTab));
1386 6 : for (bool bHas = aIter.first(); bHas; bHas = aIter.next())
1387 : {
1388 4 : if (aIter.getType() != CELLTYPE_FORMULA)
1389 0 : continue;
1390 :
1391 4 : ScFormulaCell* pFCell = aIter.getFormulaCell();
1392 4 : ScDetectiveRefIter aRefIter(pFCell);
1393 12 : for (formula::FormulaToken* p = aRefIter.GetNextRefToken(); p; p = aRefIter.GetNextRefToken())
1394 : {
1395 8 : const ScAddress& aPos = aIter.GetPos();
1396 8 : ScTokenRef pRef(p->Clone());
1397 8 : if (ScRefTokenHelper::intersects(aSrcRange, pRef, aPos))
1398 : {
1399 : // This address is absolute.
1400 4 : pRef = ScRefTokenHelper::createRefToken(aPos);
1401 4 : ScRefTokenHelper::join(rRefTokens, pRef, ScAddress());
1402 : }
1403 8 : }
1404 2 : }
1405 2 : }
1406 :
1407 3334 : void ScDetectiveFunc::UpdateAllComments( ScDocument& rDoc )
1408 : {
1409 : // for all caption objects, update attributes and SpecialTextBoxShadow flag
1410 : // (on all tables - nTab is ignored!)
1411 :
1412 : // no undo actions, this is refreshed after undo
1413 :
1414 3334 : ScDrawLayer* pModel = rDoc.GetDrawLayer();
1415 3334 : if (!pModel)
1416 5636 : return;
1417 :
1418 2064 : for( SCTAB nObjTab = 0, nTabCount = rDoc.GetTableCount(); nObjTab < nTabCount; ++nObjTab )
1419 : {
1420 1032 : SdrPage* pPage = pModel->GetPage( static_cast< sal_uInt16 >( nObjTab ) );
1421 : OSL_ENSURE( pPage, "Page ?" );
1422 1032 : if( pPage )
1423 : {
1424 1032 : SdrObjListIter aIter( *pPage, IM_FLAT );
1425 1032 : for( SdrObject* pObject = aIter.Next(); pObject; pObject = aIter.Next() )
1426 : {
1427 0 : if ( ScDrawObjData* pData = ScDrawLayer::GetNoteCaptionData( pObject, nObjTab ) )
1428 : {
1429 0 : ScPostIt* pNote = rDoc.GetNote( pData->maStart );
1430 : // caption should exist, we iterate over drawing objects...
1431 : OSL_ENSURE( pNote && (pNote->GetCaption() == pObject), "ScDetectiveFunc::UpdateAllComments - invalid cell note" );
1432 0 : if( pNote )
1433 : {
1434 0 : ScCommentData aData( rDoc, pModel );
1435 0 : SfxItemSet aAttrColorSet = pObject->GetMergedItemSet();
1436 0 : aAttrColorSet.Put( XFillColorItem( OUString(), GetCommentColor() ) );
1437 0 : aData.UpdateCaptionSet( aAttrColorSet );
1438 0 : pObject->SetMergedItemSetAndBroadcast( aData.GetCaptionSet() );
1439 0 : if( SdrCaptionObj* pCaption = dynamic_cast< SdrCaptionObj* >( pObject ) )
1440 : {
1441 0 : pCaption->SetSpecialTextBoxShadow();
1442 0 : pCaption->SetFixedTail();
1443 0 : }
1444 : }
1445 : }
1446 1032 : }
1447 : }
1448 : }
1449 : }
1450 :
1451 0 : void ScDetectiveFunc::UpdateAllArrowColors()
1452 : {
1453 : // no undo actions necessary
1454 :
1455 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1456 0 : if (!pModel)
1457 0 : return;
1458 :
1459 0 : for( SCTAB nObjTab = 0, nTabCount = pDoc->GetTableCount(); nObjTab < nTabCount; ++nObjTab )
1460 : {
1461 0 : SdrPage* pPage = pModel->GetPage( static_cast< sal_uInt16 >( nObjTab ) );
1462 : OSL_ENSURE( pPage, "Page ?" );
1463 0 : if( pPage )
1464 : {
1465 0 : SdrObjListIter aIter( *pPage, IM_FLAT );
1466 0 : for( SdrObject* pObject = aIter.Next(); pObject; pObject = aIter.Next() )
1467 : {
1468 0 : if ( pObject->GetLayer() == SC_LAYER_INTERN )
1469 : {
1470 0 : bool bArrow = false;
1471 0 : bool bError = false;
1472 :
1473 0 : ScAddress aPos;
1474 0 : ScRange aSource;
1475 : bool bDummy;
1476 0 : ScDetectiveObjType eType = GetDetectiveObjectType( pObject, nObjTab, aPos, aSource, bDummy );
1477 0 : if ( eType == SC_DETOBJ_ARROW || eType == SC_DETOBJ_TOOTHERTAB )
1478 : {
1479 : // source is valid, determine error flag from source range
1480 :
1481 0 : ScAddress aErrPos;
1482 0 : if ( HasError( aSource, aErrPos ) )
1483 0 : bError = true;
1484 : else
1485 0 : bArrow = true;
1486 : }
1487 0 : else if ( eType == SC_DETOBJ_FROMOTHERTAB )
1488 : {
1489 : // source range is no longer known, take error flag from formula itself
1490 : // (this means, if the formula has an error, all references to other tables
1491 : // are marked red)
1492 :
1493 0 : ScAddress aErrPos;
1494 0 : if ( HasError( ScRange( aPos), aErrPos ) )
1495 0 : bError = true;
1496 : else
1497 0 : bArrow = true;
1498 : }
1499 0 : else if ( eType == SC_DETOBJ_CIRCLE )
1500 : {
1501 : // circles (error marks) are always red
1502 :
1503 0 : bError = true;
1504 : }
1505 0 : else if ( eType == SC_DETOBJ_NONE )
1506 : {
1507 : // frame for area reference has no ObjType, always gets arrow color
1508 :
1509 0 : if ( pObject->ISA( SdrRectObj ) && !pObject->ISA( SdrCaptionObj ) )
1510 : {
1511 0 : bArrow = true;
1512 : }
1513 : }
1514 :
1515 0 : if ( bArrow || bError )
1516 : {
1517 0 : ColorData nColorData = ( bError ? GetErrorColor() : GetArrowColor() );
1518 0 : pObject->SetMergedItem( XLineColorItem( OUString(), Color( nColorData ) ) );
1519 :
1520 : // repaint only
1521 0 : pObject->ActionChanged();
1522 : }
1523 : }
1524 0 : }
1525 : }
1526 : }
1527 : }
1528 :
1529 0 : bool ScDetectiveFunc::FindFrameForObject( SdrObject* pObject, ScRange& rRange )
1530 : {
1531 : // find the rectangle for an arrow (always the object directly before the arrow)
1532 : // rRange must be initialized to the source cell of the arrow (start of area)
1533 :
1534 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1535 0 : if (!pModel) return false;
1536 :
1537 0 : SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nTab));
1538 : OSL_ENSURE(pPage,"Page ?");
1539 0 : if (!pPage) return false;
1540 :
1541 : // test if the object is a direct page member
1542 0 : if( pObject && pObject->GetPage() && (pObject->GetPage() == pObject->GetObjList()) )
1543 : {
1544 : // Is there a previous object?
1545 0 : const size_t nOrdNum = pObject->GetOrdNum();
1546 :
1547 0 : if(nOrdNum > 0)
1548 : {
1549 0 : SdrObject* pPrevObj = pPage->GetObj(nOrdNum - 1);
1550 :
1551 0 : if ( pPrevObj && pPrevObj->GetLayer() == SC_LAYER_INTERN && pPrevObj->ISA(SdrRectObj) )
1552 : {
1553 0 : ScDrawObjData* pPrevData = ScDrawLayer::GetObjDataTab( pPrevObj, rRange.aStart.Tab() );
1554 0 : if ( pPrevData && pPrevData->maStart.IsValid() && pPrevData->maEnd.IsValid() && (pPrevData->maStart == rRange.aStart) )
1555 : {
1556 0 : rRange.aEnd = pPrevData->maEnd;
1557 0 : return true;
1558 : }
1559 : }
1560 : }
1561 : }
1562 0 : return false;
1563 : }
1564 :
1565 0 : ScDetectiveObjType ScDetectiveFunc::GetDetectiveObjectType( SdrObject* pObject, SCTAB nObjTab,
1566 : ScAddress& rPosition, ScRange& rSource, bool& rRedLine )
1567 : {
1568 0 : rRedLine = false;
1569 0 : ScDetectiveObjType eType = SC_DETOBJ_NONE;
1570 :
1571 0 : if ( pObject && pObject->GetLayer() == SC_LAYER_INTERN )
1572 : {
1573 0 : if ( ScDrawObjData* pData = ScDrawLayer::GetObjDataTab( pObject, nObjTab ) )
1574 : {
1575 0 : bool bValidStart = pData->maStart.IsValid();
1576 0 : bool bValidEnd = pData->maEnd.IsValid();
1577 :
1578 0 : if ( pObject->IsPolyObj() && pObject->GetPointCount() == 2 )
1579 : {
1580 : // line object -> arrow
1581 :
1582 0 : if ( bValidStart )
1583 0 : eType = bValidEnd ? SC_DETOBJ_ARROW : SC_DETOBJ_TOOTHERTAB;
1584 0 : else if ( bValidEnd )
1585 0 : eType = SC_DETOBJ_FROMOTHERTAB;
1586 :
1587 0 : if ( bValidStart )
1588 0 : rSource = pData->maStart;
1589 0 : if ( bValidEnd )
1590 0 : rPosition = pData->maEnd;
1591 :
1592 0 : if ( bValidStart && lcl_HasThickLine( *pObject ) )
1593 : {
1594 : // thick line -> look for frame before this object
1595 :
1596 0 : FindFrameForObject( pObject, rSource ); // modifies rSource
1597 : }
1598 :
1599 0 : ColorData nObjColor = static_cast<const XLineColorItem&>(pObject->GetMergedItem(XATTR_LINECOLOR)).GetColorValue().GetColor();
1600 0 : if ( nObjColor == GetErrorColor() && nObjColor != GetArrowColor() )
1601 0 : rRedLine = true;
1602 : }
1603 0 : else if ( pObject->ISA(SdrCircObj) )
1604 : {
1605 0 : if ( bValidStart )
1606 : {
1607 : // cell position is returned in rPosition
1608 :
1609 0 : rPosition = pData->maStart;
1610 0 : eType = SC_DETOBJ_CIRCLE;
1611 : }
1612 : }
1613 : }
1614 : }
1615 :
1616 0 : return eType;
1617 : }
1618 :
1619 0 : void ScDetectiveFunc::InsertObject( ScDetectiveObjType eType,
1620 : const ScAddress& rPosition, const ScRange& rSource,
1621 : bool bRedLine )
1622 : {
1623 0 : ScDrawLayer* pModel = pDoc->GetDrawLayer();
1624 0 : if (!pModel) return;
1625 0 : ScDetectiveData aData( pModel );
1626 :
1627 0 : switch (eType)
1628 : {
1629 : case SC_DETOBJ_ARROW:
1630 : case SC_DETOBJ_FROMOTHERTAB:
1631 0 : InsertArrow( rPosition.Col(), rPosition.Row(),
1632 0 : rSource.aStart.Col(), rSource.aStart.Row(),
1633 0 : rSource.aEnd.Col(), rSource.aEnd.Row(),
1634 0 : (eType == SC_DETOBJ_FROMOTHERTAB), bRedLine, aData );
1635 0 : break;
1636 : case SC_DETOBJ_TOOTHERTAB:
1637 0 : InsertToOtherTab( rSource.aStart.Col(), rSource.aStart.Row(),
1638 0 : rSource.aEnd.Col(), rSource.aEnd.Row(),
1639 0 : bRedLine, aData );
1640 0 : break;
1641 : case SC_DETOBJ_CIRCLE:
1642 0 : DrawCircle( rPosition.Col(), rPosition.Row(), aData );
1643 0 : break;
1644 : default:
1645 : {
1646 : // added to avoid warnings
1647 : }
1648 0 : }
1649 : }
1650 :
1651 56 : ColorData ScDetectiveFunc::GetArrowColor()
1652 : {
1653 56 : if (!bColorsInitialized)
1654 0 : InitializeColors();
1655 56 : return nArrowColor;
1656 : }
1657 :
1658 28 : ColorData ScDetectiveFunc::GetErrorColor()
1659 : {
1660 28 : if (!bColorsInitialized)
1661 0 : InitializeColors();
1662 28 : return nErrorColor;
1663 : }
1664 :
1665 78 : ColorData ScDetectiveFunc::GetCommentColor()
1666 : {
1667 78 : if (!bColorsInitialized)
1668 10 : InitializeColors();
1669 78 : return nCommentColor;
1670 : }
1671 :
1672 10 : void ScDetectiveFunc::InitializeColors()
1673 : {
1674 : // may be called several times to update colors from configuration
1675 :
1676 10 : const svtools::ColorConfig& rColorCfg = SC_MOD()->GetColorConfig();
1677 10 : nArrowColor = rColorCfg.GetColorValue(svtools::CALCDETECTIVE).nColor;
1678 10 : nErrorColor = rColorCfg.GetColorValue(svtools::CALCDETECTIVEERROR).nColor;
1679 10 : nCommentColor = rColorCfg.GetColorValue(svtools::CALCNOTESBACKGROUND).nColor;
1680 :
1681 10 : bColorsInitialized = true;
1682 10 : }
1683 :
1684 18 : bool ScDetectiveFunc::IsColorsInitialized()
1685 : {
1686 18 : return bColorsInitialized;
1687 : }
1688 :
1689 0 : void ScDetectiveFunc::AppendChangTrackNoteSeparator(OUString &rDisplay)
1690 : {
1691 0 : rDisplay += "\n--------\n";
1692 228 : }
1693 :
1694 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|