1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <com/sun/star/util/XPropertyReplace.hpp>
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/lang/XUnoTunnel.hpp>
25 #include <cppuhelper/implbase3.hxx> // helper for implementations
26 #include <tools/string.hxx>
28 class SfxItemPropertySet
;
29 class SwXTextDocument
;
30 class SwSearchProperties_Impl
;
33 namespace com
{namespace sun
{namespace star
{namespace util
{
38 class SwXTextSearch
: public cppu::WeakImplHelper3
40 ::com::sun::star::util::XPropertyReplace
,
41 ::com::sun::star::lang::XServiceInfo
,
42 ::com::sun::star::lang::XUnoTunnel
45 friend class SwXTextDocument
;
50 SwSearchProperties_Impl
* pSearchProperties
;
51 SwSearchProperties_Impl
* pReplaceProperties
;
54 const SfxItemPropertySet
* m_pPropSet
;
61 sal_Bool bSimilarity
: 1;
62 sal_Bool bLevRelax
:1;
63 sal_Int16 nLevExchange
;
67 sal_Bool bIsValueSearch
:1;
69 virtual ~SwXTextSearch();
75 static const ::com::sun::star::uno::Sequence
< sal_Int8
> & getUnoTunnelId();
78 virtual sal_Int64 SAL_CALL
getSomething( const ::com::sun::star::uno::Sequence
< sal_Int8
>& aIdentifier
) throw(::com::sun::star::uno::RuntimeException
);
81 virtual OUString SAL_CALL
getSearchString( ) throw(::com::sun::star::uno::RuntimeException
);
82 virtual void SAL_CALL
setSearchString( const OUString
& aString
) throw(::com::sun::star::uno::RuntimeException
);
85 virtual OUString SAL_CALL
getReplaceString(void) throw( ::com::sun::star::uno::RuntimeException
);
86 virtual void SAL_CALL
setReplaceString(const OUString
& aReplaceString
) throw( ::com::sun::star::uno::RuntimeException
);
89 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySetInfo
> SAL_CALL
getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException
);
90 virtual void SAL_CALL
setPropertyValue( const OUString
& aPropertyName
, const ::com::sun::star::uno::Any
& aValue
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::beans::PropertyVetoException
, ::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
91 virtual ::com::sun::star::uno::Any SAL_CALL
getPropertyValue( const OUString
& PropertyName
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
92 virtual void SAL_CALL
addPropertyChangeListener( const OUString
& aPropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertyChangeListener
>& xListener
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
93 virtual void SAL_CALL
removePropertyChangeListener( const OUString
& aPropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertyChangeListener
>& aListener
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
94 virtual void SAL_CALL
addVetoableChangeListener( const OUString
& PropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XVetoableChangeListener
>& aListener
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
95 virtual void SAL_CALL
removeVetoableChangeListener( const OUString
& PropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XVetoableChangeListener
>& aListener
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
98 virtual sal_Bool SAL_CALL
getValueSearch(void) throw( ::com::sun::star::uno::RuntimeException
);
99 virtual void SAL_CALL
setValueSearch(sal_Bool ValueSearch_
) throw( ::com::sun::star::uno::RuntimeException
);
100 virtual ::com::sun::star::uno::Sequence
< com::sun::star::beans::PropertyValue
> SAL_CALL
getSearchAttributes(void) throw( ::com::sun::star::uno::RuntimeException
);
101 virtual void SAL_CALL
setSearchAttributes(const ::com::sun::star::uno::Sequence
< com::sun::star::beans::PropertyValue
>& aSearchAttribs
) throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::uno::RuntimeException
);
102 virtual ::com::sun::star::uno::Sequence
< com::sun::star::beans::PropertyValue
> SAL_CALL
getReplaceAttributes(void) throw( ::com::sun::star::uno::RuntimeException
);
103 virtual void SAL_CALL
setReplaceAttributes(const ::com::sun::star::uno::Sequence
< com::sun::star::beans::PropertyValue
>& aSearchAttribs
) throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::uno::RuntimeException
);
106 virtual OUString SAL_CALL
getImplementationName(void) throw( ::com::sun::star::uno::RuntimeException
);
107 virtual sal_Bool SAL_CALL
supportsService(const OUString
& ServiceName
) throw( ::com::sun::star::uno::RuntimeException
);
108 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException
);
110 void FillSearchItemSet(SfxItemSet
& rSet
) const;
111 void FillReplaceItemSet(SfxItemSet
& rSet
) const;
113 sal_Bool
HasSearchAttributes() const;
114 sal_Bool
HasReplaceAttributes() const;
116 void FillSearchOptions( ::com::sun::star::util::SearchOptions
&
122 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */