Coverage Report

Created: 2026-08-14 10:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/sw/inc/unoredline.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
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 .
18
 */
19
#ifndef INCLUDED_SW_INC_UNOREDLINE_HXX
20
#define INCLUDED_SW_INC_UNOREDLINE_HXX
21
22
#include <svl/listener.hxx>
23
#include <com/sun/star/container/XEnumerationAccess.hpp>
24
#include "unotext.hxx"
25
#include "ndindex.hxx"
26
27
class SwRangeRedline;
28
29
/**
30
 * SwXRedlineText provides an XText which may be used to write
31
 * directly into a redline node. It got implemented to enable XML
32
 * import of redlines and should not be used directly via the API.
33
 */
34
class SwXRedlineText final :
35
    public SwXText,
36
    public cppu::OWeakObject,
37
    public css::container::XEnumerationAccess
38
{
39
    SwNodeIndex m_aNodeIndex;
40
    virtual const SwStartNode *GetStartNode() const override;
41
42
public:
43
    SwXRedlineText(SwDoc* pDoc, const SwNodeIndex& aNodeIndex);
44
45
    virtual     css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
46
0
    virtual void SAL_CALL acquire(  ) noexcept override {OWeakObject::acquire();}
47
0
    virtual void SAL_CALL release(  ) noexcept override {OWeakObject::release();}
48
49
    virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes(  ) override;
50
    virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId(  ) override;
51
52
    //XText
53
    virtual rtl::Reference< SwXTextCursor > createXTextCursor() override;
54
    virtual rtl::Reference< SwXTextCursor > createXTextCursorByRange(
55
            const ::css::uno::Reference< ::css::text::XTextRange >& aTextPosition ) override;
56
57
    //XEnumerationAccess
58
    virtual css::uno::Reference< css::container::XEnumeration >  SAL_CALL createEnumeration() override;
59
60
    //XElementAccess (via XEnumerationAccess)
61
    virtual css::uno::Type SAL_CALL getElementType(  ) override;
62
    virtual sal_Bool SAL_CALL hasElements(  ) override;
63
};
64
65
typedef cppu::WeakImplHelper<css::container::XEnumerationAccess> SwXRedlineBaseClass;
66
67
class SwXRedline final
68
    : public SwXRedlineBaseClass
69
    , public SwXText
70
    , public SvtListener
71
{
72
    SwRangeRedline*  m_pRedline;
73
public:
74
    SwXRedline(SwRangeRedline& rRedline);
75
    virtual ~SwXRedline() override;
76
77
78
    virtual     css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
79
0
    virtual void SAL_CALL acquire(  ) noexcept override {OWeakObject::acquire();}
80
0
    virtual void SAL_CALL release(  ) noexcept override {OWeakObject::release();}
81
82
    virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes(  ) override;
83
    virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId(  ) override;
84
85
    //XText
86
    virtual rtl::Reference< SwXTextCursor > createXTextCursor() override;
87
    virtual rtl::Reference< SwXTextCursor > createXTextCursorByRange(
88
            const ::css::uno::Reference< ::css::text::XTextRange >& aTextPosition ) override;
89
90
    //XPropertySet
91
    virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) override;
92
    virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
93
    virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
94
    virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
95
    virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
96
    virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
97
    virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
98
99
    //XEnumerationAccess
100
    virtual css::uno::Reference< css::container::XEnumeration >  SAL_CALL createEnumeration() override;
101
102
    //XElementAccess
103
    virtual css::uno::Type SAL_CALL getElementType(  ) override;
104
    virtual sal_Bool SAL_CALL hasElements(  ) override;
105
106
0
    const SwRangeRedline*    GetRedline() const {return m_pRedline;}
107
    virtual void Notify( const SfxHint& ) override;
108
};
109
110
namespace sw
111
{
112
    struct SW_DLLPUBLIC FindRedlineHint final: SfxHint
113
    {
114
        const SwRangeRedline& m_rRedline;
115
        SwXRedline** m_ppXRedline;
116
        FindRedlineHint(const SwRangeRedline& rRedline, SwXRedline** ppXRedline)
117
0
            : SfxHint(SfxHintId::SwFindRedline), m_rRedline(rRedline), m_ppXRedline(ppXRedline) {}
118
    };
119
}
120
121
#endif
122
123
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */