/************************************************************** * * 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 _SDASITM_HXX #define _SDASITM_HXX #include #include #include #include #include #include #include #include #include #include "svx/svxdllapi.h" class SdrCustomShapeEngineItem : public SfxStringItem { public : SdrCustomShapeEngineItem(); SdrCustomShapeEngineItem( const String& rCustomShapeEngine ); }; class SdrCustomShapeDataItem : public SfxStringItem { public : SdrCustomShapeDataItem(); SdrCustomShapeDataItem( const String& rCustomShapeData ); }; class SVX_DLLPUBLIC SdrCustomShapeGeometryItem : public SfxPoolItem { public: typedef std::pair < const ::rtl::OUString, const ::rtl::OUString > PropertyPair; private: struct SVX_DLLPRIVATE PropertyEq { bool operator()( const rtl::OUString&, const rtl::OUString& ) const; }; struct SVX_DLLPRIVATE PropertyPairEq { bool operator()( const SdrCustomShapeGeometryItem::PropertyPair&, const SdrCustomShapeGeometryItem::PropertyPair& ) const; }; struct SVX_DLLPRIVATE PropertyPairHash { size_t operator()( const SdrCustomShapeGeometryItem::PropertyPair &r1 ) const; }; typedef std::hash_map < PropertyPair, sal_Int32, PropertyPairHash, PropertyPairEq > PropertyPairHashMap; typedef std::hash_map< rtl::OUString, sal_Int32, rtl::OUStringHash, PropertyEq > PropertyHashMap; PropertyHashMap aPropHashMap; PropertyPairHashMap aPropPairHashMap; com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue > aPropSeq; public : TYPEINFO(); SdrCustomShapeGeometryItem(); SdrCustomShapeGeometryItem( const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& ); SdrCustomShapeGeometryItem( SvStream& rIn, sal_uInt16 nVersion ); ~SdrCustomShapeGeometryItem(); virtual int operator==( const SfxPoolItem& ) const; virtual SfxItemPresentation GetPresentation(SfxItemPresentation ePresentation, SfxMapUnit eCoreMetric, SfxMapUnit ePresentationMetric, String &rText, const IntlWrapper * = 0) const; virtual SfxPoolItem* Create( SvStream&, sal_uInt16 nItem ) const; virtual SvStream& Store( SvStream&, sal_uInt16 nVersion ) const; virtual SfxPoolItem* Clone( SfxItemPool* pPool = NULL ) const; virtual sal_uInt16 GetVersion( sal_uInt16 nFileFormatVersion ) const; virtual sal_Bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const; virtual sal_Bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ); const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& GetGeometry() const; #ifdef SDR_ISPOOLABLE virtual int IsPoolable() const; #endif com::sun::star::uno::Any* GetPropertyValueByName( const rtl::OUString& rPropName ); com::sun::star::uno::Any* GetPropertyValueByName( const rtl::OUString& rPropName, const rtl::OUString& rPropName2 ); void SetPropertyValue( const com::sun::star::beans::PropertyValue& rPropVal ); void SetPropertyValue( const rtl::OUString& rSequenceName, const com::sun::star::beans::PropertyValue& rPropVal ); void ClearPropertyValue( const rtl::OUString& rPropertyName ); void ClearPropertyValue( const rtl::OUString& rSequenceName, const rtl::OUString& rPropertyName ); }; class SdrCustomShapeReplacementURLItem : public SfxStringItem { public : SdrCustomShapeReplacementURLItem(); SdrCustomShapeReplacementURLItem( const String& rCustomShapeReplacementURL ); }; //--------------------------- // class SdrTextWordWrapItem //--------------------------- class SdrTextWordWrapItem : public SdrOnOffItem { public: SdrTextWordWrapItem( sal_Bool bAuto = sal_False ): SdrOnOffItem( SDRATTR_TEXT_WORDWRAP, bAuto ) {} SdrTextWordWrapItem( SvStream& rIn ) : SdrOnOffItem( SDRATTR_TEXT_WORDWRAP, rIn ) {} }; //------------------------------- // class SdrTextAutoGrowSizeItem //------------------------------- class SdrTextAutoGrowSizeItem : public SdrOnOffItem { public: SdrTextAutoGrowSizeItem( sal_Bool bAuto = sal_False ): SdrOnOffItem( SDRATTR_TEXT_AUTOGROWSIZE, bAuto ) {} SdrTextAutoGrowSizeItem( SvStream& rIn ) : SdrOnOffItem( SDRATTR_TEXT_AUTOGROWSIZE, rIn ) {} }; // some useful inline methods inline bool SdrCustomShapeGeometryItem::PropertyEq::operator()( const rtl::OUString& r1, const rtl::OUString& r2 ) const { return r1.equals( r2 ); } inline bool SdrCustomShapeGeometryItem::PropertyPairEq::operator()( const SdrCustomShapeGeometryItem::PropertyPair& r1, const SdrCustomShapeGeometryItem::PropertyPair& r2 ) const { return ( r1.first.equals( r2.first ) ) && ( r1.second.equals( r2.second ) ); } inline size_t SdrCustomShapeGeometryItem::PropertyPairHash::operator()( const SdrCustomShapeGeometryItem::PropertyPair &r1 ) const { return (size_t)r1.first.hashCode() + r1.second.hashCode(); }; #endif