Teach symstore more duplicated DLLs
[LibreOffice.git] / xmloff / source / chart / ColorPropertySet.hxx
blob739ed50315bfc0a750d87447f22a443c15425b4f
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 #ifndef XMLOFF_COLORPROPERTYSET_HXX
20 #define XMLOFF_COLORPROPERTYSET_HXX
22 #include <cppuhelper/implbase.hxx>
23 #include <tools/color.hxx>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <com/sun/star/beans/XPropertyState.hpp>
28 namespace xmloff
30 namespace chart
33 class ColorPropertySet : public ::cppu::WeakImplHelper<
34 css::beans::XPropertySet,
35 css::beans::XPropertyState >
37 public:
38 explicit ColorPropertySet( sal_Int32 nColor );
39 virtual ~ColorPropertySet() override;
41 protected:
42 // ____ XPropertySet ____
43 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override;
44 virtual void SAL_CALL setPropertyValue(
45 const OUString& aPropertyName,
46 const css::uno::Any& aValue ) override;
47 virtual css::uno::Any SAL_CALL getPropertyValue(
48 const OUString& PropertyName ) override;
49 virtual void SAL_CALL addPropertyChangeListener(
50 const OUString& aPropertyName,
51 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
52 virtual void SAL_CALL removePropertyChangeListener(
53 const OUString& aPropertyName,
54 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
55 virtual void SAL_CALL addVetoableChangeListener(
56 const OUString& PropertyName,
57 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
58 virtual void SAL_CALL removeVetoableChangeListener(
59 const OUString& PropertyName,
60 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
62 // ____ XPropertyState ____
63 virtual css::beans::PropertyState SAL_CALL getPropertyState(
64 const OUString& PropertyName ) override;
65 virtual css::uno::Sequence< css::beans::PropertyState > SAL_CALL getPropertyStates(
66 const css::uno::Sequence< OUString >& aPropertyName ) override;
67 virtual void SAL_CALL setPropertyToDefault(
68 const OUString& PropertyName ) override;
69 virtual css::uno::Any SAL_CALL getPropertyDefault(
70 const OUString& aPropertyName ) override;
72 private:
73 css::uno::Reference< css::beans::XPropertySetInfo > m_xInfo;
74 static constexpr OUStringLiteral g_aColorPropName = "FillColor";
75 Color m_nColor;
76 Color const m_nDefaultColor;
79 } // namespace chart
80 } // namespace xmloff
82 // XMLOFF_COLORPROPERTYSET_HXX
83 #endif
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */