Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "PaneHider.hxx"
21 :
22 : #include "ViewShell.hxx"
23 : #include "ViewShellBase.hxx"
24 : #include "slideshow.hxx"
25 : #include "slideshowimpl.hxx"
26 : #include "framework/FrameworkHelper.hxx"
27 : #include "framework/ConfigurationController.hxx"
28 :
29 : #include <com/sun/star/drawing/framework/XControllerManager.hpp>
30 : #include <com/sun/star/drawing/framework/XConfigurationController.hpp>
31 : #include <com/sun/star/drawing/framework/XConfiguration.hpp>
32 : #include <com/sun/star/lang/DisposedException.hpp>
33 :
34 : #include <tools/diagnose_ex.h>
35 :
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;
40 :
41 : namespace sd {
42 :
43 0 : PaneHider::PaneHider (const ViewShell& rViewShell, SlideshowImpl* pSlideShow)
44 0 : : mrViewShell(rViewShell)
45 : {
46 : // Hide the left and right pane windows when a slideshow exists and is
47 : // not full screen.
48 0 : if (pSlideShow!=NULL && !pSlideShow->isFullScreen()) try
49 : {
50 : Reference<XControllerManager> xControllerManager (
51 0 : mrViewShell.GetViewShellBase().GetController(), UNO_QUERY_THROW);
52 0 : mxConfigurationController = xControllerManager->getConfigurationController();
53 0 : if (mxConfigurationController.is())
54 : {
55 : // Get and save the current configuration.
56 0 : mxConfiguration = mxConfigurationController->getRequestedConfiguration();
57 0 : if (mxConfiguration.is())
58 : {
59 : // Iterate over the resources and deactivate the panes.
60 : Sequence<Reference<XResourceId> > aResources (
61 0 : mxConfiguration->getResources(
62 : NULL,
63 : framework::FrameworkHelper::msPaneURLPrefix,
64 0 : AnchorBindingMode_DIRECT));
65 0 : for (sal_Int32 nIndex=0; nIndex<aResources.getLength(); ++nIndex)
66 : {
67 0 : Reference<XResourceId> xPaneId (aResources[nIndex]);
68 0 : if ( ! xPaneId->getResourceURL().equals(FrameworkHelper::msCenterPaneURL))
69 : {
70 0 : mxConfigurationController->requestResourceDeactivation(xPaneId);
71 : }
72 0 : }
73 : }
74 : }
75 0 : FrameworkHelper::Instance(mrViewShell.GetViewShellBase())->WaitForUpdate();
76 : }
77 0 : catch (RuntimeException&)
78 : {
79 : DBG_UNHANDLED_EXCEPTION();
80 : }
81 0 : }
82 :
83 0 : PaneHider::~PaneHider()
84 : {
85 0 : if (mxConfiguration.is() && mxConfigurationController.is())
86 : {
87 : try
88 : {
89 0 : mxConfigurationController->restoreConfiguration(mxConfiguration);
90 : }
91 0 : catch (DisposedException&)
92 : {
93 : // When the configuration controller is already disposed then
94 : // there is no point in restoring the configuration.
95 : }
96 : }
97 0 : }
98 :
99 66 : } // end of namespace sd
100 :
101 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|