LCOV - code coverage report
Current view: top level - libreoffice/sd/inc - stlpool.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 3 33.3 %
Date: 2012-12-17 Functions: 1 3 33.3 %
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 _SD_STLPOOL_HXX
      21             : #define _SD_STLPOOL_HXX
      22             : 
      23             : #include <com/sun/star/lang/XServiceInfo.hpp>
      24             : #include <com/sun/star/container/XIndexAccess.hpp>
      25             : #include <com/sun/star/container/XNameContainer.hpp>
      26             : #include <com/sun/star/container/XNamed.hpp>
      27             : #include <com/sun/star/beans/XPropertySet.hpp>
      28             : #include <com/sun/star/lang/XComponent.hpp>
      29             : #include <com/sun/star/lang/XSingleServiceFactory.hpp>
      30             : 
      31             : #include <cppuhelper/implbase4.hxx>
      32             : #include <cppuhelper/implbase7.hxx>
      33             : #include <map>
      34             : #include <vector>
      35             : 
      36             : #include <stlfamily.hxx>
      37             : #include <stlsheet.hxx>
      38             : 
      39             : #include <sddllapi.h>
      40             : 
      41             : class SdStyleSheet;
      42             : class SdDrawDocument;
      43             : class SdPage;
      44             : class SfxStyleSheetBase;
      45             : 
      46             : typedef std::map< const SdPage*, SdStyleFamilyRef > SdStyleFamilyMap;
      47             : 
      48             : typedef ::cppu::ImplInheritanceHelper4< SfxStyleSheetPool,
      49             :                                         ::com::sun::star::lang::XServiceInfo,
      50             :                                         ::com::sun::star::container::XIndexAccess,
      51             :                                         ::com::sun::star::container::XNameAccess,
      52             :                                         ::com::sun::star::lang::XComponent > SdStyleSheetPoolBase;
      53             : 
      54             : class SdStyleSheetPool : public SdStyleSheetPoolBase, public SfxListener
      55             : {
      56             :     friend class SdDrawDocument;
      57             : public:
      58             :                         SdStyleSheetPool(SfxItemPool const& rPool, SdDrawDocument* pDocument);
      59             : 
      60           0 :     void                SetActualStyleSheet(SfxStyleSheetBase* pActStyleSheet)  { mpActualStyleSheet = pActStyleSheet; }
      61           0 :     SfxStyleSheetBase*  GetActualStyleSheet()                                   { return mpActualStyleSheet; }
      62             : 
      63             :     SfxStyleSheetBase*  GetTitleSheet(const String& rLayoutName);
      64             : 
      65             :                         // Caller muss Liste loeschen
      66             :     void                CreateOutlineSheetList(const String& rLayoutName, std::vector<SfxStyleSheetBase*> &rOutlineStyles);
      67             : 
      68             :     /** creates all layout style sheets for the givin layout name if they
      69             :         don't exist yet.
      70             : 
      71             :         @param rLayoutName  Must be the name of a master page
      72             :         @param bCheck       If set to true, the debug version will assert if a style
      73             :                             had to be created. This is used to assert errors in documents
      74             :                             when styles are missing.
      75             :     */
      76             :     SD_DLLPUBLIC void                CreateLayoutStyleSheets(const String& rLayoutName, sal_Bool bCheck = sal_False );
      77             :     void                CreateLayoutSheetNames(const String& rLayoutName, std::vector<String> &aNameList) const;
      78             :     void                CreateLayoutSheetList(const String& rLayoutName, SdStyleSheetVector& rLayoutSheets);
      79             :     void                CopyLayoutSheets(const String& rLayoutName, SdStyleSheetPool& rSourcePool, SdStyleSheetVector& rCreatedSheets );
      80             :     void                CopyGraphicSheets(SdStyleSheetPool& rSourcePool);
      81             :     void                CopyCellSheets(SdStyleSheetPool& rSourcePool);
      82             :     void                CopyTableStyles(SdStyleSheetPool& rSourcePool);
      83             : 
      84             :     void                CreatePseudosIfNecessary();
      85             :     void                UpdateStdNames();
      86             :     static void         PutNumBulletItem( SfxStyleSheetBase* pSheet, Font& rBulletFont );
      87             :     Font                GetBulletFont() const;
      88             : 
      89        2152 :     SdDrawDocument*     GetDoc() const { return mpDoc; }
      90             : 
      91             :     static  SdStyleSheetVector CreateChildList( SdStyleSheet* pSheet );
      92             : 
      93             : 
      94             : public:
      95             :     void throwIfDisposed() throw(::com::sun::star::uno::RuntimeException);
      96             : 
      97             :     // XServiceInfo
      98             :     virtual ::rtl::OUString SAL_CALL getImplementationName() throw(::com::sun::star::uno::RuntimeException);
      99             :     virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
     100             :     virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
     101             : 
     102             :     // XNameAccess
     103             :     virtual ::com::sun::star::uno::Any SAL_CALL getByName( const ::rtl::OUString& aName ) throw(::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
     104             :     virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames() throw(::com::sun::star::uno::RuntimeException);
     105             :     virtual sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName ) throw(::com::sun::star::uno::RuntimeException);
     106             : 
     107             :     // XElementAccess
     108             :     virtual ::com::sun::star::uno::Type SAL_CALL getElementType() throw(::com::sun::star::uno::RuntimeException);
     109             :     virtual sal_Bool SAL_CALL hasElements() throw(::com::sun::star::uno::RuntimeException);
     110             : 
     111             :     // XIndexAccess
     112             :     virtual sal_Int32 SAL_CALL getCount() throw(::com::sun::star::uno::RuntimeException) ;
     113             :     virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw(::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
     114             : 
     115             :     // XComponent
     116             :     virtual void SAL_CALL dispose(  ) throw (::com::sun::star::uno::RuntimeException);
     117             :     virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
     118             :     virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
     119             : 
     120             :     virtual void SAL_CALL acquire (void) throw ();
     121             :     virtual void SAL_CALL release (void) throw ();
     122             : protected:
     123             :     void CopySheets(SdStyleSheetPool& rSourcePool, SfxStyleFamily eFamily );
     124             : 
     125             :     virtual SfxStyleSheetBase* Create(const String& rName, SfxStyleFamily eFamily, sal_uInt16 nMask);
     126             :     virtual SfxStyleSheetBase* Create(const SdStyleSheet& rStyle);
     127             : 
     128             :     using  SfxStyleSheetPool::Create;
     129             :     virtual ~SdStyleSheetPool();
     130             : 
     131             :     void AddStyleFamily( const SdPage* pPage );
     132             :     void RemoveStyleFamily( const SdPage* pPage );
     133             : 
     134             : private:
     135             :     SfxStyleSheetBase*      mpActualStyleSheet;
     136             :     SdDrawDocument*         mpDoc;
     137             :     SdStyleFamilyRef        mxGraphicFamily;
     138             :     SdStyleFamilyRef        mxCellFamily;
     139             :     SdStyleFamilyMap        maStyleFamilyMap;
     140             :     ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > mxTableFamily;
     141             :     rtl::OUString           msTableFamilyName;
     142             : };
     143             : 
     144             : #endif     // _SD_STLPOOL_HXX
     145             : 
     146             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10