Update git submodules
[LibreOffice.git] / sd / source / ui / inc / ViewShellManager.hxx
blobc4011c52d5fd9aec4e95f9a343722daa4bdda2c4
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 .
20 #pragma once
22 #include "ShellFactory.hxx"
23 #include <o3tl/deleter.hxx>
24 #include <memory>
25 #include <utility>
27 class FmFormShell;
28 class SfxShell;
30 namespace sd
32 class ViewShell;
33 class ViewShellBase;
35 /** The ViewShellManager has the responsibility to manage the view shells
36 and sub shells on the SFX shell stack. They form a two level hierarchy
37 (the underlying ViewShellBase, the only true SfxViewShell descendant,
38 forms a third level.) On the first level there are the view shells
39 (what formerly was called view shell, anyway; nowadays they are derived
40 from SfxShell) and shells for panes. On the second level there are sub
41 shells (also derived from SfxShell) that usually are tool bars.
43 <p>On the SFX shell stack the regular sub shells are placed above their
44 view shells. The FormShell is a special case. With the SetFormShell()
45 method it can be placed directly above or below one of the view
46 shells.</p>
48 <p>Shells managed by this class are created by factories or are given
49 directly to Activate... methods. For the sub shells there is one
50 factory for every view shell. Factories are added or removed via the
51 (Add|Remove)SubShellFactory() methods. The FormShell is managed with the
52 factory of its view shell.</p>
54 class ViewShellManager
56 public:
57 typedef std::shared_ptr<ShellFactory<SfxShell>> SharedShellFactory;
59 ViewShellManager(ViewShellBase& rBase);
61 /** Before the destructor is called the method Shutdown() has to have
62 been called.
64 ~ViewShellManager();
66 /** Tell a ViewShellManager object to prepare to be deleted, i.e. to
67 destroy all of its resources and to ignore all following calls.
68 Use this when the owner of the view shell manager is about being
69 destroyed but the view shell manager itself can not yet be deleted.
71 void Shutdown();
73 /** Set the factory for sub shells of the specified view shell.
75 void AddSubShellFactory(ViewShell const* pViewShell, const SharedShellFactory& rpFactory);
76 void RemoveSubShellFactory(ViewShell const* pViewShell, const SharedShellFactory& rpFactory);
78 /** Activate the given view shell.
80 void ActivateViewShell(ViewShell* pViewShell);
82 /** Activate the given shell which is not a view shell. For view shells
83 use the ActivateViewShell() method.
85 void ActivateShell(SfxShell* pShell);
87 /** Deactivate the specified shell, i.e. take it and all of its
88 object bars from the shell stack.
89 @param pShell
90 The shell to deactivate.
92 void DeactivateViewShell(const ViewShell* pShell);
94 /** Deactivate the specified shell. The shell is not destroyed.
96 void DeactivateShell(const SfxShell* pShell);
98 /** Associate the form shell with a view shell and their relative
99 position. This method does not change the shell stack, it just
100 stores the given values for the next shell stack update.
101 @param pParentShell
102 The view shell of the form shell.
103 @param pFormShell
104 The form shell.
105 @param bAbove
106 When <TRUE/> then the form shell will be placed directly above
107 pViewShell on the SFX shell stack. Otherwise the form shell is
108 placed directly below the view shell.
110 void SetFormShell(const ViewShell* pParentShell, FmFormShell* pFormShell, bool bAbove);
112 /** Activate the specified shell as sub shell for the given view shell.
113 The sub shell factory associated with the view shell is used to
114 create the sub shell.
115 @param rParentShell
116 The new sub shell will be placed above this view shell.
117 @param nId
118 This id is used only with the factory registered for the parent
119 view shell.
121 void ActivateSubShell(const ViewShell& rParentShell, ShellId nId);
123 /** Deactivate the specified sub shell.
125 void DeactivateSubShell(const ViewShell& rParentShell, ShellId nId);
127 /** Send all sub shells of the specified view shell an Invalidate()
128 call. This does not modify the shell stack.
130 void InvalidateAllSubShells(ViewShell const* pViewShell);
132 /** Move the specified view shell to the top most position on the stack
133 of view shells in relation to the other view shells. After this the
134 only shells that are higher on the stack are its object bars.
136 Call this method after a focus change to bring a view mode view
137 shell and is associated tool bar shells to the top of the
138 stack.
140 The mbKeepMainViewShellOnTop flag is not obeyed.
142 @param nId
143 The id of the shell to move to the top.
145 void MoveToTop(const ViewShell& rShell);
147 /** Return the first, i.e. top most, view shell that has been activated
148 under the given id.
149 @param nId
150 The id of the shell for which to return a pointer.
151 @return
152 When the specified shell is currently not active then NULL is
153 returned.
155 SfxShell* GetShell(ShellId nId) const;
157 /** Return the top-most shell on the SFX shell stack regardless of
158 whether that is a view shell or a sub shell.
160 SfxShell* GetTopShell() const;
162 /** Return the top-most active view shell on the internal shell stack.
164 SfxShell* GetTopViewShell() const;
166 /** Use this class to safely lock updates of the view shell stack.
168 class UpdateLock
170 public:
171 UpdateLock(std::shared_ptr<ViewShellManager> pManager)
172 : mpManager(std::move(pManager))
174 mpManager->LockUpdate();
176 ~UpdateLock() COVERITY_NOEXCEPT_FALSE { mpManager->UnlockUpdate(); }
178 private:
179 std::shared_ptr<ViewShellManager> mpManager;
181 friend class UpdateLock;
183 private:
184 class Implementation;
185 std::unique_ptr<ViewShellManager::Implementation,
186 o3tl::default_delete<ViewShellManager::Implementation>>
187 mpImpl;
188 bool mbValid;
190 void LockUpdate();
191 void UnlockUpdate();
194 } // end of namespace sd
196 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */