LCOV - code coverage report
Current view: top level - include/editeng - unoipset.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 2 2 100.0 %
Date: 2014-04-11 Functions: 2 2 100.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             : #ifndef INCLUDED_EDITENG_UNOIPSET_HXX
      21             : #define INCLUDED_EDITENG_UNOIPSET_HXX
      22             : 
      23             : #include <com/sun/star/beans/XPropertySetInfo.hpp>
      24             : #include <com/sun/star/beans/XPropertySet.hpp>
      25             : #include <editeng/editengdllapi.h>
      26             : #include <svl/itemprop.hxx>
      27             : #include <vector>
      28             : 
      29             : class SdrItemPool;
      30             : class SfxItemSet;
      31             : class SvxShape;
      32             : struct SvxIDPropertyCombine;
      33             : 
      34             : #define SFX_METRIC_ITEM                         (0x40)
      35             : 
      36             : class EDITENG_DLLPUBLIC SvxItemPropertySet
      37             : {
      38             :     SfxItemPropertyMap          m_aPropertyMap;
      39             :     mutable com::sun::star::uno::Reference<com::sun::star::beans::XPropertySetInfo> m_xInfo;
      40             :     const SfxItemPropertyMapEntry*  _pMap;
      41             :     ::std::vector< SvxIDPropertyCombine* > aCombineList;
      42             :     bool                            mbConvertTwips;
      43             :     SfxItemPool&                    mrItemPool;
      44             : 
      45             : public:
      46             :     SvxItemPropertySet( const SfxItemPropertyMapEntry *pMap, SfxItemPool& rPool, bool bConvertTwips = false );
      47             :     ~SvxItemPropertySet();
      48             : 
      49             :     // Methods, which work directly with the ItemSet
      50             :     ::com::sun::star::uno::Any getPropertyValue( const SfxItemPropertySimpleEntry* pMap, const SfxItemSet& rSet, bool bSearchInParent, bool bDontConvertNegativeValues ) const;
      51             :     void setPropertyValue( const SfxItemPropertySimpleEntry* pMap, const ::com::sun::star::uno::Any& rVal, SfxItemSet& rSet, bool bDontConvertNegativeValues ) const;
      52             : 
      53             :     // Methods that use Any instead
      54             :     ::com::sun::star::uno::Any getPropertyValue( const SfxItemPropertySimpleEntry* pMap ) const;
      55             :     void setPropertyValue( const SfxItemPropertySimpleEntry* pMap, const ::com::sun::star::uno::Any& rVal ) const;
      56             : 
      57       57397 :     bool AreThereOwnUsrAnys() const { return ! aCombineList.empty(); }
      58             :     ::com::sun::star::uno::Any* GetUsrAnyForID(sal_uInt16 nWID) const;
      59             :     void AddUsrAnyForID(const ::com::sun::star::uno::Any& rAny, sal_uInt16 nWID);
      60             :     void ClearAllUsrAny();
      61             : 
      62             :     com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > getPropertySetInfo() const;
      63             :     const SfxItemPropertyMapEntry* getPropertyMapEntries() const {return _pMap;}
      64        1330 :     const SfxItemPropertyMap* getPropertyMap()const { return &m_aPropertyMap;}
      65             :     const SfxItemPropertySimpleEntry* getPropertyMapEntry(const OUString &rName) const;
      66             : 
      67             :     static com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo > getPropertySetInfo( const SfxItemPropertyMapEntry* pMap );
      68             : };
      69             : 
      70             : /** converts the given any with a metric to 100th/mm if needed */
      71             : EDITENG_DLLPUBLIC void SvxUnoConvertToMM( const SfxMapUnit eSourceMapUnit, com::sun::star::uno::Any & rMetric ) throw();
      72             : 
      73             : /** converts the given any with a metric from 100th/mm to the given metric if needed */
      74             : EDITENG_DLLPUBLIC void SvxUnoConvertFromMM( const SfxMapUnit eDestinationMapUnit, com::sun::star::uno::Any & rMetric ) throw();
      75             : 
      76             : #endif // INCLUDED_EDITENG_UNOIPSET_HXX
      77             : 
      78             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10