Branch libreoffice-24-8-3
[LibreOffice.git] / sc / inc / srchuno.hxx
blobe25fb30c120f072deb9b5a25ddef8c52dd9d2c27
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 <memory>
23 #include <com/sun/star/util/XReplaceDescriptor.hpp>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <svl/itemprop.hxx>
26 #include <cppuhelper/implbase.hxx>
28 class SvxSearchItem;
30 class ScCellSearchObj final : public cppu::WeakImplHelper<
31 css::util::XReplaceDescriptor,
32 css::lang::XServiceInfo >
34 private:
35 SfxItemPropertySet aPropSet;
36 std::unique_ptr<SvxSearchItem>
37 pSearchItem;
39 public:
40 ScCellSearchObj();
41 virtual ~ScCellSearchObj() override;
43 SvxSearchItem* GetSearchItem() const { return pSearchItem.get(); }
45 // XReplaceDescriptor
46 virtual OUString SAL_CALL getReplaceString() override;
47 virtual void SAL_CALL setReplaceString( const OUString& aReplaceString ) override;
49 // XSearchDescriptor
50 virtual OUString SAL_CALL getSearchString() override;
51 virtual void SAL_CALL setSearchString( const OUString& aString ) override;
53 // search/replace should be called from outside (from XSearchable)...
55 // XPropertySet
56 virtual css::uno::Reference< css::beans::XPropertySetInfo >
57 SAL_CALL getPropertySetInfo() override;
58 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
59 const css::uno::Any& aValue ) override;
60 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
61 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
62 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
63 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
64 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
65 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
66 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
67 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
68 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
70 // XServiceInfo
71 virtual OUString SAL_CALL getImplementationName() override;
72 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
73 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */