tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / chart2 / source / controller / inc / TextLabelItemConverter.hxx
blobcb5406cf6a01d19844711404f3e5672652ef61a4
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 .
19 #pragma once
21 #include "ItemConverter.hxx"
23 #include <com/sun/star/awt/Size.hpp>
24 #include <com/sun/star/uno/Sequence.h>
25 #include <rtl/ref.hxx>
26 #include <optional>
27 #include <vector>
29 namespace com::sun::star::chart2 { class XDataSeries; }
30 namespace com::sun::star::frame { class XModel; }
31 namespace chart { class ChartModel; }
32 namespace chart { class DataSeries; }
34 namespace chart::wrapper {
36 class TextLabelItemConverter final : public ItemConverter
38 public:
39 TextLabelItemConverter(
40 const rtl::Reference<::chart::ChartModel>& xChartModel,
41 const css::uno::Reference<css::beans::XPropertySet>& rPropertySet,
42 const rtl::Reference<::chart::DataSeries>& xSeries,
43 SfxItemPool& rItemPool,
44 const std::optional<css::awt::Size>& pRefSize,
45 bool bDataSeries,
46 sal_Int32 nNumberFormat,
47 sal_Int32 nPercentNumberFormat );
49 virtual ~TextLabelItemConverter() override;
51 virtual void FillItemSet( SfxItemSet & rOutItemSet ) const override;
52 virtual bool ApplyItemSet( const SfxItemSet & rItemSet ) override;
54 protected:
55 virtual const WhichRangesContainer& GetWhichPairs() const override;
56 virtual bool GetItemProperty( tWhichIdType nWhichId, tPropertyNameWithMemberId & rOutProperty ) const override;
58 virtual void FillSpecialItem( sal_uInt16 nWhichId, SfxItemSet & rOutItemSet ) const override;
59 virtual bool ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & rItemSet ) override;
61 private:
62 std::vector<std::unique_ptr<ItemConverter>> maConverters;
63 sal_Int32 mnNumberFormat;
64 sal_Int32 mnPercentNumberFormat;
65 css::uno::Sequence<sal_Int32> maAvailableLabelPlacements;
67 bool mbDataSeries:1;
68 bool mbForbidPercentValue:1;
70 rtl::Reference<::chart::DataSeries> m_xSeries;
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */