Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / inc / defltuno.hxx
blob07bfbfaadb34f9d529f213cfa64e0810fca47a51
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_SC_INC_DEFLTUNO_HXX
21 #define INCLUDED_SC_INC_DEFLTUNO_HXX
23 #include <svl/lstner.hxx>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <com/sun/star/beans/XPropertyState.hpp>
27 #include <cppuhelper/implbase.hxx>
28 #include <svl/itemprop.hxx>
30 class ScDocShell;
32 class ScDocDefaultsObj : public ::cppu::WeakImplHelper<
33 css::beans::XPropertySet,
34 css::beans::XPropertyState,
35 css::lang::XServiceInfo >,
36 public SfxListener
38 private:
39 ScDocShell* pDocShell;
40 SfxItemPropertyMap aPropertyMap;
42 void ItemsChanged();
44 public:
45 ScDocDefaultsObj(ScDocShell* pDocSh);
46 virtual ~ScDocDefaultsObj();
48 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
50 // XPropertySet
51 virtual css::uno::Reference< css::beans::XPropertySetInfo >
52 SAL_CALL getPropertySetInfo()
53 throw(css::uno::RuntimeException, std::exception) override;
54 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
55 const css::uno::Any& aValue )
56 throw(css::beans::UnknownPropertyException,
57 css::beans::PropertyVetoException,
58 css::lang::IllegalArgumentException,
59 css::lang::WrappedTargetException,
60 css::uno::RuntimeException, std::exception) override;
61 virtual css::uno::Any SAL_CALL getPropertyValue(
62 const OUString& PropertyName )
63 throw(css::beans::UnknownPropertyException,
64 css::lang::WrappedTargetException,
65 css::uno::RuntimeException, std::exception) override;
66 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
67 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener )
68 throw(css::beans::UnknownPropertyException,
69 css::lang::WrappedTargetException,
70 css::uno::RuntimeException, std::exception) override;
71 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
72 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener )
73 throw(css::beans::UnknownPropertyException,
74 css::lang::WrappedTargetException,
75 css::uno::RuntimeException, std::exception) override;
76 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
77 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
78 throw(css::beans::UnknownPropertyException,
79 css::lang::WrappedTargetException,
80 css::uno::RuntimeException, std::exception) override;
81 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
82 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
83 throw(css::beans::UnknownPropertyException,
84 css::lang::WrappedTargetException,
85 css::uno::RuntimeException, std::exception) override;
87 // XPropertyState
88 virtual css::beans::PropertyState SAL_CALL getPropertyState(
89 const OUString& PropertyName )
90 throw(css::beans::UnknownPropertyException,
91 css::uno::RuntimeException, std::exception) override;
92 virtual css::uno::Sequence< css::beans::PropertyState > SAL_CALL
93 getPropertyStates( const css::uno::Sequence< OUString >& aPropertyName )
94 throw(css::beans::UnknownPropertyException,
95 css::uno::RuntimeException, std::exception) override;
96 virtual void SAL_CALL setPropertyToDefault( const OUString& PropertyName )
97 throw(css::beans::UnknownPropertyException,
98 css::uno::RuntimeException, std::exception) override;
99 virtual css::uno::Any SAL_CALL getPropertyDefault(
100 const OUString& aPropertyName )
101 throw(css::beans::UnknownPropertyException,
102 css::lang::WrappedTargetException,
103 css::uno::RuntimeException, std::exception) override;
105 // XServiceInfo
106 virtual OUString SAL_CALL getImplementationName()
107 throw(css::uno::RuntimeException, std::exception) override;
108 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
109 throw(css::uno::RuntimeException, std::exception) override;
110 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
111 throw(css::uno::RuntimeException, std::exception) override;
114 #endif
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */