LOK: tilebench improvements
[LibreOffice.git] / sc / inc / srchuno.hxx
blobbd098fbfc0858999471fa603693c32e655ce081d
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_SRCHUNO_HXX
21 #define INCLUDED_SC_INC_SRCHUNO_HXX
23 #include <memory>
24 #include <com/sun/star/util/XReplaceDescriptor.hpp>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/lang/XUnoTunnel.hpp>
27 #include <svl/itemprop.hxx>
28 #include <cppuhelper/implbase.hxx>
30 class SvxSearchItem;
32 class ScCellSearchObj : public cppu::WeakImplHelper<
33 css::util::XReplaceDescriptor,
34 css::lang::XUnoTunnel,
35 css::lang::XServiceInfo >
37 private:
38 SfxItemPropertySet aPropSet;
39 std::unique_ptr<SvxSearchItem>
40 pSearchItem;
42 public:
43 ScCellSearchObj();
44 virtual ~ScCellSearchObj() override;
46 SvxSearchItem* GetSearchItem() const { return pSearchItem.get(); }
48 // XReplaceDescriptor
49 virtual OUString SAL_CALL getReplaceString() override;
50 virtual void SAL_CALL setReplaceString( const OUString& aReplaceString ) override;
52 // XSearchDescriptor
53 virtual OUString SAL_CALL getSearchString() override;
54 virtual void SAL_CALL setSearchString( const OUString& aString ) override;
56 // search/replace should be called from outside (from XSearchable)...
58 // XPropertySet
59 virtual css::uno::Reference< css::beans::XPropertySetInfo >
60 SAL_CALL getPropertySetInfo() override;
61 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
62 const css::uno::Any& aValue ) override;
63 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
64 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
65 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
66 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
67 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
68 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
69 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
70 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
71 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
73 // XUnoTunnel
74 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence<
75 sal_Int8 >& aIdentifier ) override;
77 static const css::uno::Sequence<sal_Int8>& getUnoTunnelId();
78 static ScCellSearchObj* getImplementation(const css::uno::Reference<css::util::XSearchDescriptor>& rObj);
80 // XServiceInfo
81 virtual OUString SAL_CALL getImplementationName() override;
82 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
83 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
86 #endif
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */