LCOV - code coverage report
Current view: top level - libreoffice/oox/inc/oox/drawingml - textparagraph.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 4 6 66.7 %
Date: 2012-12-27 Functions: 4 6 66.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             : #ifndef OOX_DRAWINGML_TEXTPARAGRAPH_HXX
      21             : #define OOX_DRAWINGML_TEXTPARAGRAPH_HXX
      22             : 
      23             : #include <com/sun/star/text/XTextCursor.hpp>
      24             : #include <com/sun/star/text/XText.hpp>
      25             : 
      26             : #include "oox/core/xmlfilterbase.hxx"
      27             : #include "oox/drawingml/textrun.hxx"
      28             : #include "oox/drawingml/textliststyle.hxx"
      29             : #include "oox/drawingml/textparagraphproperties.hxx"
      30             : 
      31             : namespace oox { namespace drawingml {
      32             : 
      33             : typedef RefVector< TextRun > TextRunVector;
      34             : 
      35             : class TextParagraph
      36             : {
      37             : public:
      38             :     TextParagraph();
      39             :     ~TextParagraph();
      40             : 
      41          13 :     inline TextRunVector&       getRuns() { return maRuns; }
      42           0 :     inline const TextRunVector& getRuns() const { return maRuns; }
      43          89 :     inline void                 addRun( const TextRunPtr & pRun ) { maRuns.push_back( pRun ); }
      44             : 
      45          62 :     inline TextParagraphProperties&         getProperties() { return maProperties; }
      46           0 :     inline const TextParagraphProperties&   getProperties() const { return maProperties; }
      47             : 
      48          55 :     inline TextCharacterProperties&         getEndProperties() { return maEndProperties; }
      49             :     inline const TextCharacterProperties&   getEndProperties() const { return maEndProperties; }
      50             : 
      51             :     //inline void                        setProperties( TextParagraphPropertiesPtr pProps ) { mpProperties = pProps; }
      52             : 
      53             :     void                        insertAt(
      54             :                                     const ::oox::core::XmlFilterBase& rFilterBase,
      55             :                                     const ::com::sun::star::uno::Reference < ::com::sun::star::text::XText > & xText,
      56             :                                     const ::com::sun::star::uno::Reference < ::com::sun::star::text::XTextCursor > &xAt,
      57             :                                     const TextCharacterProperties& rTextStyleProperties,
      58             :                                     const TextListStyle& rTextListStyle,
      59             :                                     bool bFirst = false ) const;
      60             : 
      61             : private:
      62             :     TextParagraphProperties     maProperties;
      63             :     TextCharacterProperties     maEndProperties;
      64             :     TextRunVector               maRuns;
      65             : };
      66             : 
      67             : typedef boost::shared_ptr< TextParagraph > TextParagraphPtr;
      68             : 
      69             : } }
      70             : 
      71             : #endif  //  OOX_DRAWINGML_TEXTPARAGRAPH_HXX
      72             : 
      73             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10