1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
19 #ifndef INCLUDED_CHART2_SOURCE_INC_CONTROLLERLOCKGUARD_HXX
20 #define INCLUDED_CHART2_SOURCE_INC_CONTROLLERLOCKGUARD_HXX
22 #include <com/sun/star/frame/XModel.hpp>
23 #include "charttoolsdllapi.hxx"
24 #include "ChartModel.hxx"
29 /** This guard calls lockControllers at the given Model in the CTOR and
30 unlockControllers in the DTOR. Using this ensures that controllers do not
31 remain locked when leaving a function even in case an exception is thrown.
33 class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockGuardUNO
36 explicit ControllerLockGuardUNO(
37 const ::com::sun::star::uno::Reference
<
38 ::com::sun::star::frame::XModel
> & xModel
);
39 ~ControllerLockGuardUNO();
42 com::sun::star::uno::Reference
< com::sun::star::frame::XModel
> mxModel
;
45 class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockGuard
48 explicit ControllerLockGuard( ChartModel
& rModel
);
49 ~ControllerLockGuard();
55 /** This helper class can be used to pass a locking mechanism to other objects
56 without exposing the full XModel to it.
58 Use the ControllerLockHelperGuard to lock/unlock the model during a block of
61 class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockHelper
64 explicit ControllerLockHelper(
65 const ::com::sun::star::uno::Reference
<
66 ::com::sun::star::frame::XModel
> & xModel
);
67 ~ControllerLockHelper();
69 SAL_DLLPRIVATE
void lockControllers();
70 SAL_DLLPRIVATE
void unlockControllers();
73 ::com::sun::star::uno::Reference
<
74 ::com::sun::star::frame::XModel
> m_xModel
;
77 /** This guard calls lockControllers at the given ControllerLockHelper in the
78 CTOR and unlockControllers in the DTOR. Using this ensures that controllers
79 do not remain locked when leaving a function even in case an exception is
82 class OOO_DLLPUBLIC_CHARTTOOLS ControllerLockHelperGuard
85 explicit ControllerLockHelperGuard( ControllerLockHelper
& rHelper
);
86 ~ControllerLockHelperGuard();
89 ControllerLockHelper
& m_rHelper
;
94 // INCLUDED_CHART2_SOURCE_INC_CONTROLLERLOCKGUARD_HXX
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */