Avoid potential negative array index access to cached text.
[LibreOffice.git] / chart2 / source / controller / chartapiwrapper / WrappedAutomaticPositionProperties.cxx
blobb88468c9941ed5afdd953ebaf00c6c8ce1fc0c90
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "WrappedAutomaticPositionProperties.hxx"
21 #include <FastPropertyIdRanges.hxx>
22 #include <WrappedProperty.hxx>
23 #include <com/sun/star/beans/PropertyAttribute.hpp>
24 #include <com/sun/star/beans/XPropertyState.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <comphelper/diagnose_ex.hxx>
28 using namespace ::com::sun::star;
29 using ::com::sun::star::uno::Any;
30 using ::com::sun::star::uno::Reference;
31 using ::com::sun::star::beans::Property;
33 namespace chart::wrapper
36 namespace {
38 class WrappedAutomaticPositionProperty : public WrappedProperty
40 public:
41 WrappedAutomaticPositionProperty();
43 virtual void setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& xInnerPropertySet ) const override;
44 virtual Any getPropertyValue( const Reference< beans::XPropertySet >& xInnerPropertySet ) const override;
45 virtual Any getPropertyDefault( const Reference< beans::XPropertyState >& xInnerPropertyState ) const override;
50 WrappedAutomaticPositionProperty::WrappedAutomaticPositionProperty()
51 : ::chart::WrappedProperty( "AutomaticPosition" , OUString() )
55 void WrappedAutomaticPositionProperty::setPropertyValue( const Any& rOuterValue, const Reference< beans::XPropertySet >& xInnerPropertySet ) const
57 if( !xInnerPropertySet.is() )
58 return;
60 bool bNewValue = true;
61 if( ! (rOuterValue >>= bNewValue) )
62 throw lang::IllegalArgumentException( "Property AutomaticPosition requires value of type boolean", nullptr, 0 );
64 try
66 if( bNewValue )
68 Any aRelativePosition( xInnerPropertySet->getPropertyValue( "RelativePosition" ) );
69 if( aRelativePosition.hasValue() )
70 xInnerPropertySet->setPropertyValue( "RelativePosition", Any() );
73 catch( const uno::Exception & )
75 DBG_UNHANDLED_EXCEPTION("chart2");
79 Any WrappedAutomaticPositionProperty::getPropertyValue( const Reference< beans::XPropertySet >& xInnerPropertySet ) const
81 Any aRet( getPropertyDefault( Reference< beans::XPropertyState >( xInnerPropertySet, uno::UNO_QUERY ) ) );
82 if( xInnerPropertySet.is() )
84 Any aRelativePosition( xInnerPropertySet->getPropertyValue( "RelativePosition" ) );
85 if( !aRelativePosition.hasValue() )
86 aRet <<= true;
88 return aRet;
91 Any WrappedAutomaticPositionProperty::getPropertyDefault( const Reference< beans::XPropertyState >& /*xInnerPropertyState*/ ) const
93 Any aRet;
94 aRet <<= false;
95 return aRet;
98 namespace
100 enum
102 PROP_CHART_AUTOMATIC_POSITION = FAST_PROPERTY_ID_START_CHART_AUTOPOSITION_PROP
105 }//anonymous namespace
107 void WrappedAutomaticPositionProperties::addProperties( std::vector< Property > & rOutProperties )
109 rOutProperties.emplace_back( "AutomaticPosition",
110 PROP_CHART_AUTOMATIC_POSITION,
111 cppu::UnoType<bool>::get(),
112 beans::PropertyAttribute::BOUND
113 | beans::PropertyAttribute::MAYBEDEFAULT );
116 void WrappedAutomaticPositionProperties::addWrappedProperties( std::vector< std::unique_ptr<WrappedProperty> >& rList )
118 rList.emplace_back( new WrappedAutomaticPositionProperty() );
121 } //namespace chart::wrapper
123 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */