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>
27 #include <cppuhelper/implbase2.hxx>
29 #include "unotext.hxx"
35 typedef ::cppu::WeakAggImplHelper2
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 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() throw() override
{ OWeakObject::acquire(); }
57 virtual void SAL_CALL
release() throw() override
{ OWeakObject::release(); }
60 virtual css::uno::Any SAL_CALL
queryAggregation(
61 const css::uno::Type
& rType
) override
;
64 virtual css::uno::Sequence
< css::uno::Type
>
65 SAL_CALL
getTypes() override
;
66 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
67 getImplementationId() override
;
70 virtual OUString SAL_CALL
getImplementationName() override
;
71 virtual sal_Bool SAL_CALL
supportsService(
72 const OUString
& rServiceName
) override
;
73 virtual css::uno::Sequence
< OUString
> SAL_CALL
74 getSupportedServiceNames() override
;
77 virtual css::uno::Type SAL_CALL
getElementType() override
;
78 virtual sal_Bool SAL_CALL
hasElements() override
;
81 virtual css::uno::Reference
< css::container::XEnumeration
> SAL_CALL
82 createEnumeration() override
;
85 virtual css::uno::Reference
< css::text::XTextCursor
> SAL_CALL
86 createTextCursor() override
;
87 virtual css::uno::Reference
< css::text::XTextCursor
> SAL_CALL
88 createTextCursorByRange(
89 const css::uno::Reference
< css::text::XTextRange
> & xTextPosition
) override
;
93 typedef ::cppu::WeakImplHelper
94 < css::lang::XServiceInfo
95 , css::container::XEnumerationAccess
96 > SwXHeadFootText_Base
;
98 class SwXHeadFootText final
99 : public SwXHeadFootText_Base
103 ::sw::UnoImplPtr
<Impl
> m_pImpl
;
105 virtual const SwStartNode
*GetStartNode() const override
;
106 virtual css::uno::Reference
< css::text::XTextCursor
>
107 CreateCursor() override
;
109 virtual ~SwXHeadFootText() override
;
111 SwXHeadFootText(SwFrameFormat
& rHeadFootFormat
, const bool bIsHeader
);
115 static css::uno::Reference
< css::text::XText
>
116 CreateXHeadFootText(SwFrameFormat
& rHeadFootFormat
, const bool bIsHeader
);
119 virtual css::uno::Any SAL_CALL
queryInterface(
120 const css::uno::Type
& rType
) override
;
121 virtual void SAL_CALL
acquire() throw() override
{ OWeakObject::acquire(); }
122 virtual void SAL_CALL
release() throw() override
{ OWeakObject::release(); }
125 virtual css::uno::Sequence
< css::uno::Type
>
126 SAL_CALL
getTypes() override
;
127 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
128 getImplementationId() override
;
131 virtual OUString SAL_CALL
getImplementationName() override
;
132 virtual sal_Bool SAL_CALL
supportsService(
133 const OUString
& rServiceName
) override
;
134 virtual css::uno::Sequence
< OUString
> SAL_CALL
135 getSupportedServiceNames() override
;
138 virtual css::uno::Type SAL_CALL
getElementType() override
;
139 virtual sal_Bool SAL_CALL
hasElements() override
;
141 // XEnumerationAccess
142 virtual css::uno::Reference
< css::container::XEnumeration
> SAL_CALL
143 createEnumeration() override
;
146 virtual css::uno::Reference
< css::text::XTextCursor
> SAL_CALL
147 createTextCursor() override
;
148 virtual css::uno::Reference
< css::text::XTextCursor
> SAL_CALL
149 createTextCursorByRange(
150 const css::uno::Reference
< css::text::XTextRange
> & xTextPosition
) override
;
154 #endif // INCLUDED_SW_INC_UNOTEXTBODYHF_HXX
156 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */