tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sw / inc / unoredline.hxx
blob90f9d212a168ad1219e64b3f3ca4c52ee673b1be
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 .
19 #ifndef INCLUDED_SW_INC_UNOREDLINE_HXX
20 #define INCLUDED_SW_INC_UNOREDLINE_HXX
22 #include <svl/listener.hxx>
23 #include <com/sun/star/container/XEnumerationAccess.hpp>
24 #include "unotext.hxx"
25 #include "ndindex.hxx"
27 class SwRangeRedline;
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.
34 class SwXRedlineText final :
35 public SwXText,
36 public cppu::OWeakObject,
37 public css::container::XEnumerationAccess
39 SwNodeIndex m_aNodeIndex;
40 virtual const SwStartNode *GetStartNode() const override;
42 public:
43 SwXRedlineText(SwDoc* pDoc, const SwNodeIndex& aNodeIndex);
45 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
46 virtual void SAL_CALL acquire( ) noexcept override {OWeakObject::acquire();}
47 virtual void SAL_CALL release( ) noexcept override {OWeakObject::release();}
49 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
50 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) override;
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;
57 //XEnumerationAccess
58 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
60 //XElementAccess (via XEnumerationAccess)
61 virtual css::uno::Type SAL_CALL getElementType( ) override;
62 virtual sal_Bool SAL_CALL hasElements( ) override;
65 typedef cppu::WeakImplHelper<css::container::XEnumerationAccess> SwXRedlineBaseClass;
67 class SwXRedline final
68 : public SwXRedlineBaseClass
69 , public SwXText
70 , public SvtListener
72 SwDoc* m_pDoc;
73 SwRangeRedline* m_pRedline;
74 public:
75 SwXRedline(SwRangeRedline& rRedline, SwDoc& rDoc);
76 virtual ~SwXRedline() override;
79 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
80 virtual void SAL_CALL acquire( ) noexcept override {OWeakObject::acquire();}
81 virtual void SAL_CALL release( ) noexcept override {OWeakObject::release();}
83 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
84 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) override;
86 //XText
87 virtual rtl::Reference< SwXTextCursor > createXTextCursor() override;
88 virtual rtl::Reference< SwXTextCursor > createXTextCursorByRange(
89 const ::css::uno::Reference< ::css::text::XTextRange >& aTextPosition ) override;
91 //XPropertySet
92 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override;
93 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
94 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
95 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
96 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
97 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
98 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
100 //XEnumerationAccess
101 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
103 //XElementAccess
104 virtual css::uno::Type SAL_CALL getElementType( ) override;
105 virtual sal_Bool SAL_CALL hasElements( ) override;
107 const SwRangeRedline* GetRedline() const {return m_pRedline;}
108 virtual void Notify( const SfxHint& ) override;
111 namespace sw
113 struct SW_DLLPUBLIC FindRedlineHint final: SfxHint
115 const SwRangeRedline& m_rRedline;
116 SwXRedline** m_ppXRedline;
117 FindRedlineHint(const SwRangeRedline& rRedline, SwXRedline** ppXRedline)
118 : SfxHint(SfxHintId::SwFindRedline), m_rRedline(rRedline), m_ppXRedline(ppXRedline) {}
122 #endif
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */