lok: Hide file linking in section
[LibreOffice.git] / sw / inc / unotextcursor.hxx
blob25cdb7d102d73e0f8de4beb5b4ead9bf10332624
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_SW_INC_UNOTEXTCURSOR_HXX
21 #define INCLUDED_SW_INC_UNOTEXTCURSOR_HXX
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include <com/sun/star/beans/XPropertyState.hpp>
26 #include <com/sun/star/beans/XMultiPropertySet.hpp>
27 #include <com/sun/star/beans/XMultiPropertyStates.hpp>
28 #include <com/sun/star/container/XEnumerationAccess.hpp>
29 #include <com/sun/star/container/XContentEnumerationAccess.hpp>
30 #include <com/sun/star/util/XSortable.hpp>
31 #include <com/sun/star/document/XDocumentInsertable.hpp>
32 #include <com/sun/star/text/XSentenceCursor.hpp>
33 #include <com/sun/star/text/XWordCursor.hpp>
34 #include <com/sun/star/text/XParagraphCursor.hpp>
35 #include <com/sun/star/text/XRedline.hpp>
36 #include <com/sun/star/text/XMarkingAccess.hpp>
38 #include <cppuhelper/implbase.hxx>
40 #include <comphelper/uno3.hxx>
42 #include "unobaseclass.hxx"
43 #include "TextCursorHelper.hxx"
45 class SwDoc;
46 struct SwPosition;
47 class SwUnoCursor;
49 typedef ::cppu::WeakImplHelper
50 < css::lang::XServiceInfo
51 , css::beans::XPropertySet
52 , css::beans::XPropertyState
53 , css::beans::XMultiPropertySet
54 , css::beans::XMultiPropertyStates
55 , css::container::XEnumerationAccess
56 , css::container::XContentEnumerationAccess
57 , css::util::XSortable
58 , css::document::XDocumentInsertable
59 , css::text::XSentenceCursor
60 , css::text::XWordCursor
61 , css::text::XParagraphCursor
62 , css::text::XRedline
63 , css::text::XMarkingAccess
64 > SwXTextCursor_Base;
66 class SwXTextCursor final
67 : public SwXTextCursor_Base
68 , public OTextCursorHelper
71 private:
73 class Impl;
74 ::sw::UnoImplPtr<Impl> m_pImpl;
76 virtual ~SwXTextCursor() override;
78 public:
80 SwXTextCursor(
81 SwDoc & rDoc,
82 css::uno::Reference< css::text::XText > const& xParent,
83 const CursorType eType,
84 SwPosition const& rPos,
85 SwPosition const*const pMark = nullptr);
86 SwXTextCursor(
87 css::uno::Reference< css::text::XText > const& xParent,
88 SwPaM const& rSourceCursor,
89 const CursorType eType = CursorType::All);
91 SwUnoCursor& GetCursor();
92 bool IsAtEndOfMeta() const;
94 void DeleteAndInsert(OUString const& rText,
95 const bool bForceExpandHints);
97 // OTextCursorHelper
98 virtual const SwPaM* GetPaM() const override;
99 virtual SwPaM* GetPaM() override;
100 virtual const SwDoc* GetDoc() const override;
101 virtual SwDoc* GetDoc() override;
103 DECLARE_XINTERFACE()
105 static const css::uno::Sequence< sal_Int8 >& getUnoTunnelId();
107 // XUnoTunnel
108 virtual sal_Int64 SAL_CALL getSomething(
109 const css::uno::Sequence< sal_Int8 >& rIdentifier) override;
111 // XServiceInfo
112 virtual OUString SAL_CALL getImplementationName() override;
113 virtual sal_Bool SAL_CALL supportsService(
114 const OUString& rServiceName) override;
115 virtual css::uno::Sequence< OUString > SAL_CALL
116 getSupportedServiceNames() override;
118 // XPropertySet
119 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
120 getPropertySetInfo() override;
121 virtual void SAL_CALL setPropertyValue(
122 const OUString& rPropertyName,
123 const css::uno::Any& rValue) override;
124 virtual css::uno::Any SAL_CALL getPropertyValue(
125 const OUString& rPropertyName) override;
126 virtual void SAL_CALL addPropertyChangeListener(
127 const OUString& rPropertyName,
128 const css::uno::Reference<
129 css::beans::XPropertyChangeListener >& xListener) override;
130 virtual void SAL_CALL removePropertyChangeListener(
131 const OUString& rPropertyName,
132 const css::uno::Reference<
133 css::beans::XPropertyChangeListener >& xListener) override;
134 virtual void SAL_CALL addVetoableChangeListener(
135 const OUString& rPropertyName,
136 const css::uno::Reference<
137 css::beans::XVetoableChangeListener >& xListener) override;
138 virtual void SAL_CALL removeVetoableChangeListener(
139 const OUString& rPropertyName,
140 const css::uno::Reference<
141 css::beans::XVetoableChangeListener >& xListener) override;
143 // XPropertyState
144 virtual css::beans::PropertyState SAL_CALL
145 getPropertyState(const OUString& rPropertyName) override;
146 virtual css::uno::Sequence< css::beans::PropertyState > SAL_CALL
147 getPropertyStates(
148 const css::uno::Sequence< OUString >& rPropertyNames) override;
149 virtual void SAL_CALL setPropertyToDefault(
150 const OUString& rPropertyName) override;
151 virtual css::uno::Any SAL_CALL getPropertyDefault(
152 const OUString& rPropertyName) override;
154 // XMultiPropertySet
155 virtual void SAL_CALL setPropertyValues(
156 const css::uno::Sequence< OUString >& aPropertyNames,
157 const css::uno::Sequence< css::uno::Any >& aValues ) override;
159 virtual css::uno::Sequence< css::uno::Any > SAL_CALL
160 getPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames ) override;
162 virtual void SAL_CALL addPropertiesChangeListener(
163 const css::uno::Sequence< OUString >& aPropertyNames,
164 const css::uno::Reference< css::beans::XPropertiesChangeListener >& xListener ) override;
166 virtual void SAL_CALL removePropertiesChangeListener(
167 const css::uno::Reference< css::beans::XPropertiesChangeListener >& xListener ) override;
169 virtual void SAL_CALL firePropertiesChangeEvent(
170 const css::uno::Sequence< OUString >& aPropertyNames,
171 const css::uno::Reference< css::beans::XPropertiesChangeListener >& xListener ) override;
173 // XMultiPropertyStates
174 virtual void SAL_CALL setAllPropertiesToDefault() override;
175 virtual void SAL_CALL setPropertiesToDefault(
176 const css::uno::Sequence< OUString >& rPropertyNames) override;
177 virtual css::uno::Sequence< css::uno::Any >
178 SAL_CALL getPropertyDefaults(
179 const css::uno::Sequence< OUString >& rPropertyNames) override;
181 // XElementAccess
182 virtual css::uno::Type SAL_CALL getElementType() override;
183 virtual sal_Bool SAL_CALL hasElements() override;
185 // XEnumerationAccess
186 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
187 createEnumeration() override;
189 // XContentEnumerationAccess
190 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
191 createContentEnumeration(const OUString& rServiceName) override;
192 virtual css::uno::Sequence< OUString > SAL_CALL
193 getAvailableServiceNames() override;
195 // XSortable
196 virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL
197 createSortDescriptor() override;
198 virtual void SAL_CALL sort(
199 const css::uno::Sequence< css::beans::PropertyValue >& xDescriptor) override;
201 // XDocumentInsertable
202 virtual void SAL_CALL insertDocumentFromURL(
203 const OUString& rURL,
204 const css::uno::Sequence< css::beans::PropertyValue >& rOptions) override;
206 // XTextRange
207 virtual css::uno::Reference< css::text::XText >
208 SAL_CALL getText() override;
209 virtual css::uno::Reference< css::text::XTextRange > SAL_CALL getStart() override;
210 virtual css::uno::Reference< css::text::XTextRange > SAL_CALL getEnd() override;
211 virtual OUString SAL_CALL getString() override;
212 virtual void SAL_CALL setString(const OUString& rString) override;
214 // XTextCursor
215 virtual void SAL_CALL collapseToStart() override;
216 virtual void SAL_CALL collapseToEnd() override;
217 virtual sal_Bool SAL_CALL isCollapsed() override;
218 virtual sal_Bool SAL_CALL goLeft(sal_Int16 nCount, sal_Bool bExpand) override;
219 virtual sal_Bool SAL_CALL goRight(sal_Int16 nCount, sal_Bool bExpand) override;
220 virtual void SAL_CALL gotoStart(sal_Bool bExpand) override;
221 virtual void SAL_CALL gotoEnd(sal_Bool bExpand) override;
222 virtual void SAL_CALL gotoRange(
223 const css::uno::Reference< css::text::XTextRange >& xRange,
224 sal_Bool bExpand) override;
226 // XWordCursor
227 virtual sal_Bool SAL_CALL isStartOfWord() override;
228 virtual sal_Bool SAL_CALL isEndOfWord() override;
229 virtual sal_Bool SAL_CALL gotoNextWord(sal_Bool bExpand) override;
230 virtual sal_Bool SAL_CALL gotoPreviousWord(sal_Bool bExpand) override;
231 virtual sal_Bool SAL_CALL gotoEndOfWord(sal_Bool bExpand) override;
232 virtual sal_Bool SAL_CALL gotoStartOfWord(sal_Bool bExpand) override;
234 // XSentenceCursor
235 virtual sal_Bool SAL_CALL isStartOfSentence() override;
236 virtual sal_Bool SAL_CALL isEndOfSentence() override;
237 virtual sal_Bool SAL_CALL gotoNextSentence(sal_Bool Expand) override;
238 virtual sal_Bool SAL_CALL gotoPreviousSentence(sal_Bool Expand) override;
239 virtual sal_Bool SAL_CALL gotoStartOfSentence(sal_Bool Expand) override;
240 virtual sal_Bool SAL_CALL gotoEndOfSentence(sal_Bool Expand) override;
242 // XParagraphCursor
243 virtual sal_Bool SAL_CALL isStartOfParagraph() override;
244 virtual sal_Bool SAL_CALL isEndOfParagraph() override;
245 virtual sal_Bool SAL_CALL gotoStartOfParagraph(sal_Bool Expand) override;
246 virtual sal_Bool SAL_CALL gotoEndOfParagraph(sal_Bool Expand) override;
247 virtual sal_Bool SAL_CALL gotoNextParagraph(sal_Bool Expand) override;
248 virtual sal_Bool SAL_CALL gotoPreviousParagraph(sal_Bool Expand) override;
250 // XRedline
251 virtual void SAL_CALL makeRedline(
252 const OUString& rRedlineType,
253 const css::uno::Sequence< css::beans::PropertyValue >& RedlineProperties) override;
255 //XMarkingAccess
256 virtual void SAL_CALL invalidateMarkings(::sal_Int32 nType) override;
260 #endif // INCLUDED_SW_INC_UNOTEXTCURSOR_HXX
262 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */