LibreOffice Module sw (master) 1
unosrch.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#ifndef INCLUDED_SW_INC_UNOSRCH_HXX
20#define INCLUDED_SW_INC_UNOSRCH_HXX
21
22#include <com/sun/star/util/XPropertyReplace.hpp>
23#include <com/sun/star/lang/XServiceInfo.hpp>
25#include <rtl/ustring.hxx>
26#include <memory>
27
30class SfxItemSet;
31
32namespace i18nutil {
33 struct SearchOptions2;
34}
35
36class SwXTextSearch final : public cppu::WeakImplHelper
37<
38 css::util::XPropertyReplace,
39 css::lang::XServiceInfo
40>
41{
42 friend class SwXTextDocument;
43
44 OUString m_sSearchText;
46
47 std::unique_ptr<SwSearchProperties_Impl> m_pSearchProperties;
48 std::unique_ptr<SwSearchProperties_Impl> m_pReplaceProperties;
49
51 bool m_bAll : 1;
52 bool m_bWord : 1;
53 bool m_bBack : 1;
54 bool m_bExpr : 1;
55 bool m_bCase : 1;
56 bool m_bStyles:1;
57 bool m_bSimilarity : 1;
58 bool m_bLevRelax :1;
59 sal_Int16 m_nLevExchange;
60 sal_Int16 m_nLevAdd;
61 sal_Int16 m_nLevRemove;
62
64
65 virtual ~SwXTextSearch() override;
66public:
68
69 //XSearchDescriptor
70 virtual OUString SAL_CALL getSearchString( ) override;
71 virtual void SAL_CALL setSearchString( const OUString& aString ) override;
72
73 //XReplaceDescriptor
74 virtual OUString SAL_CALL getReplaceString() override;
75 virtual void SAL_CALL setReplaceString(const OUString& aReplaceString) override;
76
77 //XPropertySet
78 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override;
79 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
80 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
81 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
82 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
83 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
84 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
85
86 //XPropertyReplace
87 virtual sal_Bool SAL_CALL getValueSearch() override;
88 virtual void SAL_CALL setValueSearch(sal_Bool ValueSearch_) override;
89 virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getSearchAttributes() override;
90 virtual void SAL_CALL setSearchAttributes(const css::uno::Sequence< css::beans::PropertyValue >& aSearchAttribs) override;
91 virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getReplaceAttributes() override;
92 virtual void SAL_CALL setReplaceAttributes(const css::uno::Sequence< css::beans::PropertyValue >& aSearchAttribs) override;
93
94 //XServiceInfo
95 virtual OUString SAL_CALL getImplementationName() override;
96 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
97 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
98
99 void FillSearchItemSet(SfxItemSet& rSet) const;
100 void FillReplaceItemSet(SfxItemSet& rSet) const;
101
102 bool HasSearchAttributes() const;
103 bool HasReplaceAttributes() const;
104
105 void FillSearchOptions( i18nutil::SearchOptions2& rSearchOpt ) const;
106};
107
108#endif
109
110/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
bool m_bStyles
Definition: unosrch.hxx:56
sal_Int16 m_nLevAdd
Definition: unosrch.hxx:60
void FillSearchItemSet(SfxItemSet &rSet) const
Definition: unosrch.cxx:533
void FillSearchOptions(i18nutil::SearchOptions2 &rSearchOpt) const
Definition: unosrch.cxx:568
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: unosrch.cxx:563
virtual OUString SAL_CALL getImplementationName() override
Definition: unosrch.cxx:553
virtual void SAL_CALL setPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue) override
Definition: unosrch.cxx:415
virtual void SAL_CALL addVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
Definition: unosrch.cxx:491
virtual void SAL_CALL addPropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &xListener) override
Definition: unosrch.cxx:481
bool m_bBack
Definition: unosrch.hxx:53
bool m_bSimilarity
Definition: unosrch.hxx:57
virtual OUString SAL_CALL getSearchString() override
Definition: unosrch.cxx:385
sal_Int16 m_nLevExchange
Definition: unosrch.hxx:59
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: unosrch.cxx:409
void FillReplaceItemSet(SfxItemSet &rSet) const
Definition: unosrch.cxx:538
virtual ~SwXTextSearch() override
Definition: unosrch.cxx:375
bool HasReplaceAttributes() const
Definition: unosrch.cxx:548
bool m_bExpr
Definition: unosrch.hxx:54
virtual sal_Bool SAL_CALL getValueSearch() override
Definition: unosrch.cxx:501
virtual void SAL_CALL setValueSearch(sal_Bool ValueSearch_) override
Definition: unosrch.cxx:507
OUString m_sReplaceText
Definition: unosrch.hxx:45
virtual void SAL_CALL removeVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
Definition: unosrch.cxx:496
bool m_bCase
Definition: unosrch.hxx:55
bool HasSearchAttributes() const
Definition: unosrch.cxx:543
virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getSearchAttributes() override
Definition: unosrch.cxx:513
bool m_bWord
Definition: unosrch.hxx:52
std::unique_ptr< SwSearchProperties_Impl > m_pSearchProperties
Definition: unosrch.hxx:47
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
Definition: unosrch.cxx:558
virtual void SAL_CALL setSearchAttributes(const css::uno::Sequence< css::beans::PropertyValue > &aSearchAttribs) override
Definition: unosrch.cxx:518
virtual OUString SAL_CALL getReplaceString() override
Definition: unosrch.cxx:397
sal_Int16 m_nLevRemove
Definition: unosrch.hxx:61
bool m_bLevRelax
Definition: unosrch.hxx:58
std::unique_ptr< SwSearchProperties_Impl > m_pReplaceProperties
Definition: unosrch.hxx:48
virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getReplaceAttributes() override
Definition: unosrch.cxx:523
const SfxItemPropertySet * m_pPropSet
Definition: unosrch.hxx:50
virtual void SAL_CALL setSearchString(const OUString &aString) override
Definition: unosrch.cxx:391
virtual void SAL_CALL setReplaceString(const OUString &aReplaceString) override
Definition: unosrch.cxx:403
bool m_bIsValueSearch
Definition: unosrch.hxx:63
virtual void SAL_CALL removePropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &aListener) override
Definition: unosrch.cxx:486
virtual void SAL_CALL setReplaceAttributes(const css::uno::Sequence< css::beans::PropertyValue > &aSearchAttribs) override
Definition: unosrch.cxx:528
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString &PropertyName) override
Definition: unosrch.cxx:445
OUString m_sSearchText
Definition: unosrch.hxx:44
unsigned char sal_Bool