tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / sd / source / ui / slideshow / PaneHider.cxx
blob9176ba3ce0dd637839927a0f2145cc8e5b7be5de
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 #include "PaneHider.hxx"
22 #include <ViewShell.hxx>
23 #include <ViewShellBase.hxx>
24 #include <DrawController.hxx>
25 #include "slideshowimpl.hxx"
26 #include <framework/FrameworkHelper.hxx>
28 #include <com/sun/star/drawing/framework/XControllerManager.hpp>
29 #include <com/sun/star/drawing/framework/XConfigurationController.hpp>
30 #include <com/sun/star/drawing/framework/XConfiguration.hpp>
31 #include <com/sun/star/frame/XController.hpp>
32 #include <com/sun/star/lang/DisposedException.hpp>
34 #include <comphelper/diagnose_ex.hxx>
36 using namespace ::com::sun::star::uno;
37 using namespace ::com::sun::star::drawing::framework;
38 using ::sd::framework::FrameworkHelper;
39 using ::com::sun::star::lang::DisposedException;
41 namespace sd
43 PaneHider::PaneHider(const ViewShell& rViewShell, SlideshowImpl* pSlideShow)
45 // Hide the left and right pane windows when a slideshow exists and is
46 // not full screen.
47 if (pSlideShow == nullptr || pSlideShow->isFullScreen())
48 return;
50 try
52 DrawController* pDrawController = rViewShell.GetViewShellBase().GetDrawController();
53 if (!pDrawController)
54 return;
55 mxConfigurationController = pDrawController->getConfigurationController();
56 if (mxConfigurationController.is())
58 // Get and save the current configuration.
59 mxConfiguration = mxConfigurationController->getRequestedConfiguration();
60 if (mxConfiguration.is())
62 // Iterate over the resources and deactivate the panes.
63 const Sequence<Reference<XResourceId>> aResources(mxConfiguration->getResources(
64 nullptr, framework::FrameworkHelper::msPaneURLPrefix,
65 AnchorBindingMode_DIRECT));
66 for (const Reference<XResourceId>& xPaneId : aResources)
68 if (xPaneId->getResourceURL() != FrameworkHelper::msCenterPaneURL)
70 mxConfigurationController->requestResourceDeactivation(xPaneId);
75 FrameworkHelper::Instance(rViewShell.GetViewShellBase())->WaitForUpdate();
77 catch (RuntimeException&)
79 DBG_UNHANDLED_EXCEPTION("sd");
83 PaneHider::~PaneHider()
85 if (mxConfiguration.is() && mxConfigurationController.is())
87 try
89 mxConfigurationController->restoreConfiguration(mxConfiguration);
91 catch (DisposedException&)
93 // When the configuration controller is already disposed then
94 // there is no point in restoring the configuration.
99 } // end of namespace sd
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */