LCOV - code coverage report
Current view: top level - oox/source/drawingml - textfieldcontext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 25 25 100.0 %
Date: 2012-08-25 Functions: 4 4 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 19 32 59.4 %

           Branch data     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                 :            : #include "oox/drawingml/textfieldcontext.hxx"
      21                 :            : #include "oox/drawingml/textparagraphpropertiescontext.hxx"
      22                 :            : #include "oox/drawingml/textcharacterpropertiescontext.hxx"
      23                 :            : #include "oox/drawingml/textfield.hxx"
      24                 :            : 
      25                 :            : using ::rtl::OUString;
      26                 :            : using namespace ::oox::core;
      27                 :            : using namespace ::com::sun::star::uno;
      28                 :            : using namespace ::com::sun::star::xml::sax;
      29                 :            : 
      30                 :            : namespace oox { namespace drawingml {
      31                 :            : 
      32                 :         33 : TextFieldContext::TextFieldContext( ContextHandler& rParent,
      33                 :            :             const Reference< XFastAttributeList >& rXAttributes,
      34                 :            :             TextField& rTextField)
      35                 :            :     : ContextHandler( rParent )
      36                 :            :         , mrTextField( rTextField )
      37                 :         33 :         , mbIsInText( false )
      38                 :            : {
      39 [ +  - ][ +  - ]:         33 :     mrTextField.setUuid( rXAttributes->getOptionalValue( XML_id ) );
      40 [ +  - ][ +  - ]:         33 :     mrTextField.setType( rXAttributes->getOptionalValue( XML_type ) );
      41                 :         33 : }
      42                 :            : 
      43                 :         66 : void TextFieldContext::endFastElement( sal_Int32 aElementToken ) throw (SAXException, RuntimeException)
      44                 :            : {
      45         [ +  + ]:         66 :     if( aElementToken == (A_TOKEN( t )) )
      46                 :            :     {
      47                 :         33 :         mbIsInText = false;
      48                 :            :     }
      49                 :         66 : }
      50                 :            : 
      51                 :         39 : void TextFieldContext::characters( const OUString& aChars ) throw (SAXException, RuntimeException)
      52                 :            : {
      53         [ +  - ]:         39 :     if( mbIsInText )
      54                 :            :     {
      55                 :         39 :         mrTextField.getText() += aChars;
      56                 :            :     }
      57                 :         39 : }
      58                 :            : 
      59                 :         84 : Reference< XFastContextHandler > TextFieldContext::createFastChildContext( sal_Int32 aElementToken, const Reference< XFastAttributeList >& xAttribs )
      60                 :            :     throw (SAXException, RuntimeException)
      61                 :            : {
      62                 :         84 :     Reference< XFastContextHandler > xRet;
      63   [ +  +  +  - ]:         84 :     switch( aElementToken )
      64                 :            :     {
      65                 :            :     case A_TOKEN( rPr ):
      66 [ +  - ][ +  - ]:         33 :         xRet.set( new TextCharacterPropertiesContext( *this, xAttribs, mrTextField.getTextCharacterProperties() ) );
                 [ +  - ]
      67                 :         33 :         break;
      68                 :            :     case A_TOKEN( pPr ):
      69 [ +  - ][ +  - ]:         18 :         xRet.set( new TextParagraphPropertiesContext( *this, xAttribs, mrTextField.getTextParagraphProperties() ) );
                 [ +  - ]
      70                 :         18 :         break;
      71                 :            :     case A_TOKEN( t ):
      72                 :         33 :         mbIsInText = true;
      73                 :         33 :         break;
      74                 :            :     }
      75         [ +  + ]:         84 :     if ( !xRet.is() )
      76         [ +  - ]:         33 :         xRet.set( this );
      77                 :         84 :     return xRet;
      78                 :            : }
      79                 :            : 
      80                 :            : 
      81                 :            : } }
      82                 :            : 
      83                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10