LCOV - code coverage report
Current view: top level - chart2/source/tools - ControllerLockGuard.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 14 34 41.2 %
Date: 2015-06-13 12:38:46 Functions: 4 10 40.0 %
Legend: Lines: hit not hit

          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 "ControllerLockGuard.hxx"
      21             : #include "ChartModel.hxx"
      22             : 
      23             : using namespace ::com::sun::star;
      24             : 
      25             : using ::com::sun::star::uno::Reference;
      26             : using ::com::sun::star::uno::Sequence;
      27             : 
      28             : namespace chart
      29             : {
      30             : 
      31         585 : ControllerLockGuardUNO::ControllerLockGuardUNO( const uno::Reference< frame::XModel >& xModel ) :
      32         585 :         mxModel( xModel )
      33             : {
      34         585 :     mxModel->lockControllers();
      35         585 : }
      36             : 
      37        1170 : ControllerLockGuardUNO::~ControllerLockGuardUNO()
      38             : {
      39         585 :     mxModel->unlockControllers();
      40         585 : }
      41             : 
      42         613 : ControllerLockGuard::ControllerLockGuard( ChartModel& rModel ) :
      43         613 :         mrModel( rModel )
      44             : {
      45         613 :     mrModel.lockControllers();
      46         613 : }
      47             : 
      48         613 : ControllerLockGuard::~ControllerLockGuard()
      49             : {
      50         613 :     mrModel.unlockControllers();
      51         613 : }
      52             : 
      53           0 : ControllerLockHelper::ControllerLockHelper( const Reference< frame::XModel > & xModel ) :
      54           0 :         m_xModel( xModel )
      55           0 : {}
      56             : 
      57           0 : ControllerLockHelper::~ControllerLockHelper()
      58           0 : {}
      59             : 
      60           0 : void ControllerLockHelper::lockControllers()
      61             : {
      62           0 :     if( m_xModel.is())
      63           0 :         m_xModel->lockControllers();
      64           0 : }
      65             : 
      66           0 : void ControllerLockHelper::unlockControllers()
      67             : {
      68           0 :     if( m_xModel.is())
      69           0 :         m_xModel->unlockControllers();
      70           0 : }
      71             : 
      72           0 : ControllerLockHelperGuard::ControllerLockHelperGuard( ControllerLockHelper & rHelper ) :
      73           0 :         m_rHelper( rHelper )
      74             : {
      75           0 :     m_rHelper.lockControllers();
      76           0 : }
      77             : 
      78           0 : ControllerLockHelperGuard::~ControllerLockHelperGuard()
      79             : {
      80           0 :     m_rHelper.unlockControllers();
      81           0 : }
      82             : 
      83             : } //  namespace chart
      84             : 
      85             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11