1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #ifndef _SD_STLPOOL_HXX
21 #define _SD_STLPOOL_HXX
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>
31 #include <cppuhelper/implbase4.hxx>
32 #include <cppuhelper/implbase7.hxx>
36 #include <stlfamily.hxx>
37 #include <stlsheet.hxx>
44 class SfxStyleSheetBase
;
46 typedef std::map
< const SdPage
*, SdStyleFamilyRef
> SdStyleFamilyMap
;
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
;
54 class SdStyleSheetPool
: public SdStyleSheetPoolBase
, public SfxListener
56 friend class SdDrawDocument
;
58 SdStyleSheetPool(SfxItemPool
const& rPool
, SdDrawDocument
* pDocument
);
60 void SetActualStyleSheet(SfxStyleSheetBase
* pActStyleSheet
) { mpActualStyleSheet
= pActStyleSheet
; }
61 SfxStyleSheetBase
* GetActualStyleSheet() { return mpActualStyleSheet
; }
63 SfxStyleSheetBase
* GetTitleSheet(const String
& rLayoutName
);
65 // Caller has to delete the list
66 void CreateOutlineSheetList(const String
& rLayoutName
, std::vector
<SfxStyleSheetBase
*> &rOutlineStyles
);
68 /** creates all layout style sheets for the givin layout name if they
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.
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 void CopyGraphicSheets(SdStyleSheetPool
& rSourcePool
, SdStyleSheetVector
& rCreatedSheets
);
84 void CopyCellSheets(SdStyleSheetPool
& rSourcePool
, SdStyleSheetVector
& rCreatedSheets
);
86 void CreatePseudosIfNecessary();
87 void UpdateStdNames();
88 static void PutNumBulletItem( SfxStyleSheetBase
* pSheet
, Font
& rBulletFont
);
89 Font
GetBulletFont() const;
91 SdDrawDocument
* GetDoc() const { return mpDoc
; }
93 static SdStyleSheetVector
CreateChildList( SdStyleSheet
* pSheet
);
97 void throwIfDisposed() throw(::com::sun::star::uno::RuntimeException
);
100 virtual OUString SAL_CALL
getImplementationName() throw(::com::sun::star::uno::RuntimeException
);
101 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) throw(::com::sun::star::uno::RuntimeException
);
102 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException
);
105 virtual ::com::sun::star::uno::Any SAL_CALL
getByName( const OUString
& aName
) throw(::com::sun::star::container::NoSuchElementException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
106 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getElementNames() throw(::com::sun::star::uno::RuntimeException
);
107 virtual sal_Bool SAL_CALL
hasByName( const OUString
& aName
) throw(::com::sun::star::uno::RuntimeException
);
110 virtual ::com::sun::star::uno::Type SAL_CALL
getElementType() throw(::com::sun::star::uno::RuntimeException
);
111 virtual sal_Bool SAL_CALL
hasElements() throw(::com::sun::star::uno::RuntimeException
);
114 virtual sal_Int32 SAL_CALL
getCount() throw(::com::sun::star::uno::RuntimeException
) ;
115 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
);
118 virtual void SAL_CALL
dispose( ) throw (::com::sun::star::uno::RuntimeException
);
119 virtual void SAL_CALL
addEventListener( const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XEventListener
>& xListener
) throw (::com::sun::star::uno::RuntimeException
);
120 virtual void SAL_CALL
removeEventListener( const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XEventListener
>& aListener
) throw (::com::sun::star::uno::RuntimeException
);
122 virtual void SAL_CALL
acquire (void) throw ();
123 virtual void SAL_CALL
release (void) throw ();
125 void CopySheets(SdStyleSheetPool
& rSourcePool
, SfxStyleFamily eFamily
);
126 void CopySheets(SdStyleSheetPool
& rSourcePool
, SfxStyleFamily eFamily
, SdStyleSheetVector
& rCreatedSheets
);
128 virtual SfxStyleSheetBase
* Create(const String
& rName
, SfxStyleFamily eFamily
, sal_uInt16 nMask
);
129 virtual SfxStyleSheetBase
* Create(const SdStyleSheet
& rStyle
);
131 using SfxStyleSheetPool::Create
;
132 virtual ~SdStyleSheetPool();
134 void AddStyleFamily( const SdPage
* pPage
);
135 void RemoveStyleFamily( const SdPage
* pPage
);
138 SfxStyleSheetBase
* mpActualStyleSheet
;
139 SdDrawDocument
* mpDoc
;
140 SdStyleFamilyRef mxGraphicFamily
;
141 SdStyleFamilyRef mxCellFamily
;
142 SdStyleFamilyMap maStyleFamilyMap
;
143 ::com::sun::star::uno::Reference
< ::com::sun::star::container::XNameAccess
> mxTableFamily
;
144 OUString msTableFamilyName
;
147 #endif // _SD_STLPOOL_HXX
149 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */