LibreOffice Module sc (master) 1
srchuno.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <memory>
23#include <com/sun/star/util/XReplaceDescriptor.hpp>
24#include <com/sun/star/lang/XServiceInfo.hpp>
25#include <svl/itemprop.hxx>
28
29class SvxSearchItem;
30
31class ScCellSearchObj final : public cppu::WeakImplHelper<
32 css::util::XReplaceDescriptor,
33 css::lang::XServiceInfo >
34{
35private:
37 std::unique_ptr<SvxSearchItem>
39
40public:
42 virtual ~ScCellSearchObj() override;
43
44 SvxSearchItem* GetSearchItem() const { return pSearchItem.get(); }
45
46 // XReplaceDescriptor
47 virtual OUString SAL_CALL getReplaceString() override;
48 virtual void SAL_CALL setReplaceString( const OUString& aReplaceString ) override;
49
50 // XSearchDescriptor
51 virtual OUString SAL_CALL getSearchString() override;
52 virtual void SAL_CALL setSearchString( const OUString& aString ) override;
53
54 // search/replace should be called from outside (from XSearchable)...
55
56 // XPropertySet
57 virtual css::uno::Reference< css::beans::XPropertySetInfo >
58 SAL_CALL getPropertySetInfo() override;
59 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
60 const css::uno::Any& aValue ) override;
61 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
62 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
63 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
64 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
65 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
66 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
67 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
68 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
69 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
70
71 // XServiceInfo
72 virtual OUString SAL_CALL getImplementationName() override;
73 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
74 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
75};
76
77/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual ~ScCellSearchObj() override
Definition: srchuno.cxx:85
virtual OUString SAL_CALL getReplaceString() override
Definition: srchuno.cxx:105
virtual void SAL_CALL removeVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
virtual void SAL_CALL addPropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &xListener) override
std::unique_ptr< SvxSearchItem > pSearchItem
Definition: srchuno.hxx:38
virtual void SAL_CALL removePropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &aListener) override
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: srchuno.cxx:119
virtual OUString SAL_CALL getImplementationName() override
Definition: srchuno.cxx:177
virtual void SAL_CALL setReplaceString(const OUString &aReplaceString) override
Definition: srchuno.cxx:111
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString &PropertyName) override
Definition: srchuno.cxx:149
SvxSearchItem * GetSearchItem() const
Definition: srchuno.hxx:44
virtual void SAL_CALL setPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue) override
Definition: srchuno.cxx:127
SfxItemPropertySet aPropSet
Definition: srchuno.hxx:36
virtual void SAL_CALL setSearchString(const OUString &aString) override
Definition: srchuno.cxx:97
virtual void SAL_CALL addVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
virtual OUString SAL_CALL getSearchString() override
Definition: srchuno.cxx:91
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
Definition: srchuno.cxx:182
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: srchuno.cxx:187
unsigned char sal_Bool