2007-05-22 12:14:45 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 15:04:22 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2007-05-22 12:14:45 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2007-05-22 12:14:45 -05:00
|
|
|
*
|
2008-04-10 15:04:22 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2007-05-22 12:14:45 -05:00
|
|
|
*
|
2008-04-10 15:04:22 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2007-05-22 12:14:45 -05:00
|
|
|
*
|
2008-04-10 15:04:22 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2007-05-22 12:14:45 -05:00
|
|
|
*
|
2008-04-10 15:04:22 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2007-05-22 12:14:45 -05:00
|
|
|
*
|
2008-04-10 15:04:22 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2007-05-22 12:14:45 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef CHART2_CONTROLLERLOCKGUARD_HXX
|
|
|
|
#define CHART2_CONTROLLERLOCKGUARD_HXX
|
|
|
|
|
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
2008-12-30 07:32:01 -06:00
|
|
|
#include "charttoolsdllapi.hxx"
|
2007-05-22 12:14:45 -05:00
|
|
|
|
|
|
|
namespace chart
|
|
|
|
{
|
|
|
|
|
|
|
|
/** This guard calls lockControllers at the given Model in the CTOR and
|
|
|
|
unlockControllers in the DTOR. Using this ensures that controllers do not
|
|
|
|
remain locked when leaving a function even in case an exception is thrown.
|
|
|
|
*/
|
2008-12-30 07:32:01 -06:00
|
|
|
class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockGuard
|
2007-05-22 12:14:45 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ControllerLockGuard(
|
|
|
|
const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::frame::XModel > & xModel );
|
|
|
|
~ControllerLockGuard();
|
|
|
|
|
|
|
|
private:
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::frame::XModel > m_xModel;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** This helper class can be used to pass a locking mechanism to other objects
|
|
|
|
without exposing the full XModel to it.
|
|
|
|
|
|
|
|
Use the ControllerLockHelperGuard to lock/unlock the model during a block of
|
|
|
|
instructions.
|
|
|
|
*/
|
2008-12-30 07:32:01 -06:00
|
|
|
class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockHelper
|
2007-05-22 12:14:45 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ControllerLockHelper(
|
|
|
|
const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::frame::XModel > & xModel );
|
|
|
|
~ControllerLockHelper();
|
|
|
|
|
2009-06-04 04:41:18 -05:00
|
|
|
SAL_DLLPRIVATE void lockControllers();
|
|
|
|
SAL_DLLPRIVATE void unlockControllers();
|
2007-05-22 12:14:45 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::frame::XModel > m_xModel;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** This guard calls lockControllers at the given ControllerLockHelper in the
|
|
|
|
CTOR and unlockControllers in the DTOR. Using this ensures that controllers
|
|
|
|
do not remain locked when leaving a function even in case an exception is
|
|
|
|
thrown.
|
|
|
|
*/
|
2008-12-30 07:32:01 -06:00
|
|
|
class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockHelperGuard
|
2007-05-22 12:14:45 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ControllerLockHelperGuard( ControllerLockHelper & rHelper );
|
|
|
|
~ControllerLockHelperGuard();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ControllerLockHelper & m_rHelper;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chart
|
|
|
|
|
|
|
|
// CHART2_CONTROLLERLOCKGUARD_HXX
|
|
|
|
#endif
|