blob: 0c182e7453a874f9379e955355e92e526ad23b12 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef _CHART2_PROPERTYMAPPER_HXX
#define _CHART2_PROPERTYMAPPER_HXX
#include <comphelper/InlineContainer.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/drawing/XShape.hpp>
//.............................................................................
namespace chart
{
//.............................................................................
//-----------------------------------------------------------------------------
/**
*/
typedef ::std::map< ::rtl::OUString, ::rtl::OUString > tPropertyNameMap;
typedef ::comphelper::MakeMap< ::rtl::OUString, ::rtl::OUString > tMakePropertyNameMap;
typedef ::std::map< ::rtl::OUString, ::com::sun::star::uno::Any > tPropertyNameValueMap;
typedef ::comphelper::MakeMap< ::rtl::OUString, ::com::sun::star::uno::Any > tMakePropertyNameValueMap;
typedef ::com::sun::star::uno::Sequence< rtl::OUString > tNameSequence;
typedef ::comphelper::MakeSequence< rtl::OUString > tMakeNameSequence;
typedef ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > tAnySequence;
typedef ::comphelper::MakeSequence< ::com::sun::star::uno::Any > tMakeAnySequence;
class PropertyMapper
{
public:
static void setMappedProperties(
const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet >& xTarget
, const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet >& xSource
, const tPropertyNameMap& rMap
, tPropertyNameValueMap* pOverwriteMap=0 );
static void getValueMap(
tPropertyNameValueMap& rValueMap
, const tPropertyNameMap& rNameMap
, const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet >& xSourceProp
);
static void getMultiPropertyLists(
tNameSequence& rNames
, tAnySequence& rValues
, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xProp
, const tPropertyNameMap& rMap
);
static void getMultiPropertyListsFromValueMap(
tNameSequence& rNames
, tAnySequence& rValues
, const tPropertyNameValueMap& rValueMap
);
static ::com::sun::star::uno::Any*
getValuePointer( tAnySequence& rPropValues
, const tNameSequence& rPropNames
, const rtl::OUString& rPropName );
static ::com::sun::star::uno::Any*
getValuePointerForLimitedSpace( tAnySequence& rPropValues
, const tNameSequence& rPropNames
, bool bLimitedHeight );
static void setMultiProperties(
const tNameSequence& rNames
, const tAnySequence& rValues
, const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet >& xTarget );
static const tMakePropertyNameMap& getPropertyNameMapForCharacterProperties();
static const tMakePropertyNameMap& getPropertyNameMapForParagraphProperties();
static const tMakePropertyNameMap& getPropertyNameMapForFillProperties();
static const tMakePropertyNameMap& getPropertyNameMapForLineProperties();
static const tMakePropertyNameMap& getPropertyNameMapForFillAndLineProperties();
static const tMakePropertyNameMap& getPropertyNameMapForTextShapeProperties();
static const tMakePropertyNameMap& getPropertyNameMapForFilledSeriesProperties();
static const tMakePropertyNameMap& getPropertyNameMapForLineSeriesProperties();
static void getTextLabelMultiPropertyLists(
const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet >& xSourceProp
, tNameSequence& rPropNames, tAnySequence& rPropValues
, bool bName=true
, sal_Int32 nLimitedSpace=-1
, bool bLimitedHeight=false );
/** adds line-, fill- and character properties and sets some suitable
defaults for auto-grow properties
*/
static void getPreparedTextShapePropertyLists(
const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertySet >& xSourceProp
, tNameSequence& rPropNames
, tAnySequence& rPropValues );
};
//.............................................................................
} //namespace chart
//.............................................................................
#endif