LCOV - code coverage report
Current view: top level - libreoffice/svtools/source/misc - dialogcontrolling.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 94 0.0 %
Date: 2012-12-27 Functions: 0 28 0.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 <svtools/dialogcontrolling.hxx>
      21             : #include <vcl/window.hxx>
      22             : 
      23             : #include <algorithm>
      24             : #include <functional>
      25             : 
      26             : //........................................................................
      27             : namespace svt
      28             : {
      29             : //........................................................................
      30             : 
      31             :     //=====================================================================
      32             :     //= IWindowOperator
      33             :     //=====================================================================
      34             :     //---------------------------------------------------------------------
      35           0 :     IWindowOperator::~IWindowOperator()
      36             :     {
      37           0 :     }
      38             : 
      39             :     //=====================================================================
      40             :     //= IWindowEventFilter
      41             :     //=====================================================================
      42             :     //---------------------------------------------------------------------
      43           0 :     IWindowEventFilter::~IWindowEventFilter()
      44             :     {
      45           0 :     }
      46             : 
      47             :     //=====================================================================
      48             :     //= DialogController_Data
      49             :     //=====================================================================
      50           0 :     struct DialogController_Data
      51             :     {
      52             :         Window&                     rInstigator;
      53             :         ::std::vector< Window* >    aConcernedWindows;
      54             :         PWindowEventFilter          pEventFilter;
      55             :         PWindowOperator             pOperator;
      56             : 
      57           0 :         DialogController_Data( Window& _rInstigator, const PWindowEventFilter _pEventFilter, const PWindowOperator _pOperator )
      58             :             :rInstigator( _rInstigator )
      59             :             ,pEventFilter( _pEventFilter )
      60           0 :             ,pOperator( _pOperator )
      61             :         {
      62           0 :         }
      63             :     };
      64             : 
      65             :     //=====================================================================
      66             :     //= DialogController
      67             :     //=====================================================================
      68             :     //---------------------------------------------------------------------
      69           0 :     DialogController::DialogController( Window& _rInstigator, const PWindowEventFilter& _pEventFilter,
      70             :             const PWindowOperator& _pOperator )
      71           0 :         :m_pImpl( new DialogController_Data( _rInstigator, _pEventFilter, _pOperator ) )
      72             :     {
      73             :         DBG_ASSERT( m_pImpl->pEventFilter.get() && m_pImpl->pOperator.get(),
      74             :             "DialogController::DialogController: invalid filter and/or operator!" );
      75             : 
      76           0 :         m_pImpl->rInstigator.AddEventListener( LINK( this, DialogController, OnWindowEvent ) );
      77           0 :     }
      78             : 
      79             :     //---------------------------------------------------------------------
      80           0 :     DialogController::~DialogController()
      81             :     {
      82           0 :         reset();
      83           0 :     }
      84             : 
      85             :     //---------------------------------------------------------------------
      86           0 :     void DialogController::reset()
      87             :     {
      88           0 :         m_pImpl->rInstigator.RemoveEventListener( LINK( this, DialogController, OnWindowEvent ) );
      89           0 :         m_pImpl->aConcernedWindows.clear();
      90           0 :         m_pImpl->pEventFilter.reset();
      91           0 :         m_pImpl->pOperator.reset();
      92           0 :     }
      93             : 
      94             :     //---------------------------------------------------------------------
      95           0 :     void DialogController::addDependentWindow( Window& _rWindow )
      96             :     {
      97           0 :         m_pImpl->aConcernedWindows.push_back( &_rWindow );
      98             : 
      99           0 :         VclWindowEvent aEvent( &_rWindow, 0, NULL );
     100           0 :         impl_update( aEvent, _rWindow );
     101           0 :     }
     102             : 
     103             :     //---------------------------------------------------------------------
     104           0 :     IMPL_LINK( DialogController, OnWindowEvent, const VclWindowEvent*, _pEvent )
     105             :     {
     106           0 :         if ( m_pImpl->pEventFilter->payAttentionTo( *_pEvent ) )
     107           0 :             impl_updateAll( *_pEvent );
     108           0 :         return 0L;
     109             :     }
     110             : 
     111             :     //---------------------------------------------------------------------
     112           0 :     void DialogController::impl_updateAll( const VclWindowEvent& _rTriggerEvent )
     113             :     {
     114           0 :         for ( ::std::vector< Window* >::iterator loop = m_pImpl->aConcernedWindows.begin();
     115           0 :                 loop != m_pImpl->aConcernedWindows.end();
     116             :                 ++loop
     117             :             )
     118           0 :             impl_update( _rTriggerEvent, *(*loop) );
     119           0 :     }
     120             : 
     121             :     //---------------------------------------------------------------------
     122           0 :     void DialogController::impl_update( const VclWindowEvent& _rTriggerEvent, Window& _rWindow )
     123             :     {
     124           0 :         m_pImpl->pOperator->operateOn( _rTriggerEvent, _rWindow );
     125           0 :     }
     126             : 
     127             :     //=====================================================================
     128             :     //= ControlDependencyManager_Data
     129             :     //=====================================================================
     130           0 :     struct ControlDependencyManager_Data
     131             :     {
     132             :         ::std::vector< PDialogController >  aControllers;
     133             :     };
     134             : 
     135             :     //=====================================================================
     136             :     //= ControlDependencyManager
     137             :     //=====================================================================
     138             :     //---------------------------------------------------------------------
     139           0 :     ControlDependencyManager::ControlDependencyManager()
     140           0 :         :m_pImpl( new ControlDependencyManager_Data )
     141             :     {
     142           0 :     }
     143             : 
     144             :     //---------------------------------------------------------------------
     145           0 :     ControlDependencyManager::~ControlDependencyManager()
     146             :     {
     147           0 :     }
     148             : 
     149             :     //---------------------------------------------------------------------
     150             :     namespace
     151             :     {
     152             :         struct ResetDialogController : public ::std::unary_function< const PDialogController&, void >
     153             :         {
     154           0 :             void operator()( const PDialogController& _pController )
     155             :             {
     156           0 :                 _pController->reset();
     157           0 :             }
     158             :         };
     159             :     }
     160             : 
     161             :     //---------------------------------------------------------------------
     162           0 :     void ControlDependencyManager::clear()
     163             :     {
     164           0 :         ::std::for_each( m_pImpl->aControllers.begin(), m_pImpl->aControllers.end(), ResetDialogController() );
     165           0 :         m_pImpl->aControllers.clear();
     166           0 :     }
     167             : 
     168             :     //---------------------------------------------------------------------
     169           0 :     void ControlDependencyManager::addController( const PDialogController& _pController )
     170             :     {
     171             :         OSL_ENSURE( _pController.get() != NULL, "ControlDependencyManager::addController: invalid controller, this will crash, sooner or later!" );
     172           0 :         m_pImpl->aControllers.push_back( _pController );
     173           0 :     }
     174             : 
     175             :     //---------------------------------------------------------------------
     176           0 :     void ControlDependencyManager::enableOnRadioCheck( RadioButton& _rRadio, Window& _rDependentWindow )
     177             :     {
     178           0 :         PDialogController pController( new RadioDependentEnabler( _rRadio ) );
     179           0 :         pController->addDependentWindow( _rDependentWindow );
     180           0 :         m_pImpl->aControllers.push_back( pController );
     181           0 :     }
     182             : 
     183             :     //---------------------------------------------------------------------
     184           0 :     void ControlDependencyManager::enableOnRadioCheck( RadioButton& _rRadio, Window& _rDependentWindow1, Window& _rDependentWindow2, Window& _rDependentWindow3 )
     185             :     {
     186           0 :         PDialogController pController( new RadioDependentEnabler( _rRadio ) );
     187           0 :         pController->addDependentWindow( _rDependentWindow1 );
     188           0 :         pController->addDependentWindow( _rDependentWindow2 );
     189           0 :         pController->addDependentWindow( _rDependentWindow3 );
     190           0 :         m_pImpl->aControllers.push_back( pController );
     191           0 :     }
     192             : 
     193             :     //---------------------------------------------------------------------
     194           0 :     void ControlDependencyManager::enableOnRadioCheck( RadioButton& _rRadio, Window& _rDependentWindow1, Window& _rDependentWindow2, Window& _rDependentWindow3, Window& _rDependentWindow4, Window& _rDependentWindow5 )
     195             :     {
     196           0 :         PDialogController pController( new RadioDependentEnabler( _rRadio ) );
     197           0 :         pController->addDependentWindow( _rDependentWindow1 );
     198           0 :         pController->addDependentWindow( _rDependentWindow2 );
     199           0 :         pController->addDependentWindow( _rDependentWindow3 );
     200           0 :         pController->addDependentWindow( _rDependentWindow4 );
     201           0 :         pController->addDependentWindow( _rDependentWindow5 );
     202           0 :         m_pImpl->aControllers.push_back( pController );
     203           0 :     }
     204             : 
     205             :     //---------------------------------------------------------------------
     206           0 :     void ControlDependencyManager::enableOnCheckMark( CheckBox& _rBox, Window& _rDependentWindow )
     207             :     {
     208           0 :         PDialogController pController( new RadioDependentEnabler( _rBox ) );
     209           0 :         pController->addDependentWindow( _rDependentWindow );
     210           0 :         m_pImpl->aControllers.push_back( pController );
     211           0 :     }
     212             : 
     213             :     //---------------------------------------------------------------------
     214           0 :     void ControlDependencyManager::enableOnCheckMark( CheckBox& _rBox, Window& _rDependentWindow1, Window& _rDependentWindow2 )
     215             :     {
     216           0 :         PDialogController pController( new RadioDependentEnabler( _rBox ) );
     217           0 :         pController->addDependentWindow( _rDependentWindow1 );
     218           0 :         pController->addDependentWindow( _rDependentWindow2 );
     219           0 :         m_pImpl->aControllers.push_back( pController );
     220           0 :     }
     221             : 
     222             :     //---------------------------------------------------------------------
     223           0 :     void ControlDependencyManager::enableOnCheckMark( CheckBox& _rBox, Window& _rDependentWindow1, Window& _rDependentWindow2, Window& _rDependentWindow3, Window& _rDependentWindow4 )
     224             :     {
     225           0 :         PDialogController pController( new RadioDependentEnabler( _rBox ) );
     226           0 :         pController->addDependentWindow( _rDependentWindow1 );
     227           0 :         pController->addDependentWindow( _rDependentWindow2 );
     228           0 :         pController->addDependentWindow( _rDependentWindow3 );
     229           0 :         pController->addDependentWindow( _rDependentWindow4 );
     230           0 :         m_pImpl->aControllers.push_back( pController );
     231           0 :     }
     232             : 
     233             : //........................................................................
     234             : } // namespace svt
     235             : //........................................................................
     236             : 
     237             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10