Version 7.5.1.1, tag libreoffice-7.5.1.1
[LibreOffice.git] / sc / inc / addruno.hxx
blob54c91ed6ff60688cddb3bb2e4fb8c4744634eb08
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 #pragma once
22 #include <com/sun/star/lang/XServiceInfo.hpp>
23 #include <com/sun/star/beans/XPropertySet.hpp>
24 #include <cppuhelper/implbase.hxx>
25 #include <svl/lstner.hxx>
26 #include "address.hxx"
28 #include <docsh.hxx>
30 class ScAddressConversionObj final : public ::cppu::WeakImplHelper<
31 css::beans::XPropertySet,
32 css::lang::XServiceInfo >,
33 public SfxListener
35 private:
36 ScDocShell* pDocShell;
37 ScRange aRange;
38 sal_Int32 nRefSheet;
39 bool bIsRange;
41 bool ParseUIString( const OUString& rUIString, ::formula::FormulaGrammar::AddressConvention eConv = ::formula::FormulaGrammar::CONV_OOO );
43 public:
45 ScAddressConversionObj(ScDocShell* pDocSh, bool bIsRange);
46 virtual ~ScAddressConversionObj() override;
48 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
50 // XPropertySet
51 virtual css::uno::Reference< css::beans::XPropertySetInfo >
52 SAL_CALL getPropertySetInfo() override;
53 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
54 const css::uno::Any& aValue ) override;
55 virtual css::uno::Any SAL_CALL getPropertyValue(
56 const OUString& PropertyName ) override;
57 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
58 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
59 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
60 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
61 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
62 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
63 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
64 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
66 // XServiceInfo
67 virtual OUString SAL_CALL getImplementationName() override;
68 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
69 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */