Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sw / inc / unobaseclass.hxx
blob8635d47c5f8f3925cb2354d6f995220bb2324ec7
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_UNOBASECLASS_HXX
20 #define INCLUDED_SW_INC_UNOBASECLASS_HXX
22 #include <memory>
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/container/XEnumeration.hpp>
26 #include <cppuhelper/implbase.hxx>
28 #include <o3tl/typed_flags_set.hxx>
30 #include <vcl/svapp.hxx>
32 class SfxPoolItem;
33 class SwDoc;
34 class SwUnoTableCursor;
36 typedef ::cppu::WeakImplHelper
37 < css::lang::XServiceInfo
38 , css::container::XEnumeration
40 SwSimpleEnumeration_Base;
42 enum class CursorType
44 Body,
45 Frame,
46 TableText,
47 Footnote,
48 Header,
49 Footer,
50 Redline,
51 All, // for Search&Replace
52 Selection, // create a paragraph enumeration from
53 // a text range or cursor
54 SelectionInTable,
55 Meta, // meta/meta-field
56 ContentControl,
59 namespace sw {
61 enum class DeleteAndInsertMode
63 Default = 0,
64 ForceExpandHints = (1<<0),
65 ForceReplace = (1<<1),
68 } // namespace sw
70 namespace o3tl
72 template<> struct typed_flags<::sw::DeleteAndInsertMode> : is_typed_flags<::sw::DeleteAndInsertMode, 0x03> {};
76 Start/EndAction or Start/EndAllAction
78 class UnoActionContext
80 private:
81 SwDoc * m_pDoc;
83 public:
84 UnoActionContext(SwDoc *const pDoc);
85 ~UnoActionContext() COVERITY_NOEXCEPT_FALSE;
89 interrupt Actions for a little while
90 FIXME: this is a vile abomination that may cause recursive layout actions!
91 C'thulhu fhtagn.
93 class UnoActionRemoveContext
95 private:
96 SwDoc *const m_pDoc;
98 public:
99 UnoActionRemoveContext(SwDoc *const pDoc);
100 UnoActionRemoveContext(SwUnoTableCursor const& rCursor);
101 ~UnoActionRemoveContext() COVERITY_NOEXCEPT_FALSE;
104 namespace sw {
105 template<typename T>
106 struct UnoImplPtrDeleter
108 void operator()(T* pUnoImpl)
110 SolarMutexGuard g; // #i105557#: call dtor with locked solar mutex
111 delete pUnoImpl;
114 /// Smart pointer class ensuring that the pointed object is deleted with a locked SolarMutex.
115 template<typename T>
116 using UnoImplPtr = std::unique_ptr<T, UnoImplPtrDeleter<T> >;
118 } // namespace sw
120 #endif // INCLUDED_SW_INC_UNOBASECLASS_HXX
122 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */