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_SVX_UNOPOOL_HXX
21 #define INCLUDED_SVX_UNOPOOL_HXX
22 
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/lang/XTypeProvider.hpp>
25 #include <comphelper/propertysethelper.hxx>
26 #include <cppuhelper/weakagg.hxx>
27 #include <svx/svxdllapi.h>
28 
29 class SdrModel;
30 class SfxItemPool;
31 
32 /** This class implements the service com.sun.star.drawing.Defaults.
33     It works on the SfxItemPool from the given model and the global
34     draw object item pool.
35     The class can work in a read only mode without a model. Derivated
36     classes can set a model on demand by overriding getModelPool().
37 */
38 class SVX_DLLPUBLIC SvxUnoDrawPool :    public ::cppu::OWeakAggObject,
39                         public css::lang::XServiceInfo,
40                         public css::lang::XTypeProvider,
41                         public comphelper::PropertySetHelper
42 {
43 public:
44     SvxUnoDrawPool(SdrModel* pModel, sal_Int32 nServiceId);
45 
46     /** deprecated */
47     SvxUnoDrawPool(SdrModel* pModel);
48     virtual ~SvxUnoDrawPool() throw() override;
49 
50     /** This returns the item pool from the given model, or the default pool if there is no model and bReadOnly is true.
51         If bReadOnly is false and there is no model the default implementation returns NULL.
52     */
53     virtual SfxItemPool* getModelPool( bool bReadOnly ) throw();
54 
55     // overridden helpers from comphelper::PropertySetHelper
56     virtual void _setPropertyValues( const comphelper::PropertyMapEntry** ppEntries, const css::uno::Any* pValues ) override;
57     virtual void _getPropertyValues( const comphelper::PropertyMapEntry** ppEntries, css::uno::Any* pValue ) override;
58 
59     virtual void _getPropertyStates( const comphelper::PropertyMapEntry** ppEntries, css::beans::PropertyState* pStates ) override;
60     virtual void _setPropertyToDefault( const comphelper::PropertyMapEntry* pEntry ) override;
61     virtual css::uno::Any _getPropertyDefault( const comphelper::PropertyMapEntry* pEntry ) override;
62 
63     // XInterface
64     virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type & rType ) override;
65     virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
66     virtual void SAL_CALL acquire() throw() override;
67     virtual void SAL_CALL release() throw() override;
68 
69     // XTypeProvider
70     virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes(  ) override;
71     virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId(  ) override;
72 
73     // XServiceInfo
74     virtual OUString SAL_CALL getImplementationName() override;
75     virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
76     virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
77 
78 protected:
79     void init();
80 
81     /// @throws css::beans::UnknownPropertyException
82     static void getAny( SfxItemPool const * pPool, const comphelper::PropertyMapEntry* pEntry, css::uno::Any& rValue );
83     /// @throws css::beans::UnknownPropertyException
84     /// @throws css::lang::IllegalArgumentException
85     /// @throws css::uno::RuntimeException
86     virtual void putAny( SfxItemPool* pPool, const comphelper::PropertyMapEntry* pEntry, const css::uno::Any& rValue );
87 
88 protected:
89     SdrModel* mpModel;
90     SfxItemPool* mpDefaultsPool;
91 };
92 
93 #endif
94 
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
96