LCOV - code coverage report
Current view: top level - svtools/source/table - tablegeometry.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 43 50 86.0 %
Date: 2014-04-11 Functions: 8 8 100.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 "tablegeometry.hxx"
      22             : #include "tablecontrol_impl.hxx"
      23             : 
      24             : 
      25             : namespace svt { namespace table
      26             : {
      27             : 
      28             : 
      29             : 
      30             :     //= TableRowGeometry
      31             : 
      32             : 
      33           7 :     TableRowGeometry::TableRowGeometry( TableControl_Impl const & _rControl, Rectangle const & _rBoundaries,
      34             :             RowPos const _nRow, bool const i_allowVirtualRows )
      35             :         :TableGeometry( _rControl, _rBoundaries )
      36             :         ,m_nRowPos( _nRow )
      37           7 :         ,m_bAllowVirtualRows( i_allowVirtualRows )
      38             :     {
      39           7 :         if ( m_nRowPos == ROW_COL_HEADERS )
      40             :         {
      41           2 :             m_aRect.Top() = 0;
      42           2 :             m_aRect.Bottom() = m_rControl.m_nColHeaderHeightPixel - 1;
      43             :         }
      44             :         else
      45             :         {
      46           5 :             impl_initRect();
      47             :         }
      48           7 :     }
      49             : 
      50             : 
      51           5 :     void TableRowGeometry::impl_initRect()
      52             :     {
      53           5 :         if ( ( m_nRowPos >= m_rControl.m_nTopRow ) && impl_isValidRow( m_nRowPos ) )
      54             :         {
      55           4 :             m_aRect.Top() = m_rControl.m_nColHeaderHeightPixel + ( m_nRowPos - m_rControl.m_nTopRow ) * m_rControl.m_nRowHeightPixel;
      56           4 :             m_aRect.Bottom() = m_aRect.Top() + m_rControl.m_nRowHeightPixel - 1;
      57             :         }
      58             :         else
      59           1 :             m_aRect.SetEmpty();
      60           5 :     }
      61             : 
      62             : 
      63          28 :     bool TableRowGeometry::impl_isValidRow( RowPos const i_row ) const
      64             :     {
      65          28 :         return m_bAllowVirtualRows || ( i_row < m_rControl.m_pModel->getRowCount() );
      66             :     }
      67             : 
      68             : 
      69          23 :     bool TableRowGeometry::moveDown()
      70             :     {
      71          23 :         if ( m_nRowPos == ROW_COL_HEADERS )
      72             :         {
      73           0 :             m_nRowPos = m_rControl.m_nTopRow;
      74           0 :             impl_initRect();
      75             :         }
      76             :         else
      77             :         {
      78          23 :             if ( impl_isValidRow( ++m_nRowPos ) )
      79          22 :                 m_aRect.Move( 0, m_rControl.m_nRowHeightPixel );
      80             :             else
      81           1 :                 m_aRect.SetEmpty();
      82             :         }
      83          23 :         return isValid();
      84             :     }
      85             : 
      86             : 
      87             :     //= TableColumnGeometry
      88             : 
      89             : 
      90          20 :     TableColumnGeometry::TableColumnGeometry( TableControl_Impl const & _rControl, Rectangle const & _rBoundaries,
      91             :             ColPos const _nCol, bool const i_allowVirtualColumns )
      92             :         :TableGeometry( _rControl, _rBoundaries )
      93             :         ,m_nColPos( _nCol )
      94          20 :         ,m_bAllowVirtualColumns( i_allowVirtualColumns )
      95             :     {
      96          20 :         if ( m_nColPos == COL_ROW_HEADERS )
      97             :         {
      98           0 :             m_aRect.Left() = 0;
      99           0 :             m_aRect.Right() = m_rControl.m_nRowHeaderWidthPixel - 1;
     100             :         }
     101             :         else
     102             :         {
     103          20 :             impl_initRect();
     104             :         }
     105          20 :     }
     106             : 
     107             : 
     108          20 :     void TableColumnGeometry::impl_initRect()
     109             :     {
     110          20 :         ColPos nLeftColumn = m_rControl.m_nLeftColumn;
     111          20 :         if ( ( m_nColPos >= nLeftColumn ) && impl_isValidColumn( m_nColPos ) )
     112             :         {
     113          13 :             m_aRect.Left() = m_rControl.m_nRowHeaderWidthPixel;
     114             :             // TODO: take into account any possibly frozen columns
     115             : 
     116          13 :             for ( ColPos col = nLeftColumn; col < m_nColPos; ++col )
     117           0 :                 m_aRect.Left() += m_rControl.m_aColumnWidths[ col ].getWidth();
     118          13 :             m_aRect.Right() = m_aRect.Left() + m_rControl.m_aColumnWidths[ m_nColPos ].getWidth() - 1;
     119             :         }
     120             :         else
     121           7 :             m_aRect.SetEmpty();
     122          20 :     }
     123             : 
     124             : 
     125          51 :     bool TableColumnGeometry::impl_isValidColumn( ColPos const i_column ) const
     126             :     {
     127          51 :         return m_bAllowVirtualColumns || ( i_column < ColPos( m_rControl.m_aColumnWidths.size() ) );
     128             :     }
     129             : 
     130             : 
     131          31 :     bool TableColumnGeometry::moveRight()
     132             :     {
     133          31 :         if ( m_nColPos == COL_ROW_HEADERS )
     134             :         {
     135           0 :             m_nColPos = m_rControl.m_nLeftColumn;
     136           0 :             impl_initRect();
     137             :         }
     138             :         else
     139             :         {
     140          31 :             if ( impl_isValidColumn( ++m_nColPos ) )
     141             :             {
     142          18 :                 m_aRect.Left() = m_aRect.Right() + 1;
     143          18 :                 m_aRect.Right() += m_rControl.m_aColumnWidths[ m_nColPos ].getWidth();
     144             :             }
     145             :             else
     146          13 :                 m_aRect.SetEmpty();
     147             :         }
     148             : 
     149          31 :         return isValid();
     150             :     }
     151             : 
     152             : 
     153             : } } // namespace svt::table
     154             : 
     155             : 
     156             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10