LCOV - code coverage report
Current view: top level - oox/source/export - ColorPropertySet.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 50 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 20 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             : // FIXME? This file is nearly identical to xmloff/source/chart/ColorPropertySet.cxx
      21             : 
      22             : #include "ColorPropertySet.hxx"
      23             : 
      24             : #include <cppuhelper/implbase1.hxx>
      25             : #include <osl/diagnose.h>
      26             : #include <com/sun/star/drawing/FillStyle.hpp>
      27             : 
      28             : using namespace ::com::sun::star;
      29             : using namespace ::com::sun::star::beans;
      30             : 
      31             : using ::com::sun::star::uno::Reference;
      32             : using ::com::sun::star::uno::Sequence;
      33             : using ::com::sun::star::uno::RuntimeException;
      34             : 
      35             : namespace
      36             : {
      37           0 : class lcl_ColorPropertySetInfo : public ::cppu::WeakImplHelper1<
      38             :         XPropertySetInfo  >
      39             : {
      40             : public:
      41             :     explicit lcl_ColorPropertySetInfo( bool bFillColor );
      42             : 
      43             : protected:
      44             :     // ____ XPropertySetInfo ____
      45             :     virtual Sequence< Property > SAL_CALL getProperties()                throw (RuntimeException, std::exception) SAL_OVERRIDE;
      46             :     virtual Property SAL_CALL getPropertyByName( const OUString& aName ) throw (UnknownPropertyException, RuntimeException, std::exception) SAL_OVERRIDE;
      47             :     virtual sal_Bool SAL_CALL hasPropertyByName( const OUString& Name )  throw (RuntimeException, std::exception) SAL_OVERRIDE;
      48             : 
      49             : private:
      50             :     OUString m_aColorPropName;
      51             :     Property m_aColorProp;
      52             : };
      53             : 
      54           0 : lcl_ColorPropertySetInfo::lcl_ColorPropertySetInfo( bool bFillColor ) :
      55             :         // note: length of FillColor and LineColor is 9
      56             :         m_aColorPropName( (bFillColor ? "FillColor" : "LineColor"), 9, RTL_TEXTENCODING_ASCII_US ),
      57             :         m_aColorProp( m_aColorPropName, -1,
      58           0 :                       cppu::UnoType<sal_Int32>::get(), 0)
      59           0 : {}
      60             : 
      61           0 : Sequence< Property > SAL_CALL lcl_ColorPropertySetInfo::getProperties()
      62             :     throw (RuntimeException, std::exception)
      63             : {
      64             : 
      65           0 :     return Sequence< Property >( & m_aColorProp, 1 );
      66             : }
      67             : 
      68           0 : Property SAL_CALL lcl_ColorPropertySetInfo::getPropertyByName( const OUString& aName )
      69             :     throw (UnknownPropertyException, RuntimeException, std::exception)
      70             : {
      71           0 :     if( aName.equals( m_aColorPropName ))
      72           0 :         return m_aColorProp;
      73           0 :     throw UnknownPropertyException( m_aColorPropName, static_cast< uno::XWeak * >( this ));
      74             : }
      75             : 
      76           0 : sal_Bool SAL_CALL lcl_ColorPropertySetInfo::hasPropertyByName( const OUString& Name )
      77             :     throw (RuntimeException, std::exception)
      78             : {
      79           0 :     return Name.equals( m_aColorPropName );
      80             : }
      81             : 
      82             : } // anonymous namespace
      83             : 
      84             : namespace oox
      85             : {
      86             : namespace drawingml
      87             : {
      88             : 
      89           0 : ColorPropertySet::ColorPropertySet( sal_Int32 nColor, bool bFillColor /* = true */ ) :
      90             :         // note: length of FillColor and LineColor is 9
      91             :         m_aColorPropName( (bFillColor ? "FillColor" : "LineColor"), 9, RTL_TEXTENCODING_ASCII_US ),
      92             :         m_nColor( nColor ),
      93             :         m_bIsFillColor( bFillColor ),
      94           0 :         m_nDefaultColor( 0x0099ccff )  // blue 8
      95           0 : {}
      96             : 
      97           0 : ColorPropertySet::~ColorPropertySet()
      98           0 : {}
      99             : 
     100             : // ____ XPropertySet ____
     101             : 
     102           0 : Reference< XPropertySetInfo > SAL_CALL ColorPropertySet::getPropertySetInfo()
     103             :     throw (uno::RuntimeException, std::exception)
     104             : {
     105           0 :     if( ! m_xInfo.is())
     106           0 :         m_xInfo.set( new lcl_ColorPropertySetInfo( m_bIsFillColor ));
     107             : 
     108           0 :     return m_xInfo;
     109             : }
     110             : 
     111           0 : void SAL_CALL ColorPropertySet::setPropertyValue( const OUString& /* aPropertyName */, const uno::Any& aValue )
     112             :     throw (UnknownPropertyException,
     113             :            PropertyVetoException,
     114             :            lang::IllegalArgumentException,
     115             :            lang::WrappedTargetException,
     116             :            uno::RuntimeException, std::exception)
     117             : {
     118           0 :     aValue >>= m_nColor;
     119           0 : }
     120             : 
     121           0 : uno::Any SAL_CALL ColorPropertySet::getPropertyValue( const OUString& aPropertyName )
     122             :     throw (UnknownPropertyException,
     123             :            lang::WrappedTargetException,
     124             :            uno::RuntimeException, std::exception)
     125             : {
     126           0 :     if( aPropertyName == "FillStyle" && m_bIsFillColor )
     127             :     {
     128           0 :         ::com::sun::star::drawing::FillStyle aFillStyle = ::com::sun::star::drawing::FillStyle_SOLID;
     129           0 :         return uno::makeAny(aFillStyle);
     130             :     }
     131           0 :     return uno::makeAny( m_nColor );
     132             : }
     133             : 
     134           0 : void SAL_CALL ColorPropertySet::addPropertyChangeListener( const OUString& /* aPropertyName */, const Reference< XPropertyChangeListener >& /* xListener */ )
     135             :     throw (UnknownPropertyException,
     136             :            lang::WrappedTargetException,
     137             :            uno::RuntimeException, std::exception)
     138             : {
     139             :     OSL_FAIL( "Not Implemented" );
     140           0 :     return;
     141             : }
     142             : 
     143           0 : void SAL_CALL ColorPropertySet::removePropertyChangeListener( const OUString& /* aPropertyName */, const Reference< XPropertyChangeListener >& /* aListener */ )
     144             :     throw (UnknownPropertyException,
     145             :            lang::WrappedTargetException,
     146             :            uno::RuntimeException, std::exception)
     147             : {
     148             :     OSL_FAIL( "Not Implemented" );
     149           0 :     return;
     150             : }
     151             : 
     152           0 : void SAL_CALL ColorPropertySet::addVetoableChangeListener( const OUString& /* PropertyName */, const Reference< XVetoableChangeListener >& /* aListener */ )
     153             :     throw (UnknownPropertyException,
     154             :            lang::WrappedTargetException,
     155             :            uno::RuntimeException, std::exception)
     156             : {
     157             :     OSL_FAIL( "Not Implemented" );
     158           0 :     return;
     159             : }
     160             : 
     161           0 : void SAL_CALL ColorPropertySet::removeVetoableChangeListener( const OUString& /* PropertyName */, const Reference< XVetoableChangeListener >& /* aListener */ )
     162             :     throw (UnknownPropertyException,
     163             :            lang::WrappedTargetException,
     164             :            uno::RuntimeException, std::exception)
     165             : {
     166             :     OSL_FAIL( "Not Implemented" );
     167           0 :     return;
     168             : }
     169             : 
     170             : // ____ XPropertyState ____
     171             : 
     172           0 : PropertyState SAL_CALL ColorPropertySet::getPropertyState( const OUString& /* PropertyName */ )
     173             :     throw (UnknownPropertyException,
     174             :            uno::RuntimeException, std::exception)
     175             : {
     176           0 :     return PropertyState_DIRECT_VALUE;
     177             : }
     178             : 
     179           0 : Sequence< PropertyState > SAL_CALL ColorPropertySet::getPropertyStates( const Sequence< OUString >& /* aPropertyName */ )
     180             :     throw (UnknownPropertyException,
     181             :            uno::RuntimeException, std::exception)
     182             : {
     183           0 :     PropertyState aState = PropertyState_DIRECT_VALUE;
     184           0 :     return Sequence< PropertyState >( & aState, 1 );
     185             : }
     186             : 
     187           0 : void SAL_CALL ColorPropertySet::setPropertyToDefault( const OUString& PropertyName )
     188             :     throw (UnknownPropertyException,
     189             :            uno::RuntimeException, std::exception)
     190             : {
     191           0 :     if( PropertyName.equals( m_aColorPropName ))
     192           0 :         m_nColor = m_nDefaultColor;
     193           0 : }
     194             : 
     195           0 : uno::Any SAL_CALL ColorPropertySet::getPropertyDefault( const OUString& aPropertyName )
     196             :     throw (UnknownPropertyException,
     197             :            lang::WrappedTargetException,
     198             :            uno::RuntimeException, std::exception)
     199             : {
     200           0 :     if( aPropertyName.equals( m_aColorPropName ))
     201           0 :         return uno::makeAny( m_nDefaultColor );
     202           0 :     return uno::Any();
     203             : }
     204             : 
     205             : } //  namespace chart
     206             : } //  namespace xmloff
     207             : 
     208             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11