LibreOffice Module xmloff (master) 1
ColorPropertySet.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#ifndef XMLOFF_COLORPROPERTYSET_HXX
20#define XMLOFF_COLORPROPERTYSET_HXX
21
23#include <tools/color.hxx>
24
25#include <com/sun/star/beans/XPropertySet.hpp>
26#include <com/sun/star/beans/XPropertyState.hpp>
27
28namespace xmloff::chart
29{
30
31class ColorPropertySet : public ::cppu::WeakImplHelper<
32 css::beans::XPropertySet,
33 css::beans::XPropertyState >
34{
35public:
36 explicit ColorPropertySet( ::Color nColor );
37 virtual ~ColorPropertySet() override;
38
39protected:
40 // ____ XPropertySet ____
41 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override;
42 virtual void SAL_CALL setPropertyValue(
43 const OUString& aPropertyName,
44 const css::uno::Any& aValue ) override;
45 virtual css::uno::Any SAL_CALL getPropertyValue(
46 const OUString& PropertyName ) override;
47 virtual void SAL_CALL addPropertyChangeListener(
48 const OUString& aPropertyName,
49 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
50 virtual void SAL_CALL removePropertyChangeListener(
51 const OUString& aPropertyName,
52 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
53 virtual void SAL_CALL addVetoableChangeListener(
54 const OUString& PropertyName,
55 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
56 virtual void SAL_CALL removeVetoableChangeListener(
57 const OUString& PropertyName,
58 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
59
60 // ____ XPropertyState ____
61 virtual css::beans::PropertyState SAL_CALL getPropertyState(
62 const OUString& PropertyName ) override;
63 virtual css::uno::Sequence< css::beans::PropertyState > SAL_CALL getPropertyStates(
64 const css::uno::Sequence< OUString >& aPropertyName ) override;
65 virtual void SAL_CALL setPropertyToDefault(
66 const OUString& PropertyName ) override;
67 virtual css::uno::Any SAL_CALL getPropertyDefault(
68 const OUString& aPropertyName ) override;
69
70private:
71 css::uno::Reference< css::beans::XPropertySetInfo > m_xInfo;
72 static constexpr OUStringLiteral g_aColorPropName = u"FillColor";
75};
76
77} // namespace xmloff::chart
78
79// XMLOFF_COLORPROPERTYSET_HXX
80#endif
81
82/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString &PropertyName) override
virtual void SAL_CALL addVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
virtual void SAL_CALL removeVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
virtual void SAL_CALL setPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue) override
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
css::uno::Reference< css::beans::XPropertySetInfo > m_xInfo
static constexpr OUStringLiteral g_aColorPropName
virtual css::beans::PropertyState SAL_CALL getPropertyState(const OUString &PropertyName) override
virtual void SAL_CALL setPropertyToDefault(const OUString &PropertyName) override
virtual css::uno::Sequence< css::beans::PropertyState > SAL_CALL getPropertyStates(const css::uno::Sequence< OUString > &aPropertyName) override
virtual css::uno::Any SAL_CALL getPropertyDefault(const OUString &aPropertyName) override
virtual void SAL_CALL removePropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &aListener) override
virtual void SAL_CALL addPropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &xListener) override
float u