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 .
20 #ifndef INCLUDED_SW_INC_UNOTEXTBODYHF_HXX
21 #define INCLUDED_SW_INC_UNOTEXTBODYHF_HXX
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/container/XEnumerationAccess.hpp>
26 #include <cppuhelper/implbase.hxx>
28 #include "unotext.hxx"
33 struct SwXParagraphEnumeration
;
35 typedef ::cppu::WeakImplHelper
36 < css::lang::XServiceInfo
37 , css::container::XEnumerationAccess
40 class SwXBodyText final
41 : public SwXBodyText_Base
45 virtual ~SwXBodyText() override
;
49 SwXBodyText(SwDoc
*const pDoc
);
51 rtl::Reference
<SwXTextCursor
> CreateTextCursor(const bool bIgnoreTables
= false);
54 virtual css::uno::Any SAL_CALL
queryInterface(
55 const css::uno::Type
& rType
) override
;
56 virtual void SAL_CALL
acquire() noexcept override
{ OWeakObject::acquire(); }
57 virtual void SAL_CALL
release() noexcept override
{ OWeakObject::release(); }
60 virtual css::uno::Sequence
< css::uno::Type
>
61 SAL_CALL
getTypes() override
;
62 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
63 getImplementationId() override
;
66 virtual OUString SAL_CALL
getImplementationName() override
;
67 virtual sal_Bool SAL_CALL
supportsService(
68 const OUString
& rServiceName
) override
;
69 virtual css::uno::Sequence
< OUString
> SAL_CALL
70 getSupportedServiceNames() override
;
73 virtual css::uno::Type SAL_CALL
getElementType() override
;
74 virtual sal_Bool SAL_CALL
hasElements() override
;
77 virtual css::uno::Reference
< css::container::XEnumeration
> SAL_CALL
78 createEnumeration() override
;
79 rtl::Reference
< SwXParagraphEnumeration
> createParagraphEnumeration();
82 virtual rtl::Reference
< SwXTextCursor
> createXTextCursor() override
;
83 virtual rtl::Reference
< SwXTextCursor
> createXTextCursorByRange(
84 const ::css::uno::Reference
< ::css::text::XTextRange
>& aTextPosition
) override
;
88 typedef ::cppu::WeakImplHelper
89 < css::lang::XServiceInfo
90 , css::container::XEnumerationAccess
91 > SwXHeadFootText_Base
;
93 class SwXHeadFootText final
94 : public SwXHeadFootText_Base
98 ::sw::UnoImplPtr
<Impl
> m_pImpl
;
100 virtual const SwStartNode
*GetStartNode() const override
;
102 virtual ~SwXHeadFootText() override
;
104 SwXHeadFootText(SwFrameFormat
& rHeadFootFormat
, const bool bIsHeader
);
108 static css::uno::Reference
< css::text::XText
>
109 CreateXHeadFootText(SwFrameFormat
& rHeadFootFormat
, const bool bIsHeader
);
111 rtl::Reference
< SwXTextCursor
> CreateTextCursor(const bool bIgnoreTables
= false);
114 virtual css::uno::Any SAL_CALL
queryInterface(
115 const css::uno::Type
& rType
) override
;
116 virtual void SAL_CALL
acquire() noexcept override
{ OWeakObject::acquire(); }
117 virtual void SAL_CALL
release() noexcept override
{ OWeakObject::release(); }
120 virtual css::uno::Sequence
< css::uno::Type
>
121 SAL_CALL
getTypes() override
;
122 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
123 getImplementationId() override
;
126 virtual OUString SAL_CALL
getImplementationName() override
;
127 virtual sal_Bool SAL_CALL
supportsService(
128 const OUString
& rServiceName
) override
;
129 virtual css::uno::Sequence
< OUString
> SAL_CALL
130 getSupportedServiceNames() override
;
133 virtual css::uno::Type SAL_CALL
getElementType() override
;
134 virtual sal_Bool SAL_CALL
hasElements() override
;
136 // XEnumerationAccess
137 virtual css::uno::Reference
< css::container::XEnumeration
> SAL_CALL
138 createEnumeration() override
;
141 virtual rtl::Reference
< SwXTextCursor
> createXTextCursor() override
;
142 virtual rtl::Reference
< SwXTextCursor
> createXTextCursorByRange(
143 const ::css::uno::Reference
< ::css::text::XTextRange
>& aTextPosition
) override
;
147 #endif // INCLUDED_SW_INC_UNOTEXTBODYHF_HXX
149 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */