Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / svx / unopool.hxx
blob1f9431f8755d607659128dd1b28bfdb79c986ebd
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 INCLUDED_SVX_UNOPOOL_HXX
21 #define INCLUDED_SVX_UNOPOOL_HXX
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 #include <svl/itempool.hxx>
30 class SdrModel;
31 class SfxItemPool;
33 enum class SvxUnoDrawPoolDefaults {
34 Drawing, Writer
37 /** This class implements the service com.sun.star.drawing.Defaults.
38 It works on the SfxItemPool from the given model and the global
39 draw object item pool.
40 The class can work in a read only mode without a model. Derivated
41 classes can set a model on demand by overriding getModelPool().
43 class SVX_DLLPUBLIC SvxUnoDrawPool : public ::cppu::OWeakAggObject,
44 public css::lang::XServiceInfo,
45 public css::lang::XTypeProvider,
46 public comphelper::PropertySetHelper
48 public:
49 SvxUnoDrawPool(SdrModel* pModel, SvxUnoDrawPoolDefaults nServiceId);
51 /** deprecated */
52 SvxUnoDrawPool(SdrModel* pModel);
53 virtual ~SvxUnoDrawPool() noexcept override;
55 /** This returns the item pool from the given model, or the default pool if there is no model and bReadOnly is true.
56 If bReadOnly is false and there is no model the default implementation returns NULL.
58 virtual SfxItemPool* getModelPool( bool bReadOnly ) noexcept;
60 // overridden helpers from comphelper::PropertySetHelper
61 virtual void _setPropertyValues( const comphelper::PropertyMapEntry** ppEntries, const css::uno::Any* pValues ) override;
62 virtual void _getPropertyValues( const comphelper::PropertyMapEntry** ppEntries, css::uno::Any* pValue ) override;
64 virtual void _getPropertyStates( const comphelper::PropertyMapEntry** ppEntries, css::beans::PropertyState* pStates ) override;
65 virtual void _setPropertyToDefault( const comphelper::PropertyMapEntry* pEntry ) override;
66 virtual css::uno::Any _getPropertyDefault( const comphelper::PropertyMapEntry* pEntry ) override;
68 // XInterface
69 virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type & rType ) override;
70 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
71 virtual void SAL_CALL acquire() noexcept override
72 { OWeakAggObject::acquire(); }
73 virtual void SAL_CALL release() noexcept override
74 { OWeakAggObject::release(); }
76 // XTypeProvider
77 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
78 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) override;
80 // XServiceInfo
81 virtual OUString SAL_CALL getImplementationName() override;
82 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
83 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
85 protected:
86 void init();
88 /// @throws css::beans::UnknownPropertyException
89 static void getAny( SfxItemPool const * pPool, const comphelper::PropertyMapEntry* pEntry, css::uno::Any& rValue );
90 /// @throws css::beans::UnknownPropertyException
91 /// @throws css::lang::IllegalArgumentException
92 /// @throws css::uno::RuntimeException
93 virtual void putAny( SfxItemPool* pPool, const comphelper::PropertyMapEntry* pEntry, const css::uno::Any& rValue );
95 private:
96 SdrModel* mpModel;
97 rtl::Reference<SfxItemPool> mpDefaultsPool;
100 #endif
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */