Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / inc / confuno.hxx
blob8cf6175bd9ee38ecdbe11ebc66c6976cc1783de3
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_CONFUNO_HXX
21 #define INCLUDED_SC_INC_CONFUNO_HXX
23 #include <svl/itemprop.hxx>
24 #include <svl/lstner.hxx>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/beans/XPropertySet.hpp>
27 #include <cppuhelper/implbase.hxx>
29 class ScDocShell;
31 class ScDocumentConfiguration : public cppu::WeakImplHelper<
32 css::beans::XPropertySet,
33 css::lang::XServiceInfo>,
34 public SfxListener
36 private:
37 ScDocShell* pDocShell;
38 SfxItemPropertySet aPropSet;
40 public:
41 ScDocumentConfiguration(ScDocShell* pDocShell);
42 virtual ~ScDocumentConfiguration();
44 // SfxListener
45 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
47 // XPropertySet
48 virtual css::uno::Reference< css::beans::XPropertySetInfo >
49 SAL_CALL getPropertySetInfo()
50 throw(css::uno::RuntimeException, std::exception) override;
51 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
52 const css::uno::Any& aValue )
53 throw(css::beans::UnknownPropertyException,
54 css::beans::PropertyVetoException,
55 css::lang::IllegalArgumentException,
56 css::lang::WrappedTargetException,
57 css::uno::RuntimeException, std::exception) override;
58 virtual css::uno::Any SAL_CALL getPropertyValue(
59 const OUString& PropertyName )
60 throw(css::beans::UnknownPropertyException,
61 css::lang::WrappedTargetException,
62 css::uno::RuntimeException, std::exception) override;
63 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
64 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener )
65 throw(css::beans::UnknownPropertyException,
66 css::lang::WrappedTargetException,
67 css::uno::RuntimeException, std::exception) override;
68 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
69 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener )
70 throw(css::beans::UnknownPropertyException,
71 css::lang::WrappedTargetException,
72 css::uno::RuntimeException, std::exception) override;
73 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
74 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
75 throw(css::beans::UnknownPropertyException,
76 css::lang::WrappedTargetException,
77 css::uno::RuntimeException, std::exception) override;
78 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
79 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
80 throw(css::beans::UnknownPropertyException,
81 css::lang::WrappedTargetException,
82 css::uno::RuntimeException, std::exception) override;
84 // XServiceInfo
85 virtual OUString SAL_CALL getImplementationName()
86 throw(css::uno::RuntimeException, std::exception) override;
87 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
88 throw(css::uno::RuntimeException, std::exception) override;
89 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
90 throw(css::uno::RuntimeException, std::exception) override;
93 #endif
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */