LCOV - code coverage report
Current view: top level - libreoffice/oox/inc/oox/drawingml/table - tableproperties.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 12 0.0 %
Date: 2012-12-27 Functions: 0 12 0.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             : #ifndef OOX_DRAWINGML_TABLEPROPERTIES_HXX
      21             : #define OOX_DRAWINGML_TABLEPROPERTIES_HXX
      22             : 
      23             : #include "oox/drawingml/table/tablerow.hxx"
      24             : #include "oox/drawingml/table/tablestyle.hxx"
      25             : #include "oox/helper/propertymap.hxx"
      26             : #include "oox/drawingml/color.hxx"
      27             : 
      28             : #include <boost/shared_ptr.hpp>
      29             : #include <boost/optional.hpp>
      30             : #include <vector>
      31             : #include <map>
      32             : 
      33             : namespace oox { namespace drawingml { namespace table {
      34             : 
      35           0 : class TableProperties
      36             : {
      37             : public:
      38             : 
      39             :     TableProperties();
      40             :     ~TableProperties();
      41             : 
      42           0 :     std::vector< sal_Int32 >& getTableGrid() { return mvTableGrid; };
      43           0 :     std::vector< TableRow >& getTableRows() { return mvTableRows; };
      44             : 
      45           0 :     rtl::OUString&                      getStyleId(){ return maStyleId; };
      46           0 :     boost::shared_ptr< TableStyle >&    getTableStyle(){ return mpTableStyle; };
      47           0 :     sal_Bool&                           isRtl(){ return mbRtl; };
      48           0 :     sal_Bool&                           isFirstRow(){ return mbFirstRow; };
      49           0 :     sal_Bool&                           isFirstCol(){ return mbFirstCol; };
      50           0 :     sal_Bool&                           isLastRow(){ return mbLastRow; };
      51           0 :     sal_Bool&                           isLastCol(){ return mbLastCol; };
      52           0 :     sal_Bool&                           isBandRow(){ return mbBandRow; };
      53           0 :     sal_Bool&                           isBandCol(){ return mbBandCol; };
      54             : 
      55             :     void pushToPropSet( const ::oox::core::XmlFilterBase& rFilterBase,
      56             :         const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > & xPropSet, ::oox::drawingml::TextListStylePtr pMasterTextListStyle );
      57             : 
      58             : private:
      59             : 
      60             :     const TableStyle&                   getUsedTableStyle( const ::oox::core::XmlFilterBase& rFilterBase );
      61             : 
      62             :     rtl::OUString                       maStyleId;              // either StyleId is available
      63             :     boost::shared_ptr< TableStyle >     mpTableStyle;           // or the complete TableStyle
      64             :     std::vector< sal_Int32 >            mvTableGrid;
      65             :     std::vector< TableRow >             mvTableRows;
      66             : 
      67             :     sal_Bool                            mbRtl;
      68             :     sal_Bool                            mbFirstRow;
      69             :     sal_Bool                            mbFirstCol;
      70             :     sal_Bool                            mbLastRow;
      71             :     sal_Bool                            mbLastCol;
      72             :     sal_Bool                            mbBandRow;
      73             :     sal_Bool                            mbBandCol;
      74             : };
      75             : 
      76             : } } }
      77             : 
      78             : #endif  //  OOX_DRAWINGML_TABLEPROPERTIES_HXX
      79             : 
      80             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10