LCOV - code coverage report
Current view: top level - libreoffice/sw/source/ui/table - swtablerep.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 81 1.2 %
Date: 2012-12-27 Functions: 2 5 40.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include <hintids.hxx>
      22             : #include <vcl/msgbox.hxx>
      23             : #include <svl/stritem.hxx>
      24             : #include <svl/intitem.hxx>
      25             : #include <editeng/keepitem.hxx>
      26             : #include <editeng/brkitem.hxx>
      27             : #include <editeng/ulspitem.hxx>
      28             : #include <editeng/frmdiritem.hxx>
      29             : #include <svl/ctloptions.hxx>
      30             : #include <swmodule.hxx>
      31             : #include <fmtornt.hxx>
      32             : #include <fmtpdsc.hxx>
      33             : #include <fmtlsplt.hxx>
      34             : 
      35             : #include <svtools/htmlcfg.hxx>
      36             : #include <fmtrowsplt.hxx>
      37             : #include <svx/htmlmode.hxx>
      38             : 
      39             : #include <docsh.hxx>
      40             : #include <wrtsh.hxx>
      41             : #include <view.hxx>
      42             : #include <viewopt.hxx>
      43             : #include <uitool.hxx>
      44             : #include <frmatr.hxx>
      45             : 
      46             : #include <tablepg.hxx>
      47             : #include <tablemgr.hxx>
      48             : #include <pagedesc.hxx>
      49             : #include <poolfmt.hxx>
      50             : #include <SwStyleNameMapper.hxx>
      51             : 
      52             : #include <cmdid.h>
      53             : #include <tabledlg.hrc>
      54             : #include <table.hrc>
      55             : #include "swtablerep.hxx"
      56             : 
      57             : 
      58           0 : SwTableRep::SwTableRep( const SwTabCols& rTabCol )
      59             :     :
      60             :     nTblWidth(0),
      61             :     nSpace(0),
      62             :     nLeftSpace(0),
      63             :     nRightSpace(0),
      64             :     nAlign(0),
      65             :     nWidthPercent(0),
      66             :     bLineSelected(sal_False),
      67             :     bWidthChanged(sal_False),
      68           0 :     bColsChanged(sal_False)
      69             : {
      70           0 :     nAllCols = nColCount = rTabCol.Count();
      71           0 :     pTColumns = new TColumn[ nColCount + 1 ];
      72           0 :     SwTwips nStart = 0,
      73             :             nEnd;
      74           0 :     for( sal_uInt16 i = 0; i < nAllCols; ++i )
      75             :     {
      76           0 :         nEnd  = rTabCol[ i ] - rTabCol.GetLeft();
      77           0 :         pTColumns[ i ].nWidth = nEnd - nStart;
      78           0 :         pTColumns[ i ].bVisible = !rTabCol.IsHidden(i);
      79           0 :         if(!pTColumns[ i ].bVisible)
      80           0 :             nColCount --;
      81           0 :         nStart = nEnd;
      82             :     }
      83           0 :     pTColumns[ nAllCols ].nWidth = rTabCol.GetRight() - rTabCol.GetLeft() - nStart;
      84           0 :     pTColumns[ nAllCols ].bVisible = sal_True;
      85           0 :     nColCount++;
      86           0 :     nAllCols++;
      87           0 : }
      88             : 
      89           0 : SwTableRep::~SwTableRep()
      90             : {
      91           0 :     delete[] pTColumns;
      92           0 : }
      93             : 
      94           0 : sal_Bool SwTableRep::FillTabCols( SwTabCols& rTabCols ) const
      95             : {
      96           0 :     long nOldLeft = rTabCols.GetLeft(),
      97           0 :          nOldRight = rTabCols.GetRight();
      98             : 
      99           0 :     sal_Bool bSingleLine = sal_False;
     100             :     sal_uInt16 i;
     101             : 
     102           0 :     for ( i = 0; i < rTabCols.Count(); ++i )
     103           0 :         if(!pTColumns[i].bVisible)
     104             :         {
     105           0 :             bSingleLine = sal_True;
     106           0 :             break;
     107             :         }
     108             : 
     109           0 :     SwTwips nPos = 0;
     110           0 :     SwTwips nLeft = GetLeftSpace();
     111           0 :     rTabCols.SetLeft(nLeft);
     112           0 :     if(bSingleLine)
     113             :     {
     114             :         // die unsichtbaren Trenner werden aus den alten TabCols genommen
     115             :         // die sichtbaren kommen aus pTColumns
     116           0 :         TColumn*    pOldTColumns = new TColumn[nAllCols + 1];
     117           0 :         SwTwips nStart = 0,
     118             :                 nEnd;
     119           0 :         for(i = 0; i < nAllCols - 1; i++)
     120             :         {
     121           0 :             nEnd  = rTabCols[i] - rTabCols.GetLeft();
     122           0 :             pOldTColumns[i].nWidth = nEnd - nStart;
     123           0 :             pOldTColumns[i].bVisible = !rTabCols.IsHidden(i);
     124           0 :             nStart = nEnd;
     125             :         }
     126           0 :         pOldTColumns[nAllCols - 1].nWidth = rTabCols.GetRight() - rTabCols.GetLeft() - nStart;
     127           0 :         pOldTColumns[nAllCols - 1].bVisible = sal_True;
     128             : 
     129           0 :         sal_uInt16 nOldPos = 0;
     130           0 :         sal_uInt16 nNewPos = 0;
     131           0 :         SwTwips nOld = 0;
     132           0 :         SwTwips nNew = 0;
     133           0 :         sal_Bool bOld = sal_False;
     134           0 :         sal_Bool bFirst = sal_True;
     135           0 :         i = 0;
     136             : 
     137           0 :         while ( i < nAllCols -1 )
     138             :         {
     139           0 :             while((bFirst || bOld ) && nOldPos < nAllCols )
     140             :             {
     141           0 :                 nOld += pOldTColumns[nOldPos].nWidth;
     142           0 :                 nOldPos++;
     143           0 :                 if(!pOldTColumns[nOldPos - 1].bVisible)
     144           0 :                     break;
     145             :             }
     146           0 :             while((bFirst || !bOld ) && nNewPos < nAllCols )
     147             :             {
     148           0 :                 nNew += pTColumns[nNewPos].nWidth;
     149           0 :                 nNewPos++;
     150           0 :                 if(pOldTColumns[nNewPos - 1].bVisible)
     151           0 :                     break;
     152             :             }
     153           0 :             bFirst = sal_False;
     154             :             // sie muessen sortiert eingefuegt werden
     155           0 :             bOld = nOld < nNew;
     156           0 :             nPos = sal_uInt16(bOld ? nOld : nNew);
     157           0 :             rTabCols[i] = nPos + nLeft;
     158           0 :             rTabCols.SetHidden( i, bOld );
     159           0 :             i++;
     160             :         }
     161           0 :         rTabCols.SetRight(nLeft + nTblWidth);
     162             : 
     163           0 :         delete[] pOldTColumns;
     164             :     }
     165             :     else
     166             :     {
     167           0 :         for ( i = 0; i < nAllCols - 1; ++i )
     168             :         {
     169           0 :             nPos += pTColumns[i].nWidth;
     170           0 :             rTabCols[i] = nPos + rTabCols.GetLeft();
     171           0 :             rTabCols.SetHidden( i, !pTColumns[i].bVisible );
     172           0 :             rTabCols.SetRight(nLeft + pTColumns[nAllCols - 1].nWidth + nPos);
     173             :         }
     174             :     }
     175             : 
     176             : // Rundungsfehler abfangen
     177           0 :     if(Abs((long)nOldLeft - (long)rTabCols.GetLeft()) < 3)
     178           0 :         rTabCols.SetLeft(nOldLeft);
     179             : 
     180           0 :     if(Abs((long)nOldRight - (long)rTabCols.GetRight()) < 3)
     181           0 :         rTabCols.SetRight(nOldRight);
     182             : 
     183           0 :     if(GetRightSpace() >= 0 &&
     184           0 :             rTabCols.GetRight() > rTabCols.GetRightMax())
     185           0 :         rTabCols.SetRight(rTabCols.GetRightMax());
     186           0 :     return bSingleLine;
     187          30 : }
     188             : 
     189             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10