Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sw / source / core / inc / unoflatpara.hxx
blob77e07af399b9132636a9452026daa4af89414628
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_SOURCE_CORE_INC_UNOFLATPARA_HXX
21 #define INCLUDED_SW_SOURCE_CORE_INC_UNOFLATPARA_HXX
23 #include <cppuhelper/implbase.hxx>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <com/sun/star/text/XFlatParagraph.hpp>
27 #include <com/sun/star/text/XFlatParagraphIterator.hpp>
28 #include <svl/listener.hxx>
29 #include "unotextmarkup.hxx"
30 #include <nodeoffset.hxx>
32 #include <set>
34 namespace com::sun::star::container { class XStringKeyMap; }
35 namespace com::sun::star::text { class XTextRange; }
36 class SwTextNode;
37 class SwDoc;
38 class ModelToViewHelper;
40 typedef ::cppu::ImplInheritanceHelper
41 < SwXTextMarkup
42 , css::beans::XPropertySet
43 , css::text::XFlatParagraph
44 > SwXFlatParagraph_Base;
46 class SwXFlatParagraph final
47 : public SwXFlatParagraph_Base
49 public:
50 SwXFlatParagraph( SwTextNode& rTextNode, OUString aExpandText, const ModelToViewHelper& rConversionMap );
51 virtual ~SwXFlatParagraph() override;
53 // XPropertySet
54 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
55 getPropertySetInfo() override;
56 virtual void SAL_CALL setPropertyValue(
57 const OUString& rPropertyName,
58 const css::uno::Any& rValue) override;
59 virtual css::uno::Any SAL_CALL getPropertyValue(
60 const OUString& rPropertyName) override;
61 virtual void SAL_CALL addPropertyChangeListener(
62 const OUString& rPropertyName,
63 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener) override;
64 virtual void SAL_CALL removePropertyChangeListener(
65 const OUString& rPropertyName,
66 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener) override;
67 virtual void SAL_CALL addVetoableChangeListener(
68 const OUString& rPropertyName,
69 const css::uno::Reference< css::beans::XVetoableChangeListener >& xListener) override;
70 virtual void SAL_CALL removeVetoableChangeListener(
71 const OUString& rPropertyName,
72 const css::uno::Reference< css::beans::XVetoableChangeListener >& xListener) override;
74 // text::XTextMarkup:
75 virtual css::uno::Reference< css::container::XStringKeyMap > SAL_CALL getMarkupInfoContainer() override;
77 virtual void SAL_CALL commitStringMarkup(::sal_Int32 nType, const OUString & aIdentifier, ::sal_Int32 nStart, ::sal_Int32 nLength,
78 const css::uno::Reference< css::container::XStringKeyMap > & xMarkupInfoContainer) override;
80 virtual void SAL_CALL commitTextRangeMarkup(::sal_Int32 nType, const OUString & aIdentifier, const css::uno::Reference< css::text::XTextRange> & xRange,
81 const css::uno::Reference< css::container::XStringKeyMap > & xMarkupInfoContainer) override;
83 // text::XFlatParagraph:
84 virtual OUString SAL_CALL getText() override;
85 virtual sal_Bool SAL_CALL isModified() override;
86 virtual void SAL_CALL setChecked(::sal_Int32 nType, sal_Bool bVal) override;
87 virtual sal_Bool SAL_CALL isChecked(::sal_Int32 nType) override;
88 virtual css::lang::Locale SAL_CALL getLanguageOfText(::sal_Int32 nPos, ::sal_Int32 nLen) override;
89 virtual css::lang::Locale SAL_CALL getPrimaryLanguageOfText(::sal_Int32 nPos, ::sal_Int32 nLen) override;
90 virtual void SAL_CALL changeText(::sal_Int32 nPos, ::sal_Int32 nLen, const OUString & aNewText, const css::uno::Sequence< css::beans::PropertyValue > & aAttributes) override;
91 virtual void SAL_CALL changeAttributes(::sal_Int32 nPos, ::sal_Int32 nLen, const css::uno::Sequence< css::beans::PropertyValue > & aAttributes) override;
92 virtual css::uno::Sequence< ::sal_Int32 > SAL_CALL getLanguagePortions() override;
94 using SwXTextMarkup::GetTextNode;
96 private:
97 SwXFlatParagraph( const SwXFlatParagraph & ) = delete;
98 SwXFlatParagraph & operator = ( const SwXFlatParagraph & ) = delete;
100 OUString maExpandText;
103 class SwXFlatParagraphIterator final :
104 public ::cppu::WeakImplHelper
106 css::text::XFlatParagraphIterator
108 public SvtListener
110 public:
111 SwXFlatParagraphIterator( SwDoc& rDoc, sal_Int32 nType, bool bAutomatic );
112 virtual ~SwXFlatParagraphIterator() override;
114 // text::XFlatParagraphIterator:
115 virtual css::uno::Reference< css::text::XFlatParagraph > SAL_CALL getFirstPara() override;
116 virtual css::uno::Reference< css::text::XFlatParagraph > SAL_CALL getNextPara() override;
117 virtual css::uno::Reference< css::text::XFlatParagraph > SAL_CALL getLastPara() override;
118 virtual css::uno::Reference< css::text::XFlatParagraph > SAL_CALL getParaBefore(const css::uno::Reference< css::text::XFlatParagraph > & xPara) override;
119 virtual css::uno::Reference< css::text::XFlatParagraph > SAL_CALL getParaAfter(const css::uno::Reference< css::text::XFlatParagraph > & xPara) override;
121 virtual void Notify( const SfxHint& ) override;
123 private:
124 SwXFlatParagraphIterator( const SwXFlatParagraphIterator & ) = delete;
125 SwXFlatParagraphIterator & operator =(const SwXFlatParagraphIterator & ) = delete;
127 SwDoc* mpDoc;
128 const sal_Int32 mnType;
129 const bool mbAutomatic;
131 SwNodeOffset mnCurrentNode; // used for non-automatic mode
132 SwNodeOffset mnEndNode; // used for non-automatic mode
135 #endif
137 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */