LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/chart2/source/tools - WrappedDefaultProperty.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 12 20 60.0 %
Date: 2013-07-09 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             : 
      21             : #include "WrappedDefaultProperty.hxx"
      22             : #include "macros.hxx"
      23             : 
      24             : using namespace ::com::sun::star;
      25             : 
      26             : using ::com::sun::star::uno::Reference;
      27             : using ::com::sun::star::uno::Sequence;
      28             : 
      29             : namespace chart
      30             : {
      31             : 
      32         136 : WrappedDefaultProperty::WrappedDefaultProperty(
      33             :     const OUString& rOuterName, const OUString& rInnerName,
      34             :     const uno::Any& rNewOuterDefault ) :
      35             :         WrappedProperty( rOuterName, rInnerName ),
      36         136 :         m_aOuterDefaultValue( rNewOuterDefault )
      37         136 : {}
      38             : 
      39         166 : WrappedDefaultProperty::~WrappedDefaultProperty()
      40         166 : {}
      41             : 
      42           0 : void WrappedDefaultProperty::setPropertyToDefault(
      43             :     const Reference< beans::XPropertyState >& xInnerPropertyState ) const
      44             :     throw (beans::UnknownPropertyException,
      45             :            uno::RuntimeException)
      46             : {
      47           0 :     Reference< beans::XPropertySet > xInnerPropSet( xInnerPropertyState, uno::UNO_QUERY );
      48           0 :     if( xInnerPropSet.is())
      49           0 :         this->setPropertyValue( m_aOuterDefaultValue, xInnerPropSet );
      50           0 : }
      51             : 
      52           0 : uno::Any WrappedDefaultProperty::getPropertyDefault(
      53             :     const Reference< beans::XPropertyState >& /* xInnerPropertyState */ ) const
      54             :     throw (beans::UnknownPropertyException,
      55             :            lang::WrappedTargetException,
      56             :            uno::RuntimeException)
      57             : {
      58           0 :     return m_aOuterDefaultValue;
      59             : }
      60             : 
      61          50 : beans::PropertyState WrappedDefaultProperty::getPropertyState(
      62             :     const Reference< beans::XPropertyState >& xInnerPropertyState ) const
      63             :     throw (beans::UnknownPropertyException,
      64             :            uno::RuntimeException)
      65             : {
      66          50 :     beans::PropertyState aState = beans::PropertyState_DIRECT_VALUE;
      67             :     try
      68             :     {
      69          50 :         Reference< beans::XPropertySet > xInnerProp( xInnerPropertyState, uno::UNO_QUERY_THROW );
      70         100 :         uno::Any aValue = this->getPropertyValue( xInnerProp );
      71          50 :         if( m_aOuterDefaultValue == this->convertInnerToOuterValue( aValue ))
      72          70 :             aState = beans::PropertyState_DEFAULT_VALUE;
      73             :     }
      74           0 :     catch( const beans::UnknownPropertyException& ex )
      75             :     {
      76             :         ASSERT_EXCEPTION( ex );
      77             :     }
      78          50 :     return aState;
      79             : }
      80             : 
      81             : } //  namespace chart
      82             : 
      83             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10