LibreOffice Module chart2 (master) 1
TitleItemConverter.hxx
Go to the documentation of this file.
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#pragma once
20
21#include "ItemConverter.hxx"
22
23#include <vector>
24
25namespace com::sun::star::awt { struct Size; }
26namespace com::sun::star::lang { class XMultiServiceFactory; }
27
28class SdrModel;
29
30namespace chart::wrapper {
31
33{
34public:
36 const css::uno::Reference<css::beans::XPropertySet>& rPropertySet,
37 SfxItemPool& rItemPool, SdrModel& rDrawModel,
38 const css::uno::Reference<css::lang::XMultiServiceFactory>& xNamedPropertyContainerFactory,
39 const css::awt::Size* pRefSize );
40
41 virtual ~TitleItemConverter() override;
42
43 virtual void FillItemSet( SfxItemSet & rOutItemSet ) const override;
44 virtual bool ApplyItemSet( const SfxItemSet & rItemSet ) override;
45
46protected:
47 virtual const WhichRangesContainer& GetWhichPairs() const override;
48 virtual bool GetItemProperty( tWhichIdType nWhichId, tPropertyNameWithMemberId & rOutProperty ) const override;
49
50 virtual void FillSpecialItem( sal_uInt16 nWhichId, SfxItemSet & rOutItemSet ) const override;
51 virtual bool ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & rItemSet ) override;
52
53private:
54 std::vector< std::unique_ptr<ItemConverter> > m_aConverters;
55};
56
57}
58
59/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This class serves for conversion between properties of an XPropertySet and SfxItems in SfxItemSets.
std::pair< tPropertyNameType, tMemberIdType > tPropertyNameWithMemberId
virtual bool ApplyItemSet(const SfxItemSet &rItemSet) override
applies all properties that are results of a conversion from all items in rItemSet to the internal XP...
TitleItemConverter(const css::uno::Reference< css::beans::XPropertySet > &rPropertySet, SfxItemPool &rItemPool, SdrModel &rDrawModel, const css::uno::Reference< css::lang::XMultiServiceFactory > &xNamedPropertyContainerFactory, const css::awt::Size *pRefSize)
std::vector< std::unique_ptr< ItemConverter > > m_aConverters
virtual bool GetItemProperty(tWhichIdType nWhichId, tPropertyNameWithMemberId &rOutProperty) const override
implement this method to return a Property object for a given which id.
virtual void FillItemSet(SfxItemSet &rOutItemSet) const override
applies all properties that can be mapped to items into the given item set.
virtual bool ApplySpecialItem(sal_uInt16 nWhichId, const SfxItemSet &rItemSet) override
for items that can not be mapped directly to a property.
virtual const WhichRangesContainer & GetWhichPairs() const override
implement this method to provide an array of which-ranges
virtual void FillSpecialItem(sal_uInt16 nWhichId, SfxItemSet &rOutItemSet) const override
for items that can not be mapped directly to a property.