LCOV - code coverage report
Current view: top level - sc/source/core/data - table4.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 427 1146 37.3 %
Date: 2014-11-03 Functions: 17 30 56.7 %
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 "scitems.hxx"
      21             : #include <comphelper/string.hxx>
      22             : #include <svx/algitem.hxx>
      23             : #include <editeng/boxitem.hxx>
      24             : #include <editeng/brushitem.hxx>
      25             : #include <editeng/contouritem.hxx>
      26             : #include <editeng/colritem.hxx>
      27             : #include <editeng/crossedoutitem.hxx>
      28             : #include <editeng/fhgtitem.hxx>
      29             : #include <editeng/fontitem.hxx>
      30             : #include <editeng/langitem.hxx>
      31             : #include <editeng/postitem.hxx>
      32             : #include <editeng/shdditem.hxx>
      33             : #include <editeng/udlnitem.hxx>
      34             : #include <editeng/wghtitem.hxx>
      35             : #include <svx/rotmodit.hxx>
      36             : #include <editeng/editobj.hxx>
      37             : #include <editeng/editeng.hxx>
      38             : #include <editeng/eeitem.hxx>
      39             : #include <editeng/escapementitem.hxx>
      40             : #include <svl/zforlist.hxx>
      41             : #include <vcl/keycodes.hxx>
      42             : #include <rtl/math.hxx>
      43             : #include <unotools/charclass.hxx>
      44             : 
      45             : #include "attrib.hxx"
      46             : #include "patattr.hxx"
      47             : #include "formulacell.hxx"
      48             : #include "table.hxx"
      49             : #include "globstr.hrc"
      50             : #include "global.hxx"
      51             : #include "document.hxx"
      52             : #include "autoform.hxx"
      53             : #include "userlist.hxx"
      54             : #include "zforauto.hxx"
      55             : #include "subtotal.hxx"
      56             : #include <formula/errorcodes.hxx>
      57             : #include "rangenam.hxx"
      58             : #include "docpool.hxx"
      59             : #include "progress.hxx"
      60             : #include "segmenttree.hxx"
      61             : #include "conditio.hxx"
      62             : #include "editutil.hxx"
      63             : #include <columnspanset.hxx>
      64             : 
      65             : #include <math.h>
      66             : #include <boost/scoped_ptr.hpp>
      67             : 
      68             : // STATIC DATA -----------------------------------------------------------
      69             : 
      70             : #define _D_MAX_LONG_  (double) 0x7fffffff
      71             : 
      72             : extern sal_uInt16 nScFillModeMouseModifier;     // global.cxx
      73             : 
      74             : namespace {
      75             : 
      76           4 : short lcl_DecompValueString( OUString& rValue, sal_Int32& nVal, sal_uInt16* pMinDigits = NULL )
      77             : {
      78           4 :     if ( rValue.isEmpty() )
      79             :     {
      80           0 :         nVal = 0;
      81           0 :         return 0;
      82             :     }
      83           4 :     const sal_Unicode* p = rValue.getStr();
      84           4 :     sal_Int32 nNeg = 0;
      85           4 :     sal_Int32 nNum = 0;
      86           4 :     if ( p[nNum] == '-' )
      87           0 :         nNum = nNeg = 1;
      88           8 :     while ( p[nNum] && CharClass::isAsciiNumeric( OUString(p[nNum]) ) )
      89           0 :         nNum++;
      90             : 
      91           4 :     sal_Unicode cNext = p[nNum];            // 0 if at the end
      92           4 :     sal_Unicode cLast = p[rValue.getLength()-1];
      93             : 
      94             :     // #i5550# If there are numbers at the beginning and the end,
      95             :     // prefer the one at the beginning only if it's followed by a space.
      96             :     // Otherwise, use the number at the end, to enable things like IP addresses.
      97           4 :     if ( nNum > nNeg && ( cNext == 0 || cNext == ' ' || !CharClass::isAsciiNumeric(OUString(cLast)) ) )
      98             :     {   // number at the beginning
      99           0 :         nVal = rValue.copy( 0, nNum ).toInt32();
     100             :         //  any number with a leading zero sets the minimum number of digits
     101           0 :         if ( p[nNeg] == '0' && pMinDigits && ( nNum - nNeg > *pMinDigits ) )
     102           0 :             *pMinDigits = nNum - nNeg;
     103           0 :         rValue = rValue.copy(nNum);
     104           0 :         return -1;
     105             :     }
     106             :     else
     107             :     {
     108           4 :         nNeg = 0;
     109           4 :         sal_Int32 nEnd = nNum = rValue.getLength() - 1;
     110           8 :         while ( nNum && CharClass::isAsciiNumeric( OUString(p[nNum]) ) )
     111           0 :             nNum--;
     112           4 :         if ( p[nNum] == '-' )
     113             :         {
     114           0 :             nNum--;
     115           0 :             nNeg = 1;
     116             :         }
     117           4 :         if ( nNum < nEnd - nNeg )
     118             :         {   // number at the end
     119           0 :             nVal = rValue.copy( nNum + 1 ).toInt32();
     120             :             //  any number with a leading zero sets the minimum number of digits
     121           0 :             if ( p[nNum+1+nNeg] == '0' && pMinDigits && ( nEnd - nNum - nNeg > *pMinDigits ) )
     122           0 :                 *pMinDigits = nEnd - nNum - nNeg;
     123           0 :             rValue = rValue.copy(0, nNum + 1);
     124           0 :             return 1;
     125             :         }
     126             :     }
     127           4 :     nVal = 0;
     128           4 :     return 0;
     129             : }
     130             : 
     131           0 : OUString lcl_ValueString( sal_Int32 nValue, sal_uInt16 nMinDigits )
     132             : {
     133           0 :     if ( nMinDigits <= 1 )
     134           0 :         return OUString::number( nValue );           // simple case...
     135             :     else
     136             :     {
     137           0 :         OUString aStr = OUString::number( std::abs( nValue ) );
     138           0 :         if ( aStr.getLength() < nMinDigits )
     139             :         {
     140           0 :             OUStringBuffer aZero;
     141           0 :             comphelper::string::padToLength(aZero, nMinDigits - aStr.getLength(), '0');
     142           0 :             aStr = aZero.makeStringAndClear() + aStr;
     143             :         }
     144             :         //  nMinDigits doesn't include the '-' sign -> add after inserting zeros
     145           0 :         if ( nValue < 0 )
     146           0 :             aStr = "-" + aStr;
     147           0 :         return aStr;
     148             :     }
     149             : }
     150             : 
     151           0 : void setSuffixCell(
     152             :     ScColumn& rColumn, SCROW nRow, sal_Int32 nValue, sal_uInt16 nDigits, const OUString& rSuffix,
     153             :     CellType eCellType, bool bIsOrdinalSuffix )
     154             : {
     155           0 :     ScDocument& rDoc = rColumn.GetDoc();
     156           0 :     OUString aValue = lcl_ValueString(nValue, nDigits);
     157           0 :     if (!bIsOrdinalSuffix)
     158             :     {
     159           0 :         rColumn.SetRawString(nRow, aValue += rSuffix);
     160           0 :         return;
     161             :     }
     162             : 
     163           0 :     OUString aOrdinalSuffix = ScGlobal::GetOrdinalSuffix(nValue);
     164           0 :     if (eCellType != CELLTYPE_EDIT)
     165             :     {
     166           0 :         rColumn.SetRawString(nRow, aValue += aOrdinalSuffix);
     167           0 :         return;
     168             :     }
     169             : 
     170           0 :     EditEngine aEngine(rDoc.GetEnginePool());
     171           0 :     aEngine.SetEditTextObjectPool(rDoc.GetEditPool());
     172             : 
     173           0 :     SfxItemSet aAttr = aEngine.GetEmptyItemSet();
     174           0 :     aAttr.Put( SvxEscapementItem( SVX_ESCAPEMENT_SUPERSCRIPT, EE_CHAR_ESCAPEMENT));
     175           0 :     aEngine.SetText( aValue );
     176             :     aEngine.QuickInsertText(
     177             :         aOrdinalSuffix,
     178           0 :         ESelection(0, aValue.getLength(), 0, aValue.getLength() + aOrdinalSuffix.getLength()));
     179             : 
     180             :     aEngine.QuickSetAttribs(
     181             :         aAttr,
     182           0 :         ESelection(0, aValue.getLength(), 0, aValue.getLength() + aOrdinalSuffix.getLength()));
     183             : 
     184             :     // Text object instance will be owned by the cell.
     185           0 :     rColumn.SetEditText(nRow, aEngine.CreateTextObject());
     186             : }
     187             : 
     188             : }
     189             : 
     190          28 : void ScTable::FillAnalyse( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
     191             :                             FillCmd& rCmd, FillDateCmd& rDateCmd,
     192             :                             double& rInc, sal_uInt16& rMinDigits,
     193             :                             ScUserListData*& rListData, sal_uInt16& rListIndex)
     194             : {
     195             :     OSL_ENSURE( nCol1==nCol2 || nRow1==nRow2, "FillAnalyse: invalid range" );
     196             : 
     197          28 :     rInc = 0.0;
     198          28 :     rMinDigits = 0;
     199          28 :     rListData = NULL;
     200          28 :     rCmd = FILL_SIMPLE;
     201          28 :     if ( (nScFillModeMouseModifier & KEY_MOD1) )
     202           2 :         return ;        // Ctrl-key: Copy
     203             : 
     204             :     SCCOL nAddX;
     205             :     SCROW nAddY;
     206             :     SCSIZE nCount;
     207          28 :     if (nCol1 == nCol2)
     208             :     {
     209          28 :         nAddX = 0;
     210          28 :         nAddY = 1;
     211          28 :         nCount = static_cast<SCSIZE>(nRow2 - nRow1 + 1);
     212             :     }
     213             :     else
     214             :     {
     215           0 :         nAddX = 1;
     216           0 :         nAddY = 0;
     217           0 :         nCount = static_cast<SCSIZE>(nCol2 - nCol1 + 1);
     218             :     }
     219             : 
     220          28 :     SCCOL nCol = nCol1;
     221          28 :     SCROW nRow = nRow1;
     222             : 
     223          28 :     ScRefCellValue aFirstCell = GetCellValue(nCol, nRow);
     224          28 :     CellType eCellType = aFirstCell.meType;
     225             : 
     226          28 :     if (eCellType == CELLTYPE_VALUE)
     227             :     {
     228          20 :         sal_uInt32 nFormat = static_cast<const SfxUInt32Item*>(GetAttr(nCol,nRow,ATTR_VALUE_FORMAT))->GetValue();
     229          20 :         bool bDate = ( pDocument->GetFormatTable()->GetType(nFormat) == NUMBERFORMAT_DATE );
     230          20 :         if (bDate)
     231             :         {
     232           0 :             if (nCount > 1)
     233             :             {
     234             :                 double nVal;
     235           0 :                 Date aNullDate = *pDocument->GetFormatTable()->GetNullDate();
     236           0 :                 Date aDate1 = aNullDate;
     237           0 :                 nVal = aFirstCell.mfValue;
     238           0 :                 aDate1 += (long)nVal;
     239           0 :                 Date aDate2 = aNullDate;
     240           0 :                 nVal = GetValue(nCol+nAddX, nRow+nAddY);
     241           0 :                 aDate2 += (long)nVal;
     242           0 :                 if ( aDate1 != aDate2 )
     243             :                 {
     244           0 :                     long nCmpInc = 0;
     245             :                     FillDateCmd eType;
     246           0 :                     long nDDiff = aDate2.GetDay()   - (long) aDate1.GetDay();
     247           0 :                     long nMDiff = aDate2.GetMonth() - (long) aDate1.GetMonth();
     248           0 :                     long nYDiff = aDate2.GetYear()  - (long) aDate1.GetYear();
     249           0 :                     if ( nDDiff )
     250             :                     {
     251           0 :                         eType = FILL_DAY;
     252           0 :                         nCmpInc = aDate2 - aDate1;
     253             :                     }
     254             :                     else
     255             :                     {
     256           0 :                         eType = FILL_MONTH;
     257           0 :                         nCmpInc = nMDiff + 12 * nYDiff;
     258             :                     }
     259             : 
     260           0 :                     nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     261           0 :                     nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     262           0 :                     bool bVal = true;
     263           0 :                     for (sal_uInt16 i=1; i<nCount && bVal; i++)
     264             :                     {
     265           0 :                         ScRefCellValue aCell = GetCellValue(nCol,nRow);
     266           0 :                         if (aCell.meType == CELLTYPE_VALUE)
     267             :                         {
     268           0 :                             nVal = aCell.mfValue;
     269           0 :                             aDate2 = aNullDate + (long) nVal;
     270           0 :                             if ( eType == FILL_DAY )
     271             :                             {
     272           0 :                                 if ( aDate2-aDate1 != nCmpInc )
     273           0 :                                     bVal = false;
     274             :                             }
     275             :                             else
     276             :                             {
     277           0 :                                 nDDiff = aDate2.GetDay()   - (long) aDate1.GetDay();
     278           0 :                                 nMDiff = aDate2.GetMonth() - (long) aDate1.GetMonth();
     279           0 :                                 nYDiff = aDate2.GetYear()  - (long) aDate1.GetYear();
     280           0 :                                 if (nDDiff || ( nMDiff + 12 * nYDiff != nCmpInc ))
     281           0 :                                     bVal = false;
     282             :                             }
     283           0 :                             aDate1 = aDate2;
     284           0 :                             nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     285           0 :                             nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     286             :                         }
     287             :                         else
     288           0 :                             bVal = false;   // kein Datum passt auch nicht
     289           0 :                     }
     290           0 :                     if (bVal)
     291             :                     {
     292           0 :                         if ( eType == FILL_MONTH && ( nCmpInc % 12 == 0 ) )
     293             :                         {
     294           0 :                             eType = FILL_YEAR;
     295           0 :                             nCmpInc /= 12;
     296             :                         }
     297           0 :                         rCmd = FILL_DATE;
     298           0 :                         rDateCmd = eType;
     299           0 :                         rInc = nCmpInc;
     300             :                     }
     301             :                 }
     302             :             }
     303             :             else                            // single date -> increment by days
     304             :             {
     305           0 :                 rCmd = FILL_DATE;
     306           0 :                 rDateCmd = FILL_DAY;
     307           0 :                 rInc = 1.0;
     308             :             }
     309             :         }
     310             :         else
     311             :         {
     312          20 :             if (nCount > 1)
     313             :             {
     314           0 :                 double nVal1 = aFirstCell.mfValue;
     315           0 :                 double nVal2 = GetValue(nCol+nAddX, nRow+nAddY);
     316           0 :                 rInc = nVal2 - nVal1;
     317           0 :                 nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     318           0 :                 nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     319           0 :                 bool bVal = true;
     320           0 :                 for (sal_uInt16 i=1; i<nCount && bVal; i++)
     321             :                 {
     322           0 :                     ScRefCellValue aCell = GetCellValue(nCol,nRow);
     323           0 :                     if (aCell.meType == CELLTYPE_VALUE)
     324             :                     {
     325           0 :                         nVal2 = aCell.mfValue;
     326           0 :                         double nDiff = nVal2 - nVal1;
     327           0 :                         if ( !::rtl::math::approxEqual( nDiff, rInc, 13 ) )
     328           0 :                             bVal = false;
     329           0 :                         nVal1 = nVal2;
     330             :                     }
     331             :                     else
     332           0 :                         bVal = false;
     333           0 :                     nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     334           0 :                     nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     335           0 :                 }
     336           0 :                 if (bVal)
     337           0 :                     rCmd = FILL_LINEAR;
     338             :             }
     339             :         }
     340             :     }
     341           8 :     else if (eCellType == CELLTYPE_STRING || eCellType == CELLTYPE_EDIT)
     342             :     {
     343           4 :         OUString aStr;
     344           4 :         GetString(nCol, nRow, aStr);
     345             : 
     346             :         // fdo#39500 don't deduce increment from multiple equal list entries
     347           4 :         bool bAllSame = true;
     348          10 :         for (sal_uInt16 i = 0; i < nCount; ++i)
     349             :         {
     350           6 :             OUString aTestStr;
     351           6 :             GetString(static_cast<SCCOL>(nCol + i* nAddX), static_cast<SCROW>(nRow + i * nAddY), aTestStr);
     352           6 :             if(aStr != aTestStr)
     353             :             {
     354           0 :                 bAllSame = false;
     355           0 :                 break;
     356             :             }
     357           6 :         }
     358           4 :         if(bAllSame && nCount > 1)
     359           2 :             return;
     360             : 
     361           2 :         rListData = (ScUserListData*)(ScGlobal::GetUserList()->GetData(aStr));
     362           2 :         if (rListData)
     363             :         {
     364           2 :             rListData->GetSubIndex(aStr, rListIndex);
     365           2 :             nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     366           2 :             nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     367           2 :             for (sal_uInt16 i=1; i<nCount && rListData; i++)
     368             :             {
     369           0 :                 GetString(nCol, nRow, aStr);
     370           0 :                 if (!rListData->GetSubIndex(aStr, rListIndex))
     371           0 :                     rListData = NULL;
     372           0 :                 nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     373           0 :                 nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     374             :             }
     375             :         }
     376           0 :         else if ( nCount > 1 )
     377             :         {
     378             :             //  pass rMinDigits to all DecompValueString calls
     379             :             //  -> longest number defines rMinDigits
     380             : 
     381             :             sal_Int32 nVal1;
     382           0 :             short nFlag1 = lcl_DecompValueString( aStr, nVal1, &rMinDigits );
     383           0 :             if ( nFlag1 )
     384             :             {
     385             :                 sal_Int32 nVal2;
     386           0 :                 GetString( nCol+nAddX, nRow+nAddY, aStr );
     387           0 :                 short nFlag2 = lcl_DecompValueString( aStr, nVal2, &rMinDigits );
     388           0 :                 if ( nFlag1 == nFlag2 )
     389             :                 {
     390           0 :                     rInc = (double)nVal2 - (double)nVal1;
     391           0 :                     nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     392           0 :                     nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     393           0 :                     bool bVal = true;
     394           0 :                     for (sal_uInt16 i=1; i<nCount && bVal; i++)
     395             :                     {
     396           0 :                         ScRefCellValue aCell = GetCellValue(nCol, nRow);
     397           0 :                         CellType eType = aCell.meType;
     398           0 :                         if ( eType == CELLTYPE_STRING || eType == CELLTYPE_EDIT )
     399             :                         {
     400           0 :                             aStr = aCell.getString(pDocument);
     401           0 :                             nFlag2 = lcl_DecompValueString( aStr, nVal2, &rMinDigits );
     402           0 :                             if ( nFlag1 == nFlag2 )
     403             :                             {
     404           0 :                                 double nDiff = (double)nVal2 - (double)nVal1;
     405           0 :                                 if ( !::rtl::math::approxEqual( nDiff, rInc, 13 ) )
     406           0 :                                     bVal = false;
     407           0 :                                 nVal1 = nVal2;
     408             :                             }
     409             :                             else
     410           0 :                                 bVal = false;
     411             :                         }
     412             :                         else
     413           0 :                             bVal = false;
     414           0 :                         nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
     415           0 :                         nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
     416           0 :                     }
     417           0 :                     if (bVal)
     418           0 :                         rCmd = FILL_LINEAR;
     419             :                 }
     420             :             }
     421             :         }
     422             :         else
     423             :         {
     424             :             //  call DecompValueString to set rMinDigits
     425             :             sal_Int32 nDummy;
     426           0 :             lcl_DecompValueString( aStr, nDummy, &rMinDigits );
     427           2 :         }
     428          26 :     }
     429             : }
     430             : 
     431           6 : void ScTable::FillFormula(
     432             :     ScFormulaCell* pSrcCell, SCCOL nDestCol, SCROW nDestRow, bool bLast )
     433             : {
     434             : 
     435           6 :     pDocument->SetNoListening( true );  // still the wrong reference
     436           6 :     ScAddress aAddr( nDestCol, nDestRow, nTab );
     437           6 :     ScFormulaCell* pDestCell = new ScFormulaCell( *pSrcCell, *pDocument, aAddr );
     438           6 :     aCol[nDestCol].SetFormulaCell(nDestRow, pDestCell);
     439             : 
     440           6 :     if ( bLast && pDestCell->GetMatrixFlag() )
     441             :     {
     442           0 :         ScAddress aOrg;
     443           0 :         if ( pDestCell->GetMatrixOrigin( aOrg ) )
     444             :         {
     445           0 :             if ( nDestCol >= aOrg.Col() && nDestRow >= aOrg.Row() )
     446             :             {
     447           0 :                 ScFormulaCell* pOrgCell = pDocument->GetFormulaCell(aOrg);
     448           0 :                 if (pOrgCell && pOrgCell->GetMatrixFlag() == MM_FORMULA)
     449             :                 {
     450             :                     ((ScFormulaCell*)pOrgCell)->SetMatColsRows(
     451           0 :                         nDestCol - aOrg.Col() + 1,
     452           0 :                         nDestRow - aOrg.Row() + 1 );
     453             :                 }
     454             :                 else
     455             :                 {
     456             :                     OSL_FAIL( "FillFormula: MatrixOrigin no forumla cell with MM_FORMULA" );
     457             :                 }
     458             :             }
     459             :             else
     460             :             {
     461             :                 OSL_FAIL( "FillFormula: MatrixOrigin bottom right" );
     462             :             }
     463             :         }
     464             :         else
     465             :         {
     466             :             OSL_FAIL( "FillFormula: no MatrixOrigin" );
     467             :         }
     468             :     }
     469           6 :     pDocument->SetNoListening( false );
     470           6 :     pDestCell->StartListeningTo( pDocument );
     471             : 
     472           6 : }
     473             : 
     474          14 : void ScTable::FillAuto( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
     475             :                         sal_uLong nFillCount, FillDir eFillDir, ScProgress* pProgress )
     476             : {
     477          14 :     if ( (nFillCount == 0) || !ValidColRow(nCol1, nRow1) || !ValidColRow(nCol2, nRow2) )
     478          14 :         return;
     479             : 
     480             :     //  Detect direction
     481             : 
     482          14 :     bool bVertical = (eFillDir == FILL_TO_BOTTOM || eFillDir == FILL_TO_TOP);
     483          14 :     bool bPositive = (eFillDir == FILL_TO_BOTTOM || eFillDir == FILL_TO_RIGHT);
     484             : 
     485          14 :     SCCOLROW nCol = 0;
     486          14 :     SCCOLROW nRow = 0;
     487          14 :     SCCOLROW& rInner = bVertical ? nRow : nCol;        // loop variables
     488          14 :     SCCOLROW& rOuter = bVertical ? nCol : nRow;
     489             :     SCCOLROW nOStart;
     490             :     SCCOLROW nOEnd;
     491             :     SCCOLROW nIStart;
     492             :     SCCOLROW nIEnd;
     493             :     SCCOLROW nISrcStart;
     494             :     SCCOLROW nISrcEnd;
     495          14 :     ScRange aFillRange;
     496             : 
     497          14 :     if (bVertical)
     498             :     {
     499          12 :         nOStart = nCol1;
     500          12 :         nOEnd = nCol2;
     501          12 :         if (bPositive)
     502             :         {
     503          10 :             nISrcStart = nRow1;
     504          10 :             nISrcEnd = nRow2;
     505          10 :             nIStart = nRow2 + 1;
     506          10 :             nIEnd = nRow2 + nFillCount;
     507          10 :             aFillRange = ScRange(nCol1, nRow2+1, 0, nCol2, nRow2 + nFillCount, 0);
     508             :         }
     509             :         else
     510             :         {
     511           2 :             nISrcStart = nRow2;
     512           2 :             nISrcEnd = nRow1;
     513           2 :             nIStart = nRow1 - 1;
     514           2 :             nIEnd = nRow1 - nFillCount;
     515           2 :             aFillRange = ScRange(nCol1, nRow1-1, 0, nCol2, nRow2 - nFillCount, 0);
     516             :         }
     517             :     }
     518             :     else
     519             :     {
     520           2 :         nOStart = nRow1;
     521           2 :         nOEnd = nRow2;
     522           2 :         if (bPositive)
     523             :         {
     524           2 :             nISrcStart = nCol1;
     525           2 :             nISrcEnd = nCol2;
     526           2 :             nIStart = nCol2 + 1;
     527           2 :             nIEnd = nCol2 + nFillCount;
     528           2 :             aFillRange = ScRange(nCol2 + 1, nRow1, 0, nCol2 + nFillCount, nRow2, 0);
     529             :         }
     530             :         else
     531             :         {
     532           0 :             nISrcStart = nCol2;
     533           0 :             nISrcEnd = nCol1;
     534           0 :             nIStart = nCol1 - 1;
     535           0 :             nIEnd = nCol1 - nFillCount;
     536           0 :             aFillRange = ScRange(nCol1 - 1, nRow1, 0, nCol1 - nFillCount, nRow2, 0);
     537             :         }
     538             :     }
     539          14 :     sal_uLong nIMin = nIStart;
     540          14 :     sal_uLong nIMax = nIEnd;
     541          14 :     PutInOrder(nIMin,nIMax);
     542          14 :     bool bHasFiltered = IsDataFiltered(aFillRange);
     543             : 
     544          14 :     if (!bHasFiltered)
     545             :     {
     546          14 :         if (bVertical)
     547          12 :             DeleteArea(nCol1, static_cast<SCROW>(nIMin), nCol2, static_cast<SCROW>(nIMax), IDF_AUTOFILL);
     548             :         else
     549           2 :             DeleteArea(static_cast<SCCOL>(nIMin), nRow1, static_cast<SCCOL>(nIMax), nRow2, IDF_AUTOFILL);
     550             :     }
     551             : 
     552          14 :     sal_uLong nProgress = 0;
     553          14 :     if (pProgress)
     554           8 :         nProgress = pProgress->GetState();
     555             : 
     556             :     //  execute
     557             : 
     558          14 :     sal_uLong nActFormCnt = 0;
     559          42 :     for (rOuter = nOStart; rOuter <= nOEnd; rOuter++)
     560             :     {
     561          28 :         sal_uLong nMaxFormCnt = 0;                      // for formulas
     562             : 
     563             :         //  transfer attributes
     564             : 
     565          28 :         const ScPatternAttr* pSrcPattern = NULL;
     566          28 :         const ScStyleSheet* pStyleSheet = NULL;
     567          28 :         SCCOLROW nAtSrc = nISrcStart;
     568          28 :         ScPatternAttr* pNewPattern = NULL;
     569          28 :         bool bGetPattern = true;
     570          28 :         rInner = nIStart;
     571             :         while (true)        // #i53728# with "for (;;)" old solaris/x86 compiler mis-optimizes
     572             :         {
     573          50 :             if (!ColHidden(nCol) && !RowHidden(nRow))
     574             :             {
     575          50 :                 if ( bGetPattern )
     576             :                 {
     577          30 :                     delete pNewPattern;
     578          30 :                     if (bVertical)      // rInner&:=nRow, rOuter&:=nCol
     579          20 :                         pSrcPattern = aCol[nCol].GetPattern(static_cast<SCROW>(nAtSrc));
     580             :                     else                // rInner&:=nCol, rOuter&:=nRow
     581          10 :                         pSrcPattern = aCol[nAtSrc].GetPattern(static_cast<SCROW>(nRow));
     582          30 :                     bGetPattern = false;
     583          30 :                     pStyleSheet = pSrcPattern->GetStyleSheet();
     584             :                     //  do not transfer ATTR_MERGE / ATTR_MERGE_FLAG
     585          30 :                     const SfxItemSet& rSet = pSrcPattern->GetItemSet();
     586          60 :                     if ( rSet.GetItemState(ATTR_MERGE, false) == SfxItemState::SET
     587          30 :                             || rSet.GetItemState(ATTR_MERGE_FLAG, false) == SfxItemState::SET )
     588             :                     {
     589           0 :                         pNewPattern = new ScPatternAttr( *pSrcPattern );
     590           0 :                         SfxItemSet& rNewSet = pNewPattern->GetItemSet();
     591           0 :                         rNewSet.ClearItem(ATTR_MERGE);
     592           0 :                         rNewSet.ClearItem(ATTR_MERGE_FLAG);
     593             :                     }
     594             :                     else
     595          30 :                         pNewPattern = NULL;
     596             :                 }
     597             : 
     598          50 :                 const ScCondFormatItem& rCondFormatItem = static_cast<const ScCondFormatItem&>(pSrcPattern->GetItem(ATTR_CONDITIONAL));
     599          50 :                 const std::vector<sal_uInt32>& rCondFormatIndex = rCondFormatItem.GetCondFormatData();
     600             : 
     601          50 :                 if ( bVertical && nISrcStart == nISrcEnd && !bHasFiltered )
     602             :                 {
     603             :                     //  set all attributes at once (en bloc)
     604          16 :                     if (pNewPattern || pSrcPattern != pDocument->GetDefPattern())
     605             :                     {
     606             :                         //  Default is already present (DeleteArea)
     607           0 :                         SCROW nY1 = static_cast<SCROW>(std::min( nIStart, nIEnd ));
     608           0 :                         SCROW nY2 = static_cast<SCROW>(std::max( nIStart, nIEnd ));
     609           0 :                         if ( pStyleSheet )
     610           0 :                             aCol[nCol].ApplyStyleArea( nY1, nY2, *pStyleSheet );
     611           0 :                         if ( pNewPattern )
     612           0 :                             aCol[nCol].ApplyPatternArea( nY1, nY2, *pNewPattern );
     613             :                         else
     614           0 :                             aCol[nCol].ApplyPatternArea( nY1, nY2, *pSrcPattern );
     615             : 
     616           0 :                         for(std::vector<sal_uInt32>::const_iterator itr = rCondFormatIndex.begin(), itrEnd = rCondFormatIndex.end();
     617             :                                                         itr != itrEnd; ++itr)
     618             :                         {
     619           0 :                             ScConditionalFormat* pCondFormat = mpCondFormatList->GetFormat(*itr);
     620           0 :                             ScRangeList aRange = pCondFormat->GetRange();
     621           0 :                             aRange.Join(ScRange(nCol, nY1, nTab, nCol, nY2, nTab));
     622           0 :                             pCondFormat->AddRange(aRange);
     623           0 :                         }
     624             :                     }
     625             : 
     626          16 :                     break;
     627             :                 }
     628             : 
     629          34 :                 if ( bHasFiltered )
     630             :                     DeleteArea(static_cast<SCCOL>(nCol), static_cast<SCROW>(nRow),
     631           0 :                             static_cast<SCCOL>(nCol), static_cast<SCROW>(nRow), IDF_AUTOFILL);
     632             : 
     633          34 :                 if ( pSrcPattern != aCol[nCol].GetPattern( static_cast<SCROW>(nRow) ) )
     634             :                 {
     635             :                     // Transfer template too
     636             :                     //! Merge ApplyPattern to AttrArray ??
     637           0 :                     if ( pStyleSheet )
     638           0 :                         aCol[nCol].ApplyStyle( static_cast<SCROW>(nRow), *pStyleSheet );
     639             : 
     640             :                     //  Use ApplyPattern instead of SetPattern to keep old MergeFlags
     641           0 :                     if ( pNewPattern )
     642           0 :                         aCol[nCol].ApplyPattern( static_cast<SCROW>(nRow), *pNewPattern );
     643             :                     else
     644           0 :                         aCol[nCol].ApplyPattern( static_cast<SCROW>(nRow), *pSrcPattern );
     645             : 
     646           0 :                     for(std::vector<sal_uInt32>::const_iterator itr = rCondFormatIndex.begin(), itrEnd = rCondFormatIndex.end();
     647             :                             itr != itrEnd; ++itr)
     648             :                     {
     649           0 :                         ScConditionalFormat* pCondFormat = mpCondFormatList->GetFormat(*itr);
     650           0 :                         ScRangeList aRange = pCondFormat->GetRange();
     651           0 :                         aRange.Join(ScRange(nCol, nRow, nTab, nCol, nRow, nTab));
     652           0 :                         pCondFormat->AddRange(aRange);
     653           0 :                     }
     654             :                 }
     655             : 
     656          34 :                 if (nAtSrc==nISrcEnd)
     657             :                 {
     658          32 :                     if ( nAtSrc != nISrcStart )
     659             :                     {    // More than one source cell
     660           2 :                         nAtSrc = nISrcStart;
     661           2 :                         bGetPattern = true;
     662             :                     }
     663             :                 }
     664           2 :                 else if (bPositive)
     665             :                 {
     666           2 :                     ++nAtSrc;
     667           2 :                     bGetPattern = true;
     668             :                 }
     669             :                 else
     670             :                 {
     671           0 :                     --nAtSrc;
     672           0 :                     bGetPattern = true;
     673             :                 }
     674             :             }
     675             : 
     676          34 :             if (rInner == nIEnd) break;
     677          22 :             if (bPositive) ++rInner; else --rInner;
     678             :         }
     679          28 :         if ( pNewPattern )
     680           0 :             delete pNewPattern;
     681             : 
     682             :         //  Analyse
     683             : 
     684             :         FillCmd eFillCmd;
     685             :         FillDateCmd eDateCmd;
     686             :         double nInc;
     687             :         sal_uInt16 nMinDigits;
     688          28 :         ScUserListData* pListData = NULL;
     689             :         sal_uInt16 nListIndex;
     690          28 :         if (bVertical)
     691             :             FillAnalyse(static_cast<SCCOL>(nCol),nRow1,
     692             :                     static_cast<SCCOL>(nCol),nRow2, eFillCmd,eDateCmd,
     693          18 :                     nInc,nMinDigits, pListData,nListIndex);
     694             :         else
     695             :             FillAnalyse(nCol1,static_cast<SCROW>(nRow),
     696             :                     nCol2,static_cast<SCROW>(nRow), eFillCmd,eDateCmd,
     697          10 :                     nInc,nMinDigits, pListData,nListIndex);
     698             : 
     699          28 :         if (pListData)
     700             :         {
     701           2 :             sal_uInt16 nListCount = pListData->GetSubCount();
     702           2 :             if ( !bPositive )
     703             :             {
     704             :                 //  nListIndex of FillAnalyse points to the last entry -> adjust
     705           0 :                 sal_uLong nSub = nISrcStart - nISrcEnd;
     706           0 :                 for (sal_uLong i=0; i<nSub; i++)
     707             :                 {
     708           0 :                     if (nListIndex == 0) nListIndex = nListCount;
     709           0 :                     --nListIndex;
     710             :                 }
     711             :             }
     712             : 
     713           2 :             rInner = nIStart;
     714             :             while (true)        // #i53728# with "for (;;)" old solaris/x86 compiler mis-optimizes
     715             :             {
     716           4 :                 if(!ColHidden(nCol) && !RowHidden(nRow))
     717             :                 {
     718           4 :                     if (bPositive)
     719             :                     {
     720           4 :                         ++nListIndex;
     721           4 :                         if (nListIndex >= nListCount) nListIndex = 0;
     722             :                     }
     723             :                     else
     724             :                     {
     725           0 :                         if (nListIndex == 0) nListIndex = nListCount;
     726           0 :                         --nListIndex;
     727             :                     }
     728           4 :                     aCol[nCol].SetRawString(static_cast<SCROW>(nRow), pListData->GetSubStr(nListIndex));
     729             :                 }
     730             : 
     731           4 :                 if (rInner == nIEnd) break;
     732           2 :                 if (bPositive) ++rInner; else --rInner;
     733             :             }
     734           2 :             if(pProgress)
     735             :             {
     736           0 :                 nProgress += nIMax - nIMin + 1;
     737           0 :                 pProgress->SetStateOnPercent( nProgress );
     738           2 :             }
     739             :         }
     740          26 :         else if (eFillCmd == FILL_SIMPLE)           // fill with pattern/sample
     741             :         {
     742             :             FillAutoSimple(
     743             :                 nISrcStart, nISrcEnd, nIStart, nIEnd, rInner, nCol, nRow,
     744          26 :                 nActFormCnt, nMaxFormCnt, bHasFiltered, bVertical, bPositive, pProgress, nProgress);
     745             :         }
     746             :         else
     747             :         {
     748           0 :             if (!bPositive)
     749           0 :                 nInc = -nInc;
     750           0 :             double nEndVal = (nInc>=0.0) ? MAXDOUBLE : -MAXDOUBLE;
     751           0 :             if (bVertical)
     752             :                 FillSeries( static_cast<SCCOL>(nCol), nRow1,
     753             :                         static_cast<SCCOL>(nCol), nRow2, nFillCount, eFillDir,
     754             :                         eFillCmd, eDateCmd, nInc, nEndVal, nMinDigits, false,
     755           0 :                         pProgress );
     756             :             else
     757             :                 FillSeries( nCol1, static_cast<SCROW>(nRow), nCol2,
     758             :                         static_cast<SCROW>(nRow), nFillCount, eFillDir,
     759             :                         eFillCmd, eDateCmd, nInc, nEndVal, nMinDigits, false,
     760           0 :                         pProgress );
     761           0 :             if (pProgress)
     762           0 :                 nProgress = pProgress->GetState();
     763             :         }
     764             : 
     765          28 :         nActFormCnt += nMaxFormCnt;
     766          22 :     }
     767             : }
     768             : 
     769           0 : OUString ScTable::GetAutoFillPreview( const ScRange& rSource, SCCOL nEndX, SCROW nEndY )
     770             : {
     771           0 :     OUString aValue;
     772             : 
     773           0 :     SCCOL nCol1 = rSource.aStart.Col();
     774           0 :     SCROW nRow1 = rSource.aStart.Row();
     775           0 :     SCCOL nCol2 = rSource.aEnd.Col();
     776           0 :     SCROW nRow2 = rSource.aEnd.Row();
     777           0 :     bool bOk = true;
     778           0 :     long nIndex = 0;
     779           0 :     sal_uLong nSrcCount = 0;
     780           0 :     FillDir eFillDir = FILL_TO_BOTTOM;
     781           0 :     if ( nEndX == nCol2 && nEndY == nRow2 )     // empty
     782           0 :         bOk = false;
     783           0 :     else if ( nEndX == nCol2 )                  // to up / down
     784             :     {
     785           0 :         nEndX = nCol2 = nCol1;                  // use only first column
     786           0 :         nSrcCount = nRow2 - nRow1 + 1;
     787           0 :         nIndex = ((long)nEndY) - nRow1;         // can be negative
     788           0 :         if ( nEndY >= nRow1 )
     789           0 :             eFillDir = FILL_TO_BOTTOM;
     790             :         else
     791           0 :             eFillDir = FILL_TO_TOP;
     792             :     }
     793           0 :     else if ( nEndY == nRow2 )                  // to left / right
     794             :     {
     795           0 :         nEndY = nRow2 = nRow1;                  // use only first row
     796           0 :         nSrcCount = nCol2 - nCol1 + 1;
     797           0 :         nIndex = ((long)nEndX) - nCol1;         // can be negative
     798           0 :         if ( nEndX >= nCol1 )
     799           0 :             eFillDir = FILL_TO_RIGHT;
     800             :         else
     801           0 :             eFillDir = FILL_TO_LEFT;
     802             :     }
     803             :     else                                        // direction not clear
     804           0 :         bOk = false;
     805             : 
     806           0 :     if ( bOk )
     807             :     {
     808             :         FillCmd eFillCmd;
     809             :         FillDateCmd eDateCmd;
     810             :         double nInc;
     811             :         sal_uInt16 nMinDigits;
     812           0 :         ScUserListData* pListData = NULL;
     813             :         sal_uInt16 nListIndex;
     814             : 
     815           0 :         FillAnalyse(nCol1,nRow1, nCol2,nRow2, eFillCmd,eDateCmd, nInc,nMinDigits, pListData,nListIndex);
     816             : 
     817           0 :         if ( pListData )                            // user defined list
     818             :         {
     819           0 :             sal_uInt16 nListCount = pListData->GetSubCount();
     820           0 :             if ( nListCount )
     821             :             {
     822           0 :                 sal_uLong nSub = nSrcCount - 1; //  nListIndex is from last source entry
     823           0 :                 while ( nIndex < sal::static_int_cast<long>(nSub) )
     824           0 :                     nIndex += nListCount;
     825           0 :                 sal_uLong nPos = ( nListIndex + nIndex - nSub ) % nListCount;
     826           0 :                 aValue = pListData->GetSubStr(sal::static_int_cast<sal_uInt16>(nPos));
     827             :             }
     828             :         }
     829           0 :         else if ( eFillCmd == FILL_SIMPLE )         // fill with pattern/sample
     830             :         {
     831           0 :             if ((eFillDir == FILL_TO_BOTTOM)||(eFillDir == FILL_TO_TOP))
     832             :             {
     833           0 :                 long nBegin = 0;
     834           0 :                 long nEnd = 0;
     835           0 :                 if (nEndY > nRow1)
     836             :                 {
     837           0 :                     nBegin = nRow2+1;
     838           0 :                     nEnd = nEndY;
     839             :                 }
     840             :                 else
     841             :                 {
     842           0 :                     nBegin = nEndY;
     843           0 :                     nEnd = nRow1 -1;
     844             :                 }
     845             : 
     846           0 :                 long nNonFiltered = CountNonFilteredRows(nBegin, nEnd);
     847           0 :                 long nFiltered = nEnd + 1 - nBegin - nNonFiltered;
     848             : 
     849           0 :                 if (nIndex > 0)
     850           0 :                     nIndex = nIndex - nFiltered;
     851             :                 else
     852           0 :                     nIndex = nIndex + nFiltered;
     853             :             }
     854             : 
     855           0 :             long nPosIndex = nIndex;
     856           0 :             while ( nPosIndex < 0 )
     857           0 :                 nPosIndex += nSrcCount;
     858           0 :             sal_uLong nPos = nPosIndex % nSrcCount;
     859           0 :             SCCOL nSrcX = nCol1;
     860           0 :             SCROW nSrcY = nRow1;
     861           0 :             if ( eFillDir == FILL_TO_TOP || eFillDir == FILL_TO_BOTTOM )
     862           0 :                 nSrcY = sal::static_int_cast<SCROW>( nSrcY + static_cast<SCROW>(nPos) );
     863             :             else
     864           0 :                 nSrcX = sal::static_int_cast<SCCOL>( nSrcX + static_cast<SCCOL>(nPos) );
     865             : 
     866           0 :             ScRefCellValue aCell = GetCellValue(nSrcX, nSrcY);
     867           0 :             if (!aCell.isEmpty())
     868             :             {
     869             :                 sal_Int32 nDelta;
     870           0 :                 if (nIndex >= 0)
     871           0 :                     nDelta = nIndex / nSrcCount;
     872             :                 else
     873           0 :                     nDelta = ( nIndex - nSrcCount + 1 ) / nSrcCount;    // -1 -> -1
     874             : 
     875           0 :                 CellType eType = aCell.meType;
     876           0 :                 switch ( eType )
     877             :                 {
     878             :                     case CELLTYPE_STRING:
     879             :                     case CELLTYPE_EDIT:
     880             :                     {
     881           0 :                         aValue = aCell.getString(pDocument);
     882             : 
     883           0 :                         if ( !(nScFillModeMouseModifier & KEY_MOD1) )
     884             :                         {
     885             :                             sal_Int32 nVal;
     886           0 :                             sal_uInt16 nCellDigits = 0; // look at each source cell individually
     887           0 :                             short nFlag = lcl_DecompValueString( aValue, nVal, &nCellDigits );
     888           0 :                             if ( nFlag < 0 )
     889             :                             {
     890           0 :                                 if (aValue.equals( ScGlobal::GetOrdinalSuffix( nVal)))
     891           0 :                                     aValue = ScGlobal::GetOrdinalSuffix( nVal + nDelta);
     892             : 
     893           0 :                                 aValue = lcl_ValueString( nVal + nDelta, nCellDigits ) + aValue;
     894             :                             }
     895           0 :                             else if ( nFlag > 0 )
     896           0 :                                 aValue += lcl_ValueString( nVal + nDelta, nCellDigits );
     897             :                         }
     898             :                     }
     899           0 :                     break;
     900             :                     case CELLTYPE_VALUE:
     901             :                     {
     902             :                         //  overflow is possible...
     903           0 :                         double nVal = aCell.mfValue;
     904           0 :                         if ( !(nScFillModeMouseModifier & KEY_MOD1) )
     905           0 :                             nVal += (double) nDelta;
     906             : 
     907             :                         Color* pColor;
     908           0 :                         sal_uLong nNumFmt = GetNumberFormat( nSrcX, nSrcY );
     909           0 :                         pDocument->GetFormatTable()->GetOutputString( nVal, nNumFmt, aValue, &pColor );
     910             :                     }
     911           0 :                     break;
     912             :                     //  not for formulas
     913             :                     default:
     914             :                     {
     915             :                         // added to avoid warnings
     916             :                     }
     917             :                 }
     918           0 :             }
     919             :         }
     920           0 :         else if ( eFillCmd == FILL_LINEAR || eFillCmd == FILL_DATE )        // values
     921             :         {
     922             :             bool bValueOk;
     923             :             double nStart;
     924           0 :             sal_Int32 nVal = 0;
     925           0 :             short nHeadNoneTail = 0;
     926           0 :             ScRefCellValue aCell = GetCellValue(nCol1, nRow1);
     927           0 :             if (!aCell.isEmpty())
     928             :             {
     929           0 :                 CellType eType = aCell.meType;
     930           0 :                 switch ( eType )
     931             :                 {
     932             :                     case CELLTYPE_STRING:
     933             :                     case CELLTYPE_EDIT:
     934             :                     {
     935           0 :                         aValue = aCell.getString(pDocument);
     936           0 :                         nHeadNoneTail = lcl_DecompValueString( aValue, nVal );
     937           0 :                         if ( nHeadNoneTail )
     938           0 :                             nStart = (double)nVal;
     939             :                         else
     940           0 :                             nStart = 0.0;
     941             :                     }
     942           0 :                     break;
     943             :                     case CELLTYPE_VALUE:
     944           0 :                         nStart = aCell.mfValue;
     945           0 :                     break;
     946             :                     case CELLTYPE_FORMULA:
     947           0 :                         nStart = aCell.mpFormula->GetValue();
     948           0 :                     break;
     949             :                     default:
     950           0 :                         nStart = 0.0;
     951             :                 }
     952             :             }
     953             :             else
     954           0 :                 nStart = 0.0;
     955           0 :             if ( eFillCmd == FILL_LINEAR )
     956             :             {
     957           0 :                 double nAdd = nInc;
     958           0 :                 bValueOk = ( SubTotal::SafeMult( nAdd, (double) nIndex ) &&
     959           0 :                              SubTotal::SafePlus( nStart, nAdd ) );
     960             :             }
     961             :             else        // date
     962             :             {
     963           0 :                 bValueOk = true;
     964           0 :                 sal_uInt16 nDayOfMonth = 0;
     965           0 :                 if ( nIndex < 0 )
     966             :                 {
     967           0 :                     nIndex = -nIndex;
     968           0 :                     nInc = -nInc;
     969             :                 }
     970           0 :                 for (long i=0; i<nIndex; i++)
     971           0 :                     IncDate( nStart, nDayOfMonth, nInc, eDateCmd );
     972             :             }
     973             : 
     974           0 :             if (bValueOk)
     975             :             {
     976           0 :                 if ( nHeadNoneTail )
     977             :                 {
     978           0 :                     if ( nHeadNoneTail < 0 )
     979             :                     {
     980           0 :                         if (aValue.equals( ScGlobal::GetOrdinalSuffix( nVal)))
     981           0 :                             aValue = ScGlobal::GetOrdinalSuffix( (sal_Int32)nStart );
     982             : 
     983           0 :                         aValue = lcl_ValueString( (sal_Int32)nStart, nMinDigits ) + aValue;
     984             :                     }
     985             :                     else
     986           0 :                         aValue += lcl_ValueString( (sal_Int32)nStart, nMinDigits );
     987             :                 }
     988             :                 else
     989             :                 {
     990             :                     //! Zahlformat je nach Index holen?
     991             :                     Color* pColor;
     992           0 :                     sal_uLong nNumFmt = GetNumberFormat( nCol1, nRow1 );
     993           0 :                     pDocument->GetFormatTable()->GetOutputString( nStart, nNumFmt, aValue, &pColor );
     994             :                 }
     995           0 :             }
     996             :         }
     997             :         else
     998             :         {
     999             :             OSL_FAIL("GetAutoFillPreview: invalid mode");
    1000             :         }
    1001             :     }
    1002             : 
    1003           0 :     return aValue;
    1004             : }
    1005             : 
    1006           0 : void ScTable::IncDate(double& rVal, sal_uInt16& nDayOfMonth, double nStep, FillDateCmd eCmd)
    1007             : {
    1008           0 :     if (eCmd == FILL_DAY)
    1009             :     {
    1010           0 :         rVal += nStep;
    1011           0 :         return;
    1012             :     }
    1013             : 
    1014             :     // class Date limits
    1015           0 :     const sal_uInt16 nMinYear = 1583;
    1016           0 :     const sal_uInt16 nMaxYear = 9956;
    1017             : 
    1018           0 :     long nInc = (long) nStep;       // upper/lower limits ?
    1019           0 :     Date aNullDate = *pDocument->GetFormatTable()->GetNullDate();
    1020           0 :     Date aDate = aNullDate;
    1021           0 :     aDate += (long)rVal;
    1022           0 :     switch (eCmd)
    1023             :     {
    1024             :         case FILL_WEEKDAY:
    1025             :             {
    1026           0 :                 aDate += nInc;
    1027           0 :                 DayOfWeek eWeekDay = aDate.GetDayOfWeek();
    1028           0 :                 if (nInc >= 0)
    1029             :                 {
    1030           0 :                     if (eWeekDay == SATURDAY)
    1031           0 :                         aDate += 2;
    1032           0 :                     else if (eWeekDay == SUNDAY)
    1033           0 :                         aDate += 1;
    1034             :                 }
    1035             :                 else
    1036             :                 {
    1037           0 :                     if (eWeekDay == SATURDAY)
    1038           0 :                         aDate -= 1;
    1039           0 :                     else if (eWeekDay == SUNDAY)
    1040           0 :                         aDate -= 2;
    1041             :                 }
    1042             :             }
    1043           0 :             break;
    1044             :         case FILL_MONTH:
    1045             :             {
    1046           0 :                 if ( nDayOfMonth == 0 )
    1047           0 :                     nDayOfMonth = aDate.GetDay();       // init
    1048           0 :                 long nMonth = aDate.GetMonth();
    1049           0 :                 long nYear = aDate.GetYear();
    1050             : 
    1051           0 :                 nMonth += nInc;
    1052             : 
    1053           0 :                 if (nInc >= 0)
    1054             :                 {
    1055           0 :                     if (nMonth > 12)
    1056             :                     {
    1057           0 :                         long nYAdd = (nMonth-1) / 12;
    1058           0 :                         nMonth -= nYAdd * 12;
    1059           0 :                         nYear += nYAdd;
    1060             :                     }
    1061             :                 }
    1062             :                 else
    1063             :                 {
    1064           0 :                     if (nMonth < 1)
    1065             :                     {
    1066           0 :                         long nYAdd = 1 - nMonth / 12;       // positive
    1067           0 :                         nMonth += nYAdd * 12;
    1068           0 :                         nYear -= nYAdd;
    1069             :                     }
    1070             :                 }
    1071             : 
    1072           0 :                 if ( nYear < nMinYear )
    1073           0 :                     aDate = Date( 1,1, nMinYear );
    1074           0 :                 else if ( nYear > nMaxYear )
    1075           0 :                     aDate = Date( 31,12, nMaxYear );
    1076             :                 else
    1077             :                 {
    1078           0 :                     aDate.SetMonth((sal_uInt16) nMonth);
    1079           0 :                     aDate.SetYear((sal_uInt16) nYear);
    1080           0 :                     aDate.SetDay( std::min( Date::GetDaysInMonth( nMonth, nYear), nDayOfMonth ) );
    1081             :                 }
    1082             :             }
    1083           0 :             break;
    1084             :         case FILL_YEAR:
    1085             :             {
    1086           0 :                 long nYear = aDate.GetYear();
    1087           0 :                 nYear += nInc;
    1088           0 :                 if ( nYear < nMinYear )
    1089           0 :                     aDate = Date( 1,1, nMinYear );
    1090           0 :                 else if ( nYear > nMaxYear )
    1091           0 :                     aDate = Date( 31,12, nMaxYear );
    1092             :                 else
    1093           0 :                     aDate.SetYear((sal_uInt16) nYear);
    1094             :             }
    1095           0 :             break;
    1096             :         default:
    1097             :         {
    1098             :             // added to avoid warnings
    1099             :         }
    1100             :     }
    1101             : 
    1102           0 :     rVal = aDate - aNullDate;
    1103             : }
    1104             : 
    1105             : namespace {
    1106             : 
    1107          78 : bool HiddenRowColumn(ScTable* pTable, SCCOLROW nRowColumn, bool bVertical, SCCOLROW& rLastPos)
    1108             : {
    1109          78 :     bool bHidden = false;
    1110          78 :     if(bVertical)
    1111             :     {
    1112             :         SCROW nLast;
    1113          26 :         bHidden = pTable->RowHidden(nRowColumn, NULL, &nLast);
    1114          26 :         rLastPos = nLast;
    1115             :     }
    1116             :     else
    1117             :     {
    1118             :         SCCOL nLast;
    1119          52 :         bHidden = pTable->ColHidden(static_cast<SCCOL>(nRowColumn), NULL, &nLast);
    1120          52 :         rLastPos = nLast;
    1121             :     }
    1122          78 :     return bHidden;
    1123             : }
    1124             : 
    1125             : }
    1126             : 
    1127           2 : void ScTable::FillFormulaVertical(
    1128             :     const ScFormulaCell& rSrcCell,
    1129             :     SCCOLROW& rInner, SCCOL nCol, SCROW nRow1, SCROW nRow2,
    1130             :     ScProgress* pProgress, sal_uLong& rProgress )
    1131             : {
    1132           2 :     bool bHidden = false;
    1133           2 :     SCCOLROW nHiddenLast = -1;
    1134             : 
    1135           2 :     SCCOLROW nRowStart = -1, nRowEnd = -1;
    1136           2 :     std::vector<sc::RowSpan> aSpans;
    1137           2 :     PutInOrder(nRow1, nRow2);
    1138          22 :     for (rInner = nRow1; rInner <= nRow2; ++rInner)
    1139             :     {
    1140          20 :         if (rInner > nHiddenLast)
    1141           2 :             bHidden = HiddenRowColumn(this, rInner, true, nHiddenLast);
    1142             : 
    1143          20 :         if (bHidden)
    1144             :         {
    1145           0 :             if (nRowStart >= 0)
    1146             :             {
    1147           0 :                 nRowEnd = rInner - 1;
    1148           0 :                 aSpans.push_back(sc::RowSpan(nRowStart, nRowEnd));
    1149           0 :                 nRowStart = -1;
    1150             :             }
    1151           0 :             rInner = nHiddenLast;
    1152           0 :             continue;
    1153             :         }
    1154             : 
    1155          20 :         if (nRowStart < 0)
    1156           2 :             nRowStart = rInner;
    1157             :     }
    1158             : 
    1159           2 :     if (nRowStart >= 0)
    1160             :     {
    1161           2 :         nRowEnd = rInner - 1;
    1162           2 :         aSpans.push_back(sc::RowSpan(nRowStart, nRowEnd));
    1163             :     }
    1164             : 
    1165           2 :     aCol[nCol].DeleteRanges(aSpans, IDF_CONTENTS, false);
    1166           2 :     aCol[nCol].CloneFormulaCell(rSrcCell, aSpans);
    1167             : 
    1168           2 :     rProgress += nRow2 - nRow1 + 1;
    1169           2 :     if (pProgress)
    1170           0 :         pProgress->SetStateOnPercent(rProgress);
    1171           2 : }
    1172             : 
    1173          76 : void ScTable::FillSeriesSimple(
    1174             :     ScCellValue& rSrcCell, SCCOLROW& rInner, SCCOLROW nIMin, SCCOLROW nIMax,
    1175             :     SCCOLROW& rCol, SCCOLROW& rRow, bool bVertical, ScProgress* pProgress, sal_uLong& rProgress )
    1176             : {
    1177          76 :     bool bHidden = false;
    1178          76 :     SCCOLROW nHiddenLast = -1;
    1179             : 
    1180          76 :     if (bVertical)
    1181             :     {
    1182          24 :         switch (rSrcCell.meType)
    1183             :         {
    1184             :             case CELLTYPE_FORMULA:
    1185             :             {
    1186             :                 FillFormulaVertical(
    1187           0 :                     *rSrcCell.mpFormula, rInner, rCol, nIMin, nIMax, pProgress, rProgress);
    1188             :             }
    1189           0 :             break;
    1190             :             default:
    1191             :             {
    1192         156 :                 for (rInner = nIMin; rInner <= nIMax; ++rInner)
    1193             :                 {
    1194         132 :                     if (rInner > nHiddenLast)
    1195          24 :                         bHidden = HiddenRowColumn(this, rInner, bVertical, nHiddenLast);
    1196             : 
    1197         132 :                     if (bHidden)
    1198             :                     {
    1199           0 :                         rInner = nHiddenLast;
    1200           0 :                         continue;
    1201             :                     }
    1202             : 
    1203         132 :                     ScAddress aDestPos(rCol, rRow, nTab);
    1204         132 :                     rSrcCell.commit(aCol[rCol], aDestPos.Row());
    1205             :                 }
    1206          24 :                 rProgress += nIMax - nIMin + 1;
    1207          24 :                 if (pProgress)
    1208          24 :                     pProgress->SetStateOnPercent(rProgress);
    1209             :             }
    1210             :         }
    1211             :     }
    1212             :     else
    1213             :     {
    1214          52 :         switch (rSrcCell.meType)
    1215             :         {
    1216             :             case CELLTYPE_FORMULA:
    1217             :             {
    1218           0 :                 for (rInner = nIMin; rInner <= nIMax; ++rInner)
    1219             :                 {
    1220           0 :                     if (rInner > nHiddenLast)
    1221           0 :                         bHidden = HiddenRowColumn(this, rInner, bVertical, nHiddenLast);
    1222             : 
    1223           0 :                     if (bHidden)
    1224           0 :                         continue;
    1225             : 
    1226           0 :                     FillFormula(rSrcCell.mpFormula, rCol, rRow, (rInner == nIMax));
    1227           0 :                     if (pProgress)
    1228           0 :                         pProgress->SetStateOnPercent(++rProgress);
    1229             :                 }
    1230             :             }
    1231           0 :             break;
    1232             :             default:
    1233             :             {
    1234         212 :                 for (rInner = nIMin; rInner <= nIMax; ++rInner)
    1235             :                 {
    1236         160 :                     if (rInner > nHiddenLast)
    1237          52 :                         bHidden = HiddenRowColumn(this, rInner, bVertical, nHiddenLast);
    1238             : 
    1239         160 :                     if (bHidden)
    1240           0 :                         continue;
    1241             : 
    1242         160 :                     ScAddress aDestPos(rCol, rRow, nTab);
    1243         160 :                     rSrcCell.commit(aCol[rCol], aDestPos.Row());
    1244             :                 }
    1245          52 :                 rProgress += nIMax - nIMin + 1;
    1246          52 :                 if (pProgress)
    1247          52 :                     pProgress->SetStateOnPercent(rProgress);
    1248             :             }
    1249             :         }
    1250             :     }
    1251          76 : }
    1252             : 
    1253          26 : void ScTable::FillAutoSimple(
    1254             :     SCCOLROW nISrcStart, SCCOLROW nISrcEnd, SCCOLROW nIStart, SCCOLROW nIEnd,
    1255             :     SCCOLROW& rInner, SCCOLROW& rCol, SCCOLROW& rRow, sal_uLong nActFormCnt,
    1256             :     sal_uLong nMaxFormCnt, bool bHasFiltered, bool bVertical, bool bPositive,
    1257             :     ScProgress* pProgress, sal_uLong& rProgress )
    1258             : {
    1259          26 :     SCCOLROW nSource = nISrcStart;
    1260             :     double nDelta;
    1261          26 :     if ( (nScFillModeMouseModifier & KEY_MOD1) )
    1262           0 :         nDelta = 0.0;
    1263          26 :     else if ( bPositive )
    1264          24 :         nDelta = 1.0;
    1265             :     else
    1266           2 :         nDelta = -1.0;
    1267          26 :     sal_uLong nFormulaCounter = nActFormCnt;
    1268          26 :     bool bGetCell = true;
    1269          26 :     sal_uInt16 nCellDigits = 0;
    1270          26 :     short nHeadNoneTail = 0;
    1271          26 :     sal_Int32 nStringValue = 0;
    1272          26 :     OUString aValue;
    1273          50 :     ScCellValue aSrcCell;
    1274          26 :     bool bIsOrdinalSuffix = false;
    1275             : 
    1276          26 :     bool bColHidden = false, bRowHidden = false;
    1277          26 :     SCCOL nColHiddenLast = -1;
    1278          26 :     SCROW nRowHiddenLast = -1;
    1279             : 
    1280          26 :     rInner = nIStart;
    1281             :     while (true)        // #i53728# with "for (;;)" old solaris/x86 compiler mis-optimizes
    1282             :     {
    1283          88 :         if (rCol > nColHiddenLast)
    1284          26 :             bColHidden = ColHidden(rCol, NULL, &nColHiddenLast);
    1285          88 :         if (rRow > nRowHiddenLast)
    1286          26 :             bRowHidden = RowHidden(rRow, NULL, &nRowHiddenLast);
    1287             : 
    1288          88 :         if (!bColHidden && !bRowHidden)
    1289             :         {
    1290          88 :             if ( bGetCell )
    1291             :             {
    1292          28 :                 if (bVertical)      // rInner&:=nRow, rOuter&:=nCol
    1293             :                 {
    1294          18 :                     aSrcCell = aCol[rCol].GetCellValue(nSource);
    1295          18 :                     if (aSrcCell.meType == CELLTYPE_FORMULA)
    1296             :                     {
    1297           2 :                         FillFormulaVertical(*aSrcCell.mpFormula, rInner, rCol, nIStart, nIEnd, pProgress, rProgress);
    1298          28 :                         return;
    1299             :                     }
    1300             :                 }
    1301             :                 else                // rInner&:=nCol, rOuter&:=nRow
    1302          10 :                     aSrcCell = aCol[nSource].GetCellValue(rRow);
    1303             : 
    1304          26 :                 bGetCell = false;
    1305          26 :                 if (!aSrcCell.isEmpty())
    1306             :                 {
    1307          26 :                     switch (aSrcCell.meType)
    1308             :                     {
    1309             :                         case CELLTYPE_STRING:
    1310             :                         case CELLTYPE_EDIT:
    1311           4 :                             if (aSrcCell.meType == CELLTYPE_STRING)
    1312           4 :                                 aValue = aSrcCell.mpString->getString();
    1313             :                             else
    1314           0 :                                 aValue = ScEditUtil::GetString(*aSrcCell.mpEditText, pDocument);
    1315           4 :                             if ( !(nScFillModeMouseModifier & KEY_MOD1) && !bHasFiltered )
    1316             :                             {
    1317           4 :                                 nCellDigits = 0;    // look at each source cell individually
    1318             :                                 nHeadNoneTail = lcl_DecompValueString(
    1319           4 :                                         aValue, nStringValue, &nCellDigits );
    1320             : 
    1321             :                                 bIsOrdinalSuffix = aValue.equals(
    1322           4 :                                         ScGlobal::GetOrdinalSuffix( nStringValue));
    1323             :                             }
    1324           4 :                             break;
    1325             :                         default:
    1326             :                             {
    1327             :                                 // added to avoid warnings
    1328             :                             }
    1329             :                     }
    1330             :                 }
    1331             :             }
    1332             : 
    1333          86 :             switch (aSrcCell.meType)
    1334             :             {
    1335             :                 case CELLTYPE_VALUE:
    1336          76 :                     aCol[rCol].SetValue(rRow, aSrcCell.mfValue + nDelta);
    1337          76 :                     break;
    1338             :                 case CELLTYPE_STRING:
    1339             :                 case CELLTYPE_EDIT:
    1340           4 :                     if ( nHeadNoneTail )
    1341             :                     {
    1342             :                         // #i48009# with the "nStringValue+(long)nDelta" expression within the
    1343             :                         // lcl_ValueString calls, gcc 3.4.1 makes wrong optimizations (ok in 3.4.3),
    1344             :                         // so nNextValue is now calculated ahead.
    1345           0 :                         sal_Int32 nNextValue = nStringValue+(sal_Int32)nDelta;
    1346             : 
    1347           0 :                         OUString aStr;
    1348           0 :                         if ( nHeadNoneTail < 0 )
    1349             :                         {
    1350             :                             setSuffixCell(
    1351           0 :                                 aCol[rCol], rRow,
    1352             :                                 nNextValue, nCellDigits, aValue,
    1353           0 :                                 aSrcCell.meType, bIsOrdinalSuffix);
    1354             :                         }
    1355             :                         else
    1356             :                         {
    1357           0 :                             aStr = aValue + lcl_ValueString( nNextValue, nCellDigits );
    1358           0 :                             aCol[rCol].SetRawString(rRow, aStr);
    1359           0 :                         }
    1360             :                     }
    1361             :                     else
    1362           4 :                         aSrcCell.commit(aCol[rCol], rRow);
    1363             : 
    1364           4 :                     break;
    1365             :                 case CELLTYPE_FORMULA :
    1366             :                     FillFormula(
    1367           6 :                         aSrcCell.mpFormula, rCol, rRow, (rInner == nIEnd));
    1368           6 :                     if (nFormulaCounter - nActFormCnt > nMaxFormCnt)
    1369           0 :                         nMaxFormCnt = nFormulaCounter - nActFormCnt;
    1370           6 :                     break;
    1371             :                 default:
    1372             :                     {
    1373             :                         // added to avoid warnings
    1374             :                     }
    1375             :             }
    1376             : 
    1377          86 :             if (nSource == nISrcEnd)
    1378             :             {
    1379          84 :                 if ( nSource != nISrcStart )
    1380             :                 {   // More than one source cell
    1381           2 :                     nSource = nISrcStart;
    1382           2 :                     bGetCell = true;
    1383             :                 }
    1384          84 :                 if ( !(nScFillModeMouseModifier & KEY_MOD1) )
    1385             :                 {
    1386          84 :                     if ( bPositive )
    1387          84 :                         nDelta += 1.0;
    1388             :                     else
    1389           0 :                         nDelta -= 1.0;
    1390             :                 }
    1391          84 :                 nFormulaCounter = nActFormCnt;
    1392             :             }
    1393           2 :             else if (bPositive)
    1394             :             {
    1395           2 :                 ++nSource;
    1396           2 :                 bGetCell = true;
    1397             :             }
    1398             :             else
    1399             :             {
    1400           0 :                 --nSource;
    1401           0 :                 bGetCell = true;
    1402             :             }
    1403             :         }
    1404             : 
    1405          86 :         if (rInner == nIEnd) break;
    1406          62 :         if (bPositive) ++rInner; else --rInner;
    1407             : 
    1408             :         //  Progress in inner loop only for expensive cells,
    1409             :         //  and even then not individually for each one
    1410             : 
    1411          62 :         ++rProgress;
    1412          62 :         if ( pProgress && (aSrcCell.meType == CELLTYPE_FORMULA || aSrcCell.meType == CELLTYPE_EDIT) )
    1413           4 :             pProgress->SetStateOnPercent( rProgress );
    1414             : 
    1415             :     }
    1416          24 :     if (pProgress)
    1417          46 :         pProgress->SetStateOnPercent( rProgress );
    1418             : }
    1419             : 
    1420          32 : void ScTable::FillSeries( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
    1421             :                     sal_uLong nFillCount, FillDir eFillDir, FillCmd eFillCmd, FillDateCmd eFillDateCmd,
    1422             :                     double nStepValue, double nMaxValue, sal_uInt16 nArgMinDigits,
    1423             :                     bool bAttribs, ScProgress* pProgress )
    1424             : {
    1425             : 
    1426             :     //  Detect direction
    1427             : 
    1428          32 :     bool bVertical = (eFillDir == FILL_TO_BOTTOM || eFillDir == FILL_TO_TOP);
    1429          32 :     bool bPositive = (eFillDir == FILL_TO_BOTTOM || eFillDir == FILL_TO_RIGHT);
    1430             : 
    1431          32 :     SCCOLROW nCol = 0;
    1432          32 :     SCCOLROW nRow = 0;
    1433          32 :     SCCOLROW& rInner = bVertical ? nRow : nCol;        // loop variables
    1434          32 :     SCCOLROW& rOuter = bVertical ? nCol : nRow;
    1435             :     SCCOLROW nOStart;
    1436             :     SCCOLROW nOEnd;
    1437             :     SCCOLROW nIStart;
    1438             :     SCCOLROW nIEnd;
    1439             :     SCCOLROW nISource;
    1440          32 :     ScRange aFillRange;
    1441             : 
    1442          32 :     if (bVertical)
    1443             :     {
    1444          16 :         nFillCount += (nRow2 - nRow1);
    1445          16 :         if (nFillCount == 0)
    1446           0 :             return;
    1447          16 :         nOStart = nCol1;
    1448          16 :         nOEnd = nCol2;
    1449          16 :         if (bPositive)
    1450             :         {
    1451          12 :             nISource = nRow1;
    1452          12 :             nIStart = nRow1 + 1;
    1453          12 :             nIEnd = nRow1 + nFillCount;
    1454          12 :             aFillRange = ScRange(nCol1, nRow1 + 1, nTab, nCol2, nRow1 + nFillCount, nTab);
    1455             :         }
    1456             :         else
    1457             :         {
    1458           4 :             nISource = nRow2;
    1459           4 :             nIStart = nRow2 - 1;
    1460           4 :             nIEnd = nRow2 - nFillCount;
    1461           4 :             aFillRange = ScRange(nCol1, nRow2 -1, nTab, nCol2, nRow2 - nFillCount, nTab);
    1462             :         }
    1463             :     }
    1464             :     else
    1465             :     {
    1466          16 :         nFillCount += (nCol2 - nCol1);
    1467          16 :         if (nFillCount == 0)
    1468           0 :             return;
    1469          16 :         nOStart = nRow1;
    1470          16 :         nOEnd = nRow2;
    1471          16 :         if (bPositive)
    1472             :         {
    1473          12 :             nISource = nCol1;
    1474          12 :             nIStart = nCol1 + 1;
    1475          12 :             nIEnd = nCol1 + nFillCount;
    1476          12 :             aFillRange = ScRange(nCol1 + 1, nRow1, nTab, nCol1 + nFillCount, nRow2, nTab);
    1477             :         }
    1478             :         else
    1479             :         {
    1480           4 :             nISource = nCol2;
    1481           4 :             nIStart = nCol2 - 1;
    1482           4 :             nIEnd = nCol2 - nFillCount;
    1483           4 :             aFillRange = ScRange(nCol2 - 1, nRow1, nTab, nCol2 - nFillCount, nRow2, nTab);
    1484             :         }
    1485             :     }
    1486             : 
    1487          32 :     SCCOLROW nIMin = nIStart;
    1488          32 :     SCCOLROW nIMax = nIEnd;
    1489          32 :     PutInOrder(nIMin,nIMax);
    1490          32 :     InsertDeleteFlags nDel = bAttribs ? IDF_AUTOFILL : (IDF_AUTOFILL & IDF_CONTENTS);
    1491             : 
    1492          32 :     bool bIsFiltered = IsDataFiltered(aFillRange);
    1493          32 :     if (!bIsFiltered)
    1494             :     {
    1495          28 :         if (bVertical)
    1496          14 :             DeleteArea(nCol1, static_cast<SCROW>(nIMin), nCol2, static_cast<SCROW>(nIMax), nDel);
    1497             :         else
    1498          14 :             DeleteArea(static_cast<SCCOL>(nIMin), nRow1, static_cast<SCCOL>(nIMax), nRow2, nDel);
    1499             :     }
    1500             : 
    1501          32 :     sal_uLong nProgress = 0;
    1502          32 :     if (pProgress)
    1503          26 :         nProgress = pProgress->GetState();
    1504             : 
    1505             :     //  execute
    1506             : 
    1507          32 :     sal_uLong nActFormCnt = 0;
    1508         176 :     for (rOuter = nOStart; rOuter <= nOEnd; rOuter++)
    1509             :     {
    1510         144 :         rInner = nISource;
    1511             : 
    1512             :         // Source cell value. We need to clone the value since it may be inserted repeatedly.
    1513         144 :         ScCellValue aSrcCell = aCol[nCol].GetCellValue(static_cast<SCROW>(nRow));
    1514             : 
    1515         144 :         if (bAttribs)
    1516             :         {
    1517         144 :             const ScPatternAttr* pSrcPattern = aCol[nCol].GetPattern(static_cast<SCROW>(nRow));
    1518             : 
    1519         144 :             const ScCondFormatItem& rCondFormatItem = static_cast<const ScCondFormatItem&>(pSrcPattern->GetItem(ATTR_CONDITIONAL));
    1520         144 :             const std::vector<sal_uInt32>& rCondFormatIndex = rCondFormatItem.GetCondFormatData();
    1521             : 
    1522         144 :             if (bVertical)
    1523             :             {
    1524             :                 // if not filtered use the faster method
    1525             :                 // hidden cols/rows should be skiped
    1526          52 :                 if(!bIsFiltered)
    1527             :                 {
    1528          50 :                     aCol[nCol].SetPatternArea( static_cast<SCROW>(nIMin),
    1529         100 :                             static_cast<SCROW>(nIMax), *pSrcPattern, true );
    1530             : 
    1531          50 :                     for(std::vector<sal_uInt32>::const_iterator itr = rCondFormatIndex.begin(), itrEnd = rCondFormatIndex.end();
    1532             :                             itr != itrEnd; ++itr)
    1533             :                     {
    1534           0 :                         ScConditionalFormat* pCondFormat = mpCondFormatList->GetFormat(*itr);
    1535           0 :                         ScRangeList aRange = pCondFormat->GetRange();
    1536           0 :                         aRange.Join(ScRange(nCol, nIMin, nTab, nCol, nIMax, nTab));
    1537           0 :                         pCondFormat->AddRange(aRange);
    1538           0 :                     }
    1539             :                 }
    1540             :                 else
    1541             :                 {
    1542          18 :                     for(SCROW nAtRow = static_cast<SCROW>(nIMin); nAtRow <= static_cast<SCROW>(nIMax); ++nAtRow)
    1543             :                     {
    1544          16 :                         if(!RowHidden(nAtRow))
    1545             :                         {
    1546          12 :                             aCol[nCol].SetPatternArea( static_cast<SCROW>(nAtRow),
    1547          12 :                                     static_cast<SCROW>(nAtRow), *pSrcPattern, true);
    1548          12 :                             for(std::vector<sal_uInt32>::const_iterator itr = rCondFormatIndex.begin(), itrEnd = rCondFormatIndex.end();
    1549             :                                     itr != itrEnd; ++itr)
    1550             :                             {
    1551           0 :                                 ScConditionalFormat* pCondFormat = mpCondFormatList->GetFormat(*itr);
    1552           0 :                                 ScRangeList aRange = pCondFormat->GetRange();
    1553           0 :                                 aRange.Join(ScRange(nCol, nAtRow, nTab, nCol, nAtRow, nTab));
    1554           0 :                                 pCondFormat->AddRange(aRange);
    1555           0 :                             }
    1556             :                         }
    1557             :                     }
    1558             : 
    1559             :                 }
    1560             :             }
    1561             :             else
    1562         406 :                 for (SCCOL nAtCol = static_cast<SCCOL>(nIMin); nAtCol <= sal::static_int_cast<SCCOL>(nIMax); nAtCol++)
    1563         314 :                     if(!ColHidden(nAtCol))
    1564             :                     {
    1565         314 :                         aCol[nAtCol].SetPattern(static_cast<SCROW>(nRow), *pSrcPattern, true);
    1566         314 :                         for(std::vector<sal_uInt32>::const_iterator itr = rCondFormatIndex.begin(), itrEnd = rCondFormatIndex.end();
    1567             :                                 itr != itrEnd; ++itr)
    1568             :                         {
    1569           0 :                             ScConditionalFormat* pCondFormat = mpCondFormatList->GetFormat(*itr);
    1570           0 :                             ScRangeList aRange = pCondFormat->GetRange();
    1571           0 :                             aRange.Join(ScRange(nAtCol, static_cast<SCROW>(nRow), nTab, nAtCol, static_cast<SCROW>(nRow), nTab));
    1572           0 :                             pCondFormat->AddRange(aRange);
    1573           0 :                         }
    1574             :                     }
    1575             :         }
    1576             : 
    1577         144 :         if (!aSrcCell.isEmpty())
    1578             :         {
    1579         120 :             CellType eCellType = aSrcCell.meType;
    1580             : 
    1581         120 :             if (eFillCmd == FILL_SIMPLE)                // copy
    1582             :             {
    1583          76 :                 FillSeriesSimple(aSrcCell, rInner, nIMin, nIMax, nCol, nRow, bVertical, pProgress, nProgress);
    1584             :             }
    1585          44 :             else if (eCellType == CELLTYPE_VALUE || eCellType == CELLTYPE_FORMULA)
    1586             :             {
    1587             :                 double nStartVal;
    1588          44 :                 if (eCellType == CELLTYPE_VALUE)
    1589          42 :                     nStartVal = aSrcCell.mfValue;
    1590             :                 else
    1591           2 :                     nStartVal = aSrcCell.mpFormula->GetValue();
    1592          44 :                 double nVal = nStartVal;
    1593          44 :                 long nIndex = 0;
    1594             : 
    1595          44 :                 bool bError = false;
    1596          44 :                 bool bOverflow = false;
    1597             : 
    1598          44 :                 sal_uInt16 nDayOfMonth = 0;
    1599          44 :                 rInner = nIStart;
    1600             :                 while (true)        // #i53728# with "for (;;)" old solaris/x86 compiler mis-optimizes
    1601             :                 {
    1602         198 :                     if(!ColHidden(nCol) && !RowHidden(nRow))
    1603             :                     {
    1604         174 :                         if (!bError && !bOverflow)
    1605             :                         {
    1606         144 :                             switch (eFillCmd)
    1607             :                             {
    1608             :                                 case FILL_LINEAR:
    1609             :                                     {
    1610             :                                         //  use multiplication instead of repeated addition
    1611             :                                         //  to avoid accumulating rounding errors
    1612         116 :                                         nVal = nStartVal;
    1613         116 :                                         double nAdd = nStepValue;
    1614         232 :                                         if ( !SubTotal::SafeMult( nAdd, (double) ++nIndex ) ||
    1615         116 :                                                 !SubTotal::SafePlus( nVal, nAdd ) )
    1616           0 :                                             bError = true;
    1617             :                                     }
    1618         116 :                                     break;
    1619             :                                 case FILL_GROWTH:
    1620          28 :                                     if (!SubTotal::SafeMult(nVal, nStepValue))
    1621           0 :                                         bError = true;
    1622          28 :                                     break;
    1623             :                                 case FILL_DATE:
    1624           0 :                                     if (fabs(nVal) > _D_MAX_LONG_)
    1625           0 :                                         bError = true;
    1626             :                                     else
    1627           0 :                                         IncDate(nVal, nDayOfMonth, nStepValue, eFillDateCmd);
    1628           0 :                                     break;
    1629             :                                 default:
    1630             :                                     {
    1631             :                                         // added to avoid warnings
    1632             :                                     }
    1633             :                             }
    1634             : 
    1635         144 :                             if (nStepValue >= 0)
    1636             :                             {
    1637         144 :                                 if (nVal > nMaxValue)           // target value reached ?
    1638             :                                 {
    1639          18 :                                     nVal = nMaxValue;
    1640          18 :                                     bOverflow = true;
    1641             :                                 }
    1642             :                             }
    1643             :                             else
    1644             :                             {
    1645           0 :                                 if (nVal < nMaxValue)
    1646             :                                 {
    1647           0 :                                     nVal = nMaxValue;
    1648           0 :                                     bOverflow = true;
    1649             :                                 }
    1650             :                             }
    1651             :                         }
    1652             : 
    1653         174 :                         if (bError)
    1654           0 :                             aCol[nCol].SetError(static_cast<SCROW>(nRow), errNoValue);
    1655         174 :                         else if (bOverflow)
    1656          48 :                             aCol[nCol].SetError(static_cast<SCROW>(nRow), errIllegalFPOperation);
    1657             :                         else
    1658         126 :                             aCol[nCol].SetValue(static_cast<SCROW>(nRow), nVal);
    1659             :                     }
    1660             : 
    1661         198 :                     if (rInner == nIEnd)
    1662          44 :                         break;
    1663         154 :                     if (bPositive)
    1664             :                     {
    1665         154 :                         ++rInner;
    1666             :                     }
    1667             :                     else
    1668             :                     {
    1669           0 :                         --rInner;
    1670             :                     }
    1671             :                 }
    1672          44 :                 nProgress += nIMax - nIMin + 1;
    1673          44 :                 if(pProgress)
    1674         176 :                     pProgress->SetStateOnPercent( nProgress );
    1675             :             }
    1676           0 :             else if (eCellType == CELLTYPE_STRING || eCellType == CELLTYPE_EDIT)
    1677             :             {
    1678           0 :                 if ( nStepValue >= 0 )
    1679             :                 {
    1680           0 :                     if ( nMaxValue >= (double)LONG_MAX )
    1681           0 :                         nMaxValue = (double)LONG_MAX - 1;
    1682             :                 }
    1683             :                 else
    1684             :                 {
    1685           0 :                     if ( nMaxValue <= (double)LONG_MIN )
    1686           0 :                         nMaxValue = (double)LONG_MIN + 1;
    1687             :                 }
    1688           0 :                 OUString aValue;
    1689           0 :                 if (eCellType == CELLTYPE_STRING)
    1690           0 :                     aValue = aSrcCell.mpString->getString();
    1691             :                 else
    1692           0 :                     aValue = ScEditUtil::GetString(*aSrcCell.mpEditText, pDocument);
    1693             :                 sal_Int32 nStringValue;
    1694           0 :                 sal_uInt16 nMinDigits = nArgMinDigits;
    1695           0 :                 short nHeadNoneTail = lcl_DecompValueString( aValue, nStringValue, &nMinDigits );
    1696           0 :                 if ( nHeadNoneTail )
    1697             :                 {
    1698           0 :                     double nStartVal = (double)nStringValue;
    1699           0 :                     double nVal = nStartVal;
    1700           0 :                     long nIndex = 0;
    1701           0 :                     bool bError = false;
    1702           0 :                     bool bOverflow = false;
    1703             : 
    1704             :                     bool bIsOrdinalSuffix = aValue.equals( ScGlobal::GetOrdinalSuffix(
    1705           0 :                                 (sal_Int32)nStartVal));
    1706             : 
    1707           0 :                     rInner = nIStart;
    1708             :                     while (true)        // #i53728# with "for (;;)" old solaris/x86 compiler mis-optimizes
    1709             :                     {
    1710           0 :                         if(!ColHidden(nCol) && !RowHidden(nRow))
    1711             :                         {
    1712           0 :                             if (!bError && !bOverflow)
    1713             :                             {
    1714           0 :                                 switch (eFillCmd)
    1715             :                                 {
    1716             :                                     case FILL_LINEAR:
    1717             :                                         {
    1718             :                                             //  use multiplication instead of repeated addition
    1719             :                                             //  to avoid accumulating rounding errors
    1720           0 :                                             nVal = nStartVal;
    1721           0 :                                             double nAdd = nStepValue;
    1722           0 :                                             if ( !SubTotal::SafeMult( nAdd, (double) ++nIndex ) ||
    1723           0 :                                                     !SubTotal::SafePlus( nVal, nAdd ) )
    1724           0 :                                                 bError = true;
    1725             :                                         }
    1726           0 :                                         break;
    1727             :                                     case FILL_GROWTH:
    1728           0 :                                         if (!SubTotal::SafeMult(nVal, nStepValue))
    1729           0 :                                             bError = true;
    1730           0 :                                         break;
    1731             :                                     default:
    1732             :                                         {
    1733             :                                             // added to avoid warnings
    1734             :                                         }
    1735             :                                 }
    1736             : 
    1737           0 :                                 if (nStepValue >= 0)
    1738             :                                 {
    1739           0 :                                     if (nVal > nMaxValue)           // target value reached ?
    1740             :                                     {
    1741           0 :                                         nVal = nMaxValue;
    1742           0 :                                         bOverflow = true;
    1743             :                                     }
    1744             :                                 }
    1745             :                                 else
    1746             :                                 {
    1747           0 :                                     if (nVal < nMaxValue)
    1748             :                                     {
    1749           0 :                                         nVal = nMaxValue;
    1750           0 :                                         bOverflow = true;
    1751             :                                     }
    1752             :                                 }
    1753             :                             }
    1754             : 
    1755           0 :                             if (bError)
    1756           0 :                                 aCol[nCol].SetError(static_cast<SCROW>(nRow), errNoValue);
    1757           0 :                             else if (bOverflow)
    1758           0 :                                 aCol[nCol].SetError(static_cast<SCROW>(nRow), errIllegalFPOperation);
    1759             :                             else
    1760             :                             {
    1761           0 :                                 nStringValue = (sal_Int32)nVal;
    1762           0 :                                 OUString aStr;
    1763           0 :                                 if ( nHeadNoneTail < 0 )
    1764             :                                 {
    1765             :                                     setSuffixCell(
    1766           0 :                                         aCol[nCol], static_cast<SCROW>(nRow),
    1767             :                                         nStringValue, nMinDigits, aValue,
    1768           0 :                                         eCellType, bIsOrdinalSuffix);
    1769             :                                 }
    1770             :                                 else
    1771             :                                 {
    1772           0 :                                     aStr = aValue;
    1773           0 :                                     aStr += lcl_ValueString( nStringValue, nMinDigits );
    1774           0 :                                     aCol[nCol].SetRawString(static_cast<SCROW>(nRow), aStr);
    1775           0 :                                 }
    1776             :                             }
    1777             :                         }
    1778             : 
    1779           0 :                         if (rInner == nIEnd) break;
    1780           0 :                         if (bPositive) ++rInner; else --rInner;
    1781           0 :                     }
    1782             :                 }
    1783           0 :                 if(pProgress)
    1784             :                 {
    1785           0 :                     nProgress += nIMax - nIMin + 1;
    1786           0 :                     pProgress->SetStateOnPercent( nProgress );
    1787           0 :                 }
    1788             :             }
    1789             :         }
    1790          24 :         else if(pProgress)
    1791             :         {
    1792          24 :             nProgress += nIMax - nIMin + 1;
    1793          24 :             pProgress->SetStateOnPercent( nProgress );
    1794             :         }
    1795         144 :         ++nActFormCnt;
    1796         144 :     }
    1797             : }
    1798             : 
    1799          46 : void ScTable::Fill( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
    1800             :                     sal_uLong nFillCount, FillDir eFillDir, FillCmd eFillCmd, FillDateCmd eFillDateCmd,
    1801             :                     double nStepValue, double nMaxValue, ScProgress* pProgress)
    1802             : {
    1803          46 :     if (eFillCmd == FILL_AUTO)
    1804          14 :         FillAuto(nCol1, nRow1, nCol2, nRow2, nFillCount, eFillDir, pProgress);
    1805             :     else
    1806             :         FillSeries(nCol1, nRow1, nCol2, nRow2, nFillCount, eFillDir,
    1807          32 :                     eFillCmd, eFillDateCmd, nStepValue, nMaxValue, 0, true, pProgress);
    1808          46 : }
    1809             : 
    1810           0 : void ScTable::AutoFormatArea(SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
    1811             :                                 const ScPatternAttr& rAttr, sal_uInt16 nFormatNo)
    1812             : {
    1813           0 :     ScAutoFormat& rFormat = *ScGlobal::GetOrCreateAutoFormat();
    1814           0 :     ScAutoFormatData* pData = rFormat.findByIndex(nFormatNo);
    1815           0 :     if (pData)
    1816             :     {
    1817           0 :         ApplyPatternArea(nStartCol, nStartRow, nEndCol, nEndRow, rAttr);
    1818             :     }
    1819           0 : }
    1820             : 
    1821           0 : void ScTable::AutoFormat( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
    1822             :                             sal_uInt16 nFormatNo )
    1823             : {
    1824           0 :     if (ValidColRow(nStartCol, nStartRow) && ValidColRow(nEndCol, nEndRow))
    1825             :     {
    1826           0 :         ScAutoFormat& rFormat = *ScGlobal::GetOrCreateAutoFormat();
    1827           0 :         ScAutoFormatData* pData = rFormat.findByIndex(nFormatNo);
    1828           0 :         if (pData)
    1829             :         {
    1830             :             ScPatternAttr* pPatternAttrs[16];
    1831           0 :             for (sal_uInt8 i = 0; i < 16; ++i)
    1832             :             {
    1833           0 :                 pPatternAttrs[i] = new ScPatternAttr(pDocument->GetPool());
    1834           0 :                 pData->FillToItemSet(i, pPatternAttrs[i]->GetItemSet(), *pDocument);
    1835             :             }
    1836             : 
    1837           0 :             SCCOL nCol = nStartCol;
    1838           0 :             SCROW nRow = nStartRow;
    1839           0 :             sal_uInt16 nIndex = 0;
    1840             :             // Left top corner
    1841           0 :             AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1842             :             // Left column
    1843           0 :             if (pData->IsEqualData(4, 8))
    1844           0 :                 AutoFormatArea(nStartCol, nStartRow + 1, nStartCol, nEndRow - 1, *pPatternAttrs[4], nFormatNo);
    1845             :             else
    1846             :             {
    1847           0 :                 nIndex = 4;
    1848           0 :                 for (nRow = nStartRow + 1; nRow < nEndRow; nRow++)
    1849             :                 {
    1850           0 :                     AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1851           0 :                     if (nIndex == 4)
    1852           0 :                         nIndex = 8;
    1853             :                     else
    1854           0 :                         nIndex = 4;
    1855             :                 }
    1856             :             }
    1857             :             // Left bottom corner
    1858           0 :             nRow = nEndRow;
    1859           0 :             nIndex = 12;
    1860           0 :             AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1861             :             // Right top corner
    1862           0 :             nCol = nEndCol;
    1863           0 :             nRow = nStartRow;
    1864           0 :             nIndex = 3;
    1865           0 :             AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1866             :             // Right column
    1867           0 :             if (pData->IsEqualData(7, 11))
    1868           0 :                 AutoFormatArea(nEndCol, nStartRow + 1, nEndCol, nEndRow - 1, *pPatternAttrs[7], nFormatNo);
    1869             :             else
    1870             :             {
    1871           0 :                 nIndex = 7;
    1872           0 :                 for (nRow = nStartRow + 1; nRow < nEndRow; nRow++)
    1873             :                 {
    1874           0 :                     AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1875           0 :                     if (nIndex == 7)
    1876           0 :                         nIndex = 11;
    1877             :                     else
    1878           0 :                         nIndex = 7;
    1879             :                 }
    1880             :             }
    1881             :             // Right bottom corner
    1882           0 :             nRow = nEndRow;
    1883           0 :             nIndex = 15;
    1884           0 :             AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1885           0 :             nRow = nStartRow;
    1886           0 :             nIndex = 1;
    1887           0 :             for (nCol = nStartCol + 1; nCol < nEndCol; nCol++)
    1888             :             {
    1889           0 :                 AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1890           0 :                 if (nIndex == 1)
    1891           0 :                     nIndex = 2;
    1892             :                 else
    1893           0 :                     nIndex = 1;
    1894             :             }
    1895             :             // Bottom row
    1896           0 :             nRow = nEndRow;
    1897           0 :             nIndex = 13;
    1898           0 :             for (nCol = nStartCol + 1; nCol < nEndCol; nCol++)
    1899             :             {
    1900           0 :                 AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1901           0 :                 if (nIndex == 13)
    1902           0 :                     nIndex = 14;
    1903             :                 else
    1904           0 :                     nIndex = 13;
    1905             :             }
    1906             :             // Boddy
    1907           0 :             if ((pData->IsEqualData(5, 6)) && (pData->IsEqualData(9, 10)) && (pData->IsEqualData(5, 9)))
    1908           0 :                 AutoFormatArea(nStartCol + 1, nStartRow + 1, nEndCol-1, nEndRow - 1, *pPatternAttrs[5], nFormatNo);
    1909             :             else
    1910             :             {
    1911           0 :                 if ((pData->IsEqualData(5, 9)) && (pData->IsEqualData(6, 10)))
    1912             :                 {
    1913           0 :                     nIndex = 5;
    1914           0 :                     for (nCol = nStartCol + 1; nCol < nEndCol; nCol++)
    1915             :                     {
    1916           0 :                         AutoFormatArea(nCol, nStartRow + 1, nCol, nEndRow - 1, *pPatternAttrs[nIndex], nFormatNo);
    1917           0 :                         if (nIndex == 5)
    1918           0 :                             nIndex = 6;
    1919             :                         else
    1920           0 :                             nIndex = 5;
    1921             :                     }
    1922             :                 }
    1923             :                 else
    1924             :                 {
    1925           0 :                     nIndex = 5;
    1926           0 :                     for (nCol = nStartCol + 1; nCol < nEndCol; nCol++)
    1927             :                     {
    1928           0 :                         for (nRow = nStartRow + 1; nRow < nEndRow; nRow++)
    1929             :                         {
    1930           0 :                             AutoFormatArea(nCol, nRow, nCol, nRow, *pPatternAttrs[nIndex], nFormatNo);
    1931           0 :                             if ((nIndex == 5) || (nIndex == 9))
    1932             :                             {
    1933           0 :                                 if (nIndex == 5)
    1934           0 :                                     nIndex = 9;
    1935             :                                 else
    1936           0 :                                     nIndex = 5;
    1937             :                             }
    1938             :                             else
    1939             :                             {
    1940           0 :                                 if (nIndex == 6)
    1941           0 :                                     nIndex = 10;
    1942             :                                 else
    1943           0 :                                     nIndex = 6;
    1944             :                             }
    1945             :                         } // for nRow
    1946           0 :                         if ((nIndex == 5) || (nIndex == 9))
    1947           0 :                             nIndex = 6;
    1948             :                         else
    1949           0 :                             nIndex = 5;
    1950             :                     } // for nCol
    1951             :                 } // if not equal Column
    1952             :             } // if not all equal
    1953             : 
    1954           0 :             for (sal_uInt8 j = 0; j < 16; ++j)
    1955           0 :                 delete pPatternAttrs[j];
    1956             :         } // if AutoFormatData != NULL
    1957             :     } // if ValidColRow
    1958           0 : }
    1959             : 
    1960           0 : void ScTable::GetAutoFormatAttr(SCCOL nCol, SCROW nRow, sal_uInt16 nIndex, ScAutoFormatData& rData)
    1961             : {
    1962           0 :     sal_uInt32 nFormatIndex = GetNumberFormat( nCol, nRow );
    1963           0 :     ScNumFormatAbbrev   aNumFormat( nFormatIndex, *pDocument->GetFormatTable() );
    1964           0 :     rData.GetFromItemSet( nIndex, GetPattern( nCol, nRow )->GetItemSet(), aNumFormat );
    1965           0 : }
    1966             : 
    1967             : #define LF_LEFT         1
    1968             : #define LF_TOP          2
    1969             : #define LF_RIGHT        4
    1970             : #define LF_BOTTOM       8
    1971             : #define LF_ALL          (LF_LEFT | LF_TOP | LF_RIGHT | LF_BOTTOM)
    1972             : 
    1973           0 : void ScTable::GetAutoFormatFrame(SCCOL nCol, SCROW nRow, sal_uInt16 nFlags, sal_uInt16 nIndex, ScAutoFormatData& rData)
    1974             : {
    1975           0 :     const SvxBoxItem* pTheBox = static_cast<const SvxBoxItem*>(GetAttr(nCol, nRow, ATTR_BORDER));
    1976           0 :     const SvxBoxItem* pLeftBox = static_cast<const SvxBoxItem*>(GetAttr(nCol - 1, nRow, ATTR_BORDER));
    1977           0 :     const SvxBoxItem* pTopBox = static_cast<const SvxBoxItem*>(GetAttr(nCol, nRow - 1, ATTR_BORDER));
    1978           0 :     const SvxBoxItem* pRightBox = static_cast<const SvxBoxItem*>(GetAttr(nCol + 1, nRow, ATTR_BORDER));
    1979           0 :     const SvxBoxItem* pBottomBox = static_cast<const SvxBoxItem*>(GetAttr(nCol, nRow + 1, ATTR_BORDER));
    1980             : 
    1981           0 :     SvxBoxItem aBox( ATTR_BORDER );
    1982           0 :     if (nFlags & LF_LEFT)
    1983             :     {
    1984           0 :         if (pLeftBox)
    1985             :         {
    1986           0 :             if (ScHasPriority(pTheBox->GetLeft(), pLeftBox->GetRight()))
    1987           0 :                 aBox.SetLine(pTheBox->GetLeft(), BOX_LINE_LEFT);
    1988             :             else
    1989           0 :                 aBox.SetLine(pLeftBox->GetRight(), BOX_LINE_LEFT);
    1990             :         }
    1991             :         else
    1992           0 :             aBox.SetLine(pTheBox->GetLeft(), BOX_LINE_LEFT);
    1993             :     }
    1994           0 :     if (nFlags & LF_TOP)
    1995             :     {
    1996           0 :         if (pTopBox)
    1997             :         {
    1998           0 :             if (ScHasPriority(pTheBox->GetTop(), pTopBox->GetBottom()))
    1999           0 :                 aBox.SetLine(pTheBox->GetTop(), BOX_LINE_TOP);
    2000             :             else
    2001           0 :                 aBox.SetLine(pTopBox->GetBottom(), BOX_LINE_TOP);
    2002             :         }
    2003             :         else
    2004           0 :             aBox.SetLine(pTheBox->GetTop(), BOX_LINE_TOP);
    2005             :     }
    2006           0 :     if (nFlags & LF_RIGHT)
    2007             :     {
    2008           0 :         if (pRightBox)
    2009             :         {
    2010           0 :             if (ScHasPriority(pTheBox->GetRight(), pRightBox->GetLeft()))
    2011           0 :                 aBox.SetLine(pTheBox->GetRight(), BOX_LINE_RIGHT);
    2012             :             else
    2013           0 :                 aBox.SetLine(pRightBox->GetLeft(), BOX_LINE_RIGHT);
    2014             :         }
    2015             :         else
    2016           0 :             aBox.SetLine(pTheBox->GetRight(), BOX_LINE_RIGHT);
    2017             :     }
    2018           0 :     if (nFlags & LF_BOTTOM)
    2019             :     {
    2020           0 :         if (pBottomBox)
    2021             :         {
    2022           0 :             if (ScHasPriority(pTheBox->GetBottom(), pBottomBox->GetTop()))
    2023           0 :                 aBox.SetLine(pTheBox->GetBottom(), BOX_LINE_BOTTOM);
    2024             :             else
    2025           0 :                 aBox.SetLine(pBottomBox->GetTop(), BOX_LINE_BOTTOM);
    2026             :         }
    2027             :         else
    2028           0 :             aBox.SetLine(pTheBox->GetBottom(), BOX_LINE_BOTTOM);
    2029             :     }
    2030           0 :     rData.PutItem( nIndex, aBox );
    2031           0 : }
    2032             : 
    2033           0 : void ScTable::GetAutoFormatData(SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow, ScAutoFormatData& rData)
    2034             : {
    2035           0 :     if (ValidColRow(nStartCol, nStartRow) && ValidColRow(nEndCol, nEndRow))
    2036             :     {
    2037           0 :         if ((nEndCol - nStartCol >= 3) && (nEndRow - nStartRow >= 3))
    2038             :         {
    2039             :             // Left top corner
    2040           0 :             GetAutoFormatAttr(nStartCol, nStartRow, 0, rData);
    2041           0 :             GetAutoFormatFrame(nStartCol, nStartRow, LF_ALL, 0, rData);
    2042             :             // Left column
    2043           0 :             GetAutoFormatAttr(nStartCol, nStartRow + 1, 4, rData);
    2044           0 :             GetAutoFormatAttr(nStartCol, nStartRow + 2, 8, rData);
    2045           0 :             GetAutoFormatFrame(nStartCol, nStartRow + 1, LF_LEFT | LF_RIGHT | LF_BOTTOM, 4, rData);
    2046           0 :             if (nEndRow - nStartRow >= 4)
    2047           0 :                 GetAutoFormatFrame(nStartCol, nStartRow + 2, LF_LEFT | LF_RIGHT | LF_BOTTOM, 8, rData);
    2048             :             else
    2049           0 :                 rData.CopyItem( 8, 4, ATTR_BORDER );
    2050             :             // Left bottom corner
    2051           0 :             GetAutoFormatAttr(nStartCol, nEndRow, 12, rData);
    2052           0 :             GetAutoFormatFrame(nStartCol, nEndRow, LF_ALL, 12, rData);
    2053             :             // Right top corner
    2054           0 :             GetAutoFormatAttr(nEndCol, nStartRow, 3, rData);
    2055           0 :             GetAutoFormatFrame(nEndCol, nStartRow, LF_ALL, 3, rData);
    2056             :             // Right column
    2057           0 :             GetAutoFormatAttr(nEndCol, nStartRow + 1, 7, rData);
    2058           0 :             GetAutoFormatAttr(nEndCol, nStartRow + 2, 11, rData);
    2059           0 :             GetAutoFormatFrame(nEndCol, nStartRow + 1, LF_LEFT | LF_RIGHT | LF_BOTTOM, 7, rData);
    2060           0 :             if (nEndRow - nStartRow >= 4)
    2061           0 :                 GetAutoFormatFrame(nEndCol, nStartRow + 2, LF_LEFT | LF_RIGHT | LF_BOTTOM, 11, rData);
    2062             :             else
    2063           0 :                 rData.CopyItem( 11, 7, ATTR_BORDER );
    2064             :             // Right bottom corner
    2065           0 :             GetAutoFormatAttr(nEndCol, nEndRow, 15, rData);
    2066           0 :             GetAutoFormatFrame(nEndCol, nEndRow, LF_ALL, 15, rData);
    2067             :             // Top row
    2068           0 :             GetAutoFormatAttr(nStartCol + 1, nStartRow, 1, rData);
    2069           0 :             GetAutoFormatAttr(nStartCol + 2, nStartRow, 2, rData);
    2070           0 :             GetAutoFormatFrame(nStartCol + 1, nStartRow, LF_TOP | LF_BOTTOM | LF_RIGHT, 1, rData);
    2071           0 :             if (nEndCol - nStartCol >= 4)
    2072           0 :                 GetAutoFormatFrame(nStartCol + 2, nStartRow, LF_TOP | LF_BOTTOM | LF_RIGHT, 2, rData);
    2073             :             else
    2074           0 :                 rData.CopyItem( 2, 1, ATTR_BORDER );
    2075             :             // Bottom row
    2076           0 :             GetAutoFormatAttr(nStartCol + 1, nEndRow, 13, rData);
    2077           0 :             GetAutoFormatAttr(nStartCol + 2, nEndRow, 14, rData);
    2078           0 :             GetAutoFormatFrame(nStartCol + 1, nEndRow, LF_TOP | LF_BOTTOM | LF_RIGHT, 13, rData);
    2079           0 :             if (nEndCol - nStartCol >= 4)
    2080           0 :                 GetAutoFormatFrame(nStartCol + 2, nEndRow, LF_TOP | LF_BOTTOM | LF_RIGHT, 14, rData);
    2081             :             else
    2082           0 :                 rData.CopyItem( 14, 13, ATTR_BORDER );
    2083             :             // Body
    2084           0 :             GetAutoFormatAttr(nStartCol + 1, nStartRow + 1, 5, rData);
    2085           0 :             GetAutoFormatAttr(nStartCol + 2, nStartRow + 1, 6, rData);
    2086           0 :             GetAutoFormatAttr(nStartCol + 1, nStartRow + 2, 9, rData);
    2087           0 :             GetAutoFormatAttr(nStartCol + 2, nStartRow + 2, 10, rData);
    2088           0 :             GetAutoFormatFrame(nStartCol + 1, nStartRow + 1, LF_RIGHT | LF_BOTTOM, 5, rData);
    2089           0 :             if ((nEndCol - nStartCol >= 4) && (nEndRow - nStartRow >= 4))
    2090             :             {
    2091           0 :                 GetAutoFormatFrame(nStartCol + 2, nStartRow + 1, LF_RIGHT | LF_BOTTOM, 6, rData);
    2092           0 :                 GetAutoFormatFrame(nStartCol + 1, nStartRow + 2, LF_RIGHT | LF_BOTTOM, 9, rData);
    2093           0 :                 GetAutoFormatFrame(nStartCol + 2, nStartRow + 2, LF_RIGHT | LF_BOTTOM, 10, rData);
    2094             :             }
    2095             :             else
    2096             :             {
    2097           0 :                 rData.CopyItem( 6, 5, ATTR_BORDER );
    2098           0 :                 rData.CopyItem( 9, 5, ATTR_BORDER );
    2099           0 :                 rData.CopyItem( 10, 5, ATTR_BORDER );
    2100             :             }
    2101             :         }
    2102             :     }
    2103           0 : }
    2104             : 
    2105           2 : void ScTable::SetError( SCCOL nCol, SCROW nRow, sal_uInt16 nError)
    2106             : {
    2107           2 :     if (ValidColRow(nCol, nRow))
    2108           2 :         aCol[nCol].SetError( nRow, nError );
    2109           2 : }
    2110             : 
    2111          12 : void ScTable::UpdateInsertTabAbs(SCTAB nTable)
    2112             : {
    2113       12300 :     for (SCCOL i=0; i <= MAXCOL; i++)
    2114       12288 :         aCol[i].UpdateInsertTabAbs(nTable);
    2115          12 : }
    2116             : 
    2117           0 : bool ScTable::GetNextSpellingCell(SCCOL& rCol, SCROW& rRow, bool bInSel,
    2118             :                                     const ScMarkData& rMark) const
    2119             : {
    2120           0 :     if (rRow == MAXROW+2)                       // end of table
    2121             :     {
    2122           0 :         rRow = 0;
    2123           0 :         rCol = 0;
    2124             :     }
    2125             :     else
    2126             :     {
    2127           0 :         rRow++;
    2128           0 :         if (rRow == MAXROW+1)
    2129             :         {
    2130           0 :             rCol++;
    2131           0 :             rRow = 0;
    2132             :         }
    2133             :     }
    2134           0 :     if (rCol == MAXCOL+1)
    2135           0 :         return true;
    2136             :     else
    2137             :     {
    2138           0 :         bool bStop = false;
    2139           0 :         while (!bStop)
    2140             :         {
    2141           0 :             if (ValidCol(rCol))
    2142             :             {
    2143           0 :                 bStop = aCol[rCol].GetNextSpellingCell(rRow, bInSel, rMark);
    2144           0 :                 if (bStop)
    2145           0 :                     return true;
    2146             :                 else /*if (rRow == MAXROW+1) */
    2147             :                 {
    2148           0 :                     rCol++;
    2149           0 :                     rRow = 0;
    2150             :                 }
    2151             :             }
    2152             :             else
    2153           0 :                 return true;
    2154             :         }
    2155             :     }
    2156           0 :     return false;
    2157             : }
    2158             : 
    2159          22 : bool ScTable::TestTabRefAbs(SCTAB nTable) const
    2160             : {
    2161        2132 :     for (SCCOL i=0; i <= MAXCOL; i++)
    2162        2130 :         if (aCol[i].TestTabRefAbs(nTable))
    2163          20 :             return true;
    2164           2 :     return false;
    2165             : }
    2166             : 
    2167          18 : void ScTable::CompileDBFormula( sc::CompileFormulaContext& rCxt )
    2168             : {
    2169       18450 :     for (SCCOL i = 0; i <= MAXCOL; ++i)
    2170       18432 :         aCol[i].CompileDBFormula(rCxt);
    2171          18 : }
    2172             : 
    2173          14 : void ScTable::CompileColRowNameFormula( sc::CompileFormulaContext& rCxt )
    2174             : {
    2175       14350 :     for (SCCOL i = 0; i <= MAXCOL; ++i)
    2176       14336 :         aCol[i].CompileColRowNameFormula(rCxt);
    2177          14 : }
    2178             : 
    2179           0 : SCSIZE ScTable::GetPatternCount( SCCOL nCol ) const
    2180             : {
    2181           0 :     if( ValidCol( nCol ) )
    2182           0 :         return aCol[nCol].GetPatternCount();
    2183             :     else
    2184           0 :         return 0;
    2185             : }
    2186             : 
    2187           0 : SCSIZE ScTable::GetPatternCount( SCCOL nCol, SCROW nRow1, SCROW nRow2 ) const
    2188             : {
    2189           0 :     if( ValidCol( nCol ) && ValidRow( nRow1 ) && ValidRow( nRow2 ) )
    2190           0 :         return aCol[nCol].GetPatternCount( nRow1, nRow2 );
    2191             :     else
    2192           0 :         return 0;
    2193             : }
    2194             : 
    2195           0 : bool ScTable::ReservePatternCount( SCCOL nCol, SCSIZE nReserve )
    2196             : {
    2197           0 :     if( ValidCol( nCol ) )
    2198           0 :         return aCol[nCol].ReservePatternCount( nReserve );
    2199             :     else
    2200           0 :         return false;
    2201         228 : }
    2202             : 
    2203             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10