Resolves tdf#142513 - Order of ZoomIn and ZoomOut at Print Preview
[LibreOffice.git] / sw / inc / unocrsr.hxx
blob72c8fa744dd003548aac87d3b350cdafdfa03a3b
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_UNOCRSR_HXX
20 #define INCLUDED_SW_INC_UNOCRSR_HXX
22 #include "swcrsr.hxx"
23 #include <svl/SfxBroadcaster.hxx>
24 #include <svl/lstner.hxx>
26 namespace sw
28 struct SW_DLLPUBLIC UnoCursorHint final : public SfxHint
30 UnoCursorHint() {}
31 virtual ~UnoCursorHint() override;
35 class SAL_DLLPUBLIC_RTTI SwUnoCursor : public virtual SwCursor
37 private:
38 bool m_bRemainInSection : 1;
39 bool m_bSkipOverHiddenSections : 1;
40 bool m_bSkipOverProtectSections : 1;
42 public:
43 SfxBroadcaster m_aNotifier;
44 SwUnoCursor( const SwPosition &rPos );
45 virtual ~SwUnoCursor() override;
47 protected:
49 virtual const SwContentFrame* DoSetBidiLevelLeftRight(
50 bool & io_rbLeft, bool bVisualAllowed, bool bInsertCursor) override;
51 virtual void DoSetBidiLevelUpDown() override;
53 public:
55 // Does a selection of content exist in table?
56 // Return value indicates if the cursor remains at its old position.
57 virtual bool IsSelOvr( SwCursorSelOverFlags eFlags =
58 SwCursorSelOverFlags::CheckNodeSection |
59 SwCursorSelOverFlags::Toggle |
60 SwCursorSelOverFlags::ChangePos ) override;
62 virtual bool IsReadOnlyAvailable() const override;
64 bool IsRemainInSection() const { return m_bRemainInSection; }
65 void SetRemainInSection( bool bFlag ) { m_bRemainInSection = bFlag; }
67 virtual bool IsSkipOverProtectSections() const override
68 { return m_bSkipOverProtectSections; }
69 void SetSkipOverProtectSections( bool bFlag )
70 { m_bSkipOverProtectSections = bFlag; }
72 virtual bool IsSkipOverHiddenSections() const override
73 { return m_bSkipOverHiddenSections; }
74 void SetSkipOverHiddenSections( bool bFlag )
75 { m_bSkipOverHiddenSections = bFlag; }
78 class SwUnoTableCursor final : public virtual SwUnoCursor, public virtual SwTableCursor
80 // The selection has the same order as the table boxes, i.e.
81 // if something is deleted from the one array at a certain position
82 // it has also to be deleted from the other!
83 SwCursor m_aTableSel;
85 using SwTableCursor::MakeBoxSels;
87 public:
88 SwUnoTableCursor( const SwPosition& rPos );
89 virtual ~SwUnoTableCursor() override;
91 // Does a selection of content exist in table?
92 // Return value indicates if the cursor remains at its old position.
93 virtual bool IsSelOvr( SwCursorSelOverFlags eFlags =
94 SwCursorSelOverFlags::CheckNodeSection |
95 SwCursorSelOverFlags::Toggle |
96 SwCursorSelOverFlags::ChangePos ) override;
98 void MakeBoxSels();
100 SwCursor& GetSelRing() { return m_aTableSel; }
101 const SwCursor& GetSelRing() const { return m_aTableSel; }
104 namespace sw
106 class UnoCursorPointer final : public SfxListener
108 public:
109 UnoCursorPointer()
111 UnoCursorPointer(std::shared_ptr<SwUnoCursor> const & pCursor)
112 : m_pCursor(pCursor)
114 StartListening(m_pCursor->m_aNotifier);
116 UnoCursorPointer(const UnoCursorPointer& rOther)
117 : SfxListener()
118 , m_pCursor(rOther.m_pCursor)
120 if(m_pCursor)
121 StartListening(m_pCursor->m_aNotifier);
123 virtual ~UnoCursorPointer() override
125 if(m_pCursor)
126 EndListening(m_pCursor->m_aNotifier);
128 virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override
130 if(m_pCursor)
132 if(typeid(rHint) == typeid(UnoCursorHint))
133 EndListening(rBC);
135 if(!GetBroadcasterCount())
136 m_pCursor.reset();
138 SwUnoCursor* get() const
139 { return m_pCursor.get(); }
140 SwUnoCursor* operator->() const
141 { return get(); }
142 SwUnoCursor& operator*() const
143 { return *get(); }
144 UnoCursorPointer& operator=(UnoCursorPointer aOther)
146 if (m_pCursor)
148 EndListening(m_pCursor->m_aNotifier);
150 if(aOther.m_pCursor)
151 StartListening(aOther.m_pCursor->m_aNotifier);
152 m_pCursor = aOther.m_pCursor;
153 return *this;
155 explicit operator bool() const
156 { return static_cast<bool>(m_pCursor); }
157 void reset(std::shared_ptr<SwUnoCursor> pNew)
159 if(pNew)
160 StartListening(pNew->m_aNotifier);
161 if (m_pCursor)
162 EndListening(m_pCursor->m_aNotifier);
163 m_pCursor = pNew;
165 private:
166 std::shared_ptr<SwUnoCursor> m_pCursor;
169 #endif
171 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */