LCOV - code coverage report
Current view: top level - libreoffice/writerfilter/source/dmapper - SectionColumnHandler.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 5 5 100.0 %
Date: 2012-12-17 Functions: 5 5 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             : #ifndef INCLUDED_SECTIONCOLUMNHANDLER_HXX
      20             : #define INCLUDED_SECTIONCOLUMNHANDLER_HXX
      21             : 
      22             : #include <WriterFilterDllApi.hxx>
      23             : #include <resourcemodel/LoggedResources.hxx>
      24             : #include <boost/shared_ptr.hpp>
      25             : 
      26             : 
      27             : namespace writerfilter {
      28             : namespace dmapper
      29             : {
      30             : struct _Column
      31             : {
      32             :     sal_Int32 nWidth;
      33             :     sal_Int32 nSpace;
      34             : };
      35             : 
      36             : 
      37             : class WRITERFILTER_DLLPRIVATE SectionColumnHandler : public LoggedProperties
      38             : {
      39             :     bool        bEqualWidth;
      40             :     sal_Int32   nSpace;
      41             :     sal_Int32   nNum;
      42             :     bool        bSep;
      43             :     std::vector<_Column> aCols;
      44             : 
      45             :     _Column   aTempColumn;
      46             : 
      47             :     // Properties
      48             :     virtual void lcl_attribute(Id Name, Value & val);
      49             :     virtual void lcl_sprm(Sprm & sprm);
      50             : 
      51             : public:
      52             :     SectionColumnHandler();
      53             :     virtual ~SectionColumnHandler();
      54             : 
      55         124 :     bool        IsEqualWidth() const { return bEqualWidth; }
      56           8 :     sal_Int32   GetSpace() const { return nSpace; }
      57         116 :     sal_Int32   GetNum() const { return nNum; }
      58           8 :     bool        IsSeparator() const { return bSep; }
      59             : 
      60         172 :     const std::vector<_Column>& GetColumns() const { return aCols;}
      61             : 
      62             : };
      63             : typedef boost::shared_ptr< SectionColumnHandler >          SectionColumnHandlerPtr;
      64             : }}
      65             : 
      66             : #endif //
      67             : 
      68             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10