2007/01/24 17:46:26 af 1.2.396.8: #i68075# Introduction of XResourceId interface. 2007/01/22 16:18:31 af 1.2.396.7: #i68075 Introduction of XResourceId interface. 2006/12/08 15:41:05 af 1.2.396.6: #i72399# Catching DisposedException when restoring configuration. 2006/11/22 12:32:04 af 1.2.396.5: #i71253# Optimized how the panes are hidden. 2006/09/25 17:19:06 af 1.2.396.4: RESYNC: (1.2-1.3); FILE MERGED 2006/09/07 14:51:52 af 1.2.396.3: #i68075# Transition from URL to ResourceId. 2006/08/28 14:32:32 af 1.2.396.2: #i68075# Fixed compiler problems. 2006/08/22 11:37:08 af 1.2.396.1: #i68075# Transition to new drawing framework.
138 lines
4.9 KiB
C++
138 lines
4.9 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: PaneHider.cxx,v $
|
|
*
|
|
* $Revision: 1.4 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2007-04-03 16:15:22 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_sd.hxx"
|
|
#include "PaneHider.hxx"
|
|
|
|
#include "ViewShell.hxx"
|
|
#include "ViewShellBase.hxx"
|
|
#include "slideshow.hxx"
|
|
#include "framework/FrameworkHelper.hxx"
|
|
#include "framework/ConfigurationController.hxx"
|
|
|
|
#ifndef _COM_SUN_STAR_DRAWING_FRAMEWORK_XCONTROLLERMANAGER_HPP_
|
|
#include <com/sun/star/drawing/framework/XControllerManager.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_DRAWING_FRAMEWORK_XPANECONTROLLER_HPP_
|
|
#include <com/sun/star/drawing/framework/XPaneController.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_DRAWING_FRAMEWORK_XCONFIGURATIONCONTROLLER_HPP_
|
|
#include <com/sun/star/drawing/framework/XConfigurationController.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_DRAWING_FRAMEWORK_XCONFIGURATION_HPP_
|
|
#include <com/sun/star/drawing/framework/XConfiguration.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_LANG_DISPOSEDEXCEPTION_HPP_
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
|
#endif
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::drawing::framework;
|
|
using ::sd::framework::FrameworkHelper;
|
|
using ::com::sun::star::lang::DisposedException;
|
|
|
|
namespace sd {
|
|
|
|
PaneHider::PaneHider (const ViewShell& rViewShell)
|
|
: mrViewShell(rViewShell),
|
|
mbWindowVisibilitySaved(false),
|
|
mbOriginalLeftPaneWindowVisibility(false),
|
|
mbOriginalRightPaneWindowVisibility(false)
|
|
{
|
|
// Hide the left and right pane windows when a slideshow exists and is
|
|
// not full screen.
|
|
Slideshow* pSlideShow = mrViewShell.GetSlideShow();
|
|
if (pSlideShow!=NULL && !pSlideShow->isFullScreen())
|
|
{
|
|
try
|
|
{
|
|
Reference<XControllerManager> xControllerManager (
|
|
mrViewShell.GetViewShellBase().GetController(), UNO_QUERY_THROW);
|
|
mxConfigurationController = xControllerManager->getConfigurationController();
|
|
if (mxConfigurationController.is())
|
|
{
|
|
// Get and save the current configuration.
|
|
mxConfiguration = mxConfigurationController->getConfiguration();
|
|
if (mxConfiguration.is())
|
|
{
|
|
// Iterate over the resources and deactivate the panes.
|
|
Sequence<Reference<XResourceId> > aResources (
|
|
mxConfiguration->getResources(
|
|
NULL,
|
|
framework::FrameworkHelper::msPaneURLPrefix,
|
|
AnchorBindingMode_DIRECT));
|
|
for (sal_Int32 nIndex=0; nIndex<aResources.getLength(); ++nIndex)
|
|
{
|
|
Reference<XResourceId> xPaneId (aResources[nIndex]);
|
|
if ( ! xPaneId->getResourceURL().equals(FrameworkHelper::msCenterPaneURL))
|
|
{
|
|
mxConfigurationController->requestResourceDeactivation(xPaneId);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
FrameworkHelper::Instance(mrViewShell.GetViewShellBase())->WaitForUpdate();
|
|
}
|
|
catch (RuntimeException&)
|
|
{
|
|
DBG_ASSERT(false, "caught exception in PaneHider constructor");
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
PaneHider::~PaneHider (void)
|
|
{
|
|
if (mxConfiguration.is() && mxConfigurationController.is())
|
|
{
|
|
try
|
|
{
|
|
mxConfigurationController->restoreConfiguration(mxConfiguration);
|
|
}
|
|
catch (DisposedException&)
|
|
{
|
|
// When the configuration controller is already disposed then
|
|
// there is no point in restoring the configuration.
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
} // end of namespace sd
|