LCOV - code coverage report
Current view: top level - libreoffice/accessibility/source/extended - AccessibleToolPanelDeckTabBarItem.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 148 0.0 %
Date: 2012-12-27 Functions: 0 41 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             : 
      21             : #include "accessibility/extended/AccessibleToolPanelDeckTabBarItem.hxx"
      22             : 
      23             : #include <com/sun/star/accessibility/AccessibleRole.hpp>
      24             : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
      25             : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
      26             : #include <com/sun/star/lang/DisposedException.hpp>
      27             : 
      28             : #include <svtools/toolpanel/toolpaneldeck.hxx>
      29             : #include <svtools/toolpanel/paneltabbar.hxx>
      30             : #include <unotools/accessiblestatesethelper.hxx>
      31             : #include <unotools/accessiblerelationsethelper.hxx>
      32             : #include <tools/diagnose_ex.h>
      33             : #include <vcl/svapp.hxx>
      34             : #include <osl/mutex.hxx>
      35             : 
      36             : //......................................................................................................................
      37             : namespace accessibility
      38             : {
      39             : //......................................................................................................................
      40             : 
      41             :     typedef ::com::sun::star::awt::Rectangle    UnoRectangle;
      42             :     typedef ::com::sun::star::awt::Point        UnoPoint;
      43             : 
      44             :     /** === begin UNO using === **/
      45             :     using ::com::sun::star::uno::Reference;
      46             :     using ::com::sun::star::uno::XInterface;
      47             :     using ::com::sun::star::uno::UNO_QUERY;
      48             :     using ::com::sun::star::uno::UNO_QUERY_THROW;
      49             :     using ::com::sun::star::uno::UNO_SET_THROW;
      50             :     using ::com::sun::star::uno::Exception;
      51             :     using ::com::sun::star::uno::RuntimeException;
      52             :     using ::com::sun::star::uno::Any;
      53             :     using ::com::sun::star::uno::makeAny;
      54             :     using ::com::sun::star::uno::Sequence;
      55             :     using ::com::sun::star::uno::Type;
      56             :     using ::com::sun::star::accessibility::XAccessible;
      57             :     using ::com::sun::star::lang::DisposedException;
      58             :     using ::com::sun::star::lang::IndexOutOfBoundsException;
      59             :     using ::com::sun::star::accessibility::XAccessibleRelationSet;
      60             :     using ::com::sun::star::accessibility::XAccessibleStateSet;
      61             :     using ::com::sun::star::accessibility::XAccessibleComponent;
      62             :     using ::com::sun::star::accessibility::XAccessibleExtendedComponent;
      63             :     using ::com::sun::star::awt::XFont;
      64             :     /** === end UNO using === **/
      65             : 
      66             :     namespace AccessibleRole = ::com::sun::star::accessibility::AccessibleRole;
      67             :     namespace AccessibleStateType = ::com::sun::star::accessibility::AccessibleStateType;
      68             :     namespace AccessibleEventId = ::com::sun::star::accessibility::AccessibleEventId;
      69             : 
      70             :     //==================================================================================================================
      71             :     //= AccessibleToolPanelDeckTabBarItem_Impl
      72             :     //==================================================================================================================
      73             :     class AccessibleToolPanelDeckTabBarItem_Impl : public ::svt::IToolPanelDeckListener
      74             :     {
      75             :     public:
      76             :         AccessibleToolPanelDeckTabBarItem_Impl(
      77             :             AccessibleToolPanelDeckTabBarItem& i_rAntiImpl,
      78             :             const Reference< XAccessible >& i_rAccessibleParent,
      79             :             ::svt::IToolPanelDeck& i_rPanelDeck,
      80             :             ::svt::PanelTabBar& i_rTabBar,
      81             :             const size_t i_nItemPos
      82             :         );
      83             :         virtual ~AccessibleToolPanelDeckTabBarItem_Impl();
      84             : 
      85           0 :         ::svt::PanelTabBar* getTabBar() const { return m_pTabBar; }
      86             : 
      87             :         // IToolPanelDeckListener
      88             :         virtual void PanelInserted( const ::svt::PToolPanel& i_pPanel, const size_t i_nPosition );
      89             :         virtual void PanelRemoved( const size_t i_nPosition );
      90             :         virtual void ActivePanelChanged( const ::boost::optional< size_t >& i_rOldActive, const ::boost::optional< size_t >& i_rNewActive );
      91             :         virtual void LayouterChanged( const ::svt::PDeckLayouter& i_rNewLayouter );
      92             :         virtual void Dying();
      93             : 
      94             :     public:
      95           0 :         bool    isDisposed() const { return m_pPanelDeck == NULL; }
      96             :         void    checkDisposed() const;
      97             :         void    dispose();
      98             : 
      99             :         const Reference< XAccessible >&
     100           0 :                 getAccessibleParent() const { return m_xAccessibleParent; }
     101           0 :         size_t  getItemPos() const { return m_nItemPos; }
     102             : 
     103             :         Reference< XAccessibleComponent >   getParentAccessibleComponent() const;
     104           0 :         ::svt::IToolPanelDeck*              getPanelDeck() const { return m_pPanelDeck; }
     105             :         OUString                            getPanelDisplayName();
     106             : 
     107             :     private:
     108             :         void impl_notifyBoundRectChanges();
     109             :         void impl_notifyStateChange( const sal_Int16 i_nLostState, const sal_Int16 i_nGainedState );
     110             : 
     111             :     private:
     112             :         AccessibleToolPanelDeckTabBarItem&  m_rAntiImpl;
     113             :         Reference< XAccessible >            m_xAccessibleParent;
     114             :         ::svt::IToolPanelDeck*              m_pPanelDeck;
     115             :         ::svt::PanelTabBar*                 m_pTabBar;
     116             :         size_t                              m_nItemPos;
     117             :     };
     118             : 
     119             :     //==================================================================================================================
     120             :     //= AccessibleToolPanelDeckTabBarItem_Impl
     121             :     //==================================================================================================================
     122             :     //------------------------------------------------------------------------------------------------------------------
     123           0 :     AccessibleToolPanelDeckTabBarItem_Impl::AccessibleToolPanelDeckTabBarItem_Impl( AccessibleToolPanelDeckTabBarItem& i_rAntiImpl,
     124             :             const Reference< XAccessible >& i_rAccessibleParent, ::svt::IToolPanelDeck& i_rPanelDeck, ::svt::PanelTabBar& i_rTabBar,
     125             :             const size_t i_nItemPos )
     126             :         :m_rAntiImpl( i_rAntiImpl )
     127             :         ,m_xAccessibleParent( i_rAccessibleParent )
     128             :         ,m_pPanelDeck( &i_rPanelDeck )
     129             :         ,m_pTabBar( &i_rTabBar )
     130           0 :         ,m_nItemPos( i_nItemPos )
     131             :     {
     132           0 :         m_pPanelDeck->AddListener( *this );
     133           0 :     }
     134             : 
     135             :     //------------------------------------------------------------------------------------------------------------------
     136           0 :     AccessibleToolPanelDeckTabBarItem_Impl::~AccessibleToolPanelDeckTabBarItem_Impl()
     137             :     {
     138           0 :     }
     139             : 
     140             :     //------------------------------------------------------------------------------------------------------------------
     141           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::checkDisposed() const
     142             :     {
     143           0 :         if ( isDisposed() )
     144           0 :             throw DisposedException( OUString(), *&m_rAntiImpl );
     145           0 :     }
     146             : 
     147             :     //------------------------------------------------------------------------------------------------------------------
     148           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::dispose()
     149             :     {
     150           0 :         ENSURE_OR_RETURN_VOID( !isDisposed(), "AccessibleToolPanelDeckTabBarItem_Impl::dispose: disposed twice!" );
     151             : 
     152           0 :         m_xAccessibleParent.clear();
     153           0 :         m_pPanelDeck->RemoveListener( *this );
     154           0 :         m_pPanelDeck = NULL;
     155           0 :         m_pTabBar = NULL;
     156             :     }
     157             : 
     158             :     //------------------------------------------------------------------------------------------------------------------
     159           0 :     Reference< XAccessibleComponent > AccessibleToolPanelDeckTabBarItem_Impl::getParentAccessibleComponent() const
     160             :     {
     161           0 :         Reference< XAccessible > xAccessibleParent( m_rAntiImpl.getAccessibleParent(), UNO_QUERY_THROW );
     162           0 :         return Reference< XAccessibleComponent >( xAccessibleParent->getAccessibleContext(), UNO_QUERY );
     163             :     }
     164             : 
     165             :     //------------------------------------------------------------------------------------------------------------------
     166           0 :     OUString AccessibleToolPanelDeckTabBarItem_Impl::getPanelDisplayName()
     167             :     {
     168           0 :         const ::svt::PToolPanel pPanel( m_pPanelDeck->GetPanel( getItemPos() ) );
     169           0 :         if ( pPanel.get() == NULL )
     170           0 :             throw DisposedException();
     171           0 :         return pPanel->GetDisplayName();
     172             :     }
     173             : 
     174             :     //------------------------------------------------------------------------------------------------------------------
     175           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::impl_notifyBoundRectChanges()
     176             :     {
     177           0 :         m_rAntiImpl.NotifyAccessibleEvent( AccessibleEventId::BOUNDRECT_CHANGED, Any(), Any() );
     178           0 :     }
     179             : 
     180             :     //------------------------------------------------------------------------------------------------------------------
     181           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::impl_notifyStateChange( const sal_Int16 i_nLostState, const sal_Int16 i_nGainedState )
     182             :     {
     183             :         m_rAntiImpl.NotifyAccessibleEvent( AccessibleEventId::STATE_CHANGED,
     184             :             i_nLostState > -1 ? makeAny( i_nLostState ) : Any(),
     185             :             i_nGainedState > -1 ? makeAny( i_nGainedState ) : Any()
     186           0 :         );
     187           0 :     }
     188             : 
     189             :     //------------------------------------------------------------------------------------------------------------------
     190           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::PanelInserted( const ::svt::PToolPanel& i_pPanel, const size_t i_nPosition )
     191             :     {
     192             :         (void)i_pPanel;
     193           0 :         if ( i_nPosition <= m_nItemPos )
     194           0 :             ++m_nItemPos;
     195           0 :         impl_notifyBoundRectChanges();
     196           0 :     }
     197             : 
     198             :     //------------------------------------------------------------------------------------------------------------------
     199           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::PanelRemoved( const size_t i_nPosition )
     200             :     {
     201           0 :         if ( i_nPosition == m_nItemPos )
     202             :         {
     203           0 :             m_rAntiImpl.dispose();
     204             :         }
     205           0 :         else if ( i_nPosition < m_nItemPos )
     206             :         {
     207           0 :             --m_nItemPos;
     208           0 :             impl_notifyBoundRectChanges();
     209             :         }
     210           0 :     }
     211             : 
     212             :     //------------------------------------------------------------------------------------------------------------------
     213           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::ActivePanelChanged( const ::boost::optional< size_t >& i_rOldActive, const ::boost::optional< size_t >& i_rNewActive )
     214             :     {
     215           0 :         if ( m_nItemPos == i_rOldActive )
     216             :         {
     217           0 :             impl_notifyStateChange( AccessibleStateType::ACTIVE, -1 );
     218           0 :             impl_notifyStateChange( AccessibleStateType::SELECTED, -1 );
     219             :         }
     220           0 :         else if ( m_nItemPos == i_rNewActive )
     221             :         {
     222           0 :             impl_notifyStateChange( -1, AccessibleStateType::ACTIVE );
     223           0 :             impl_notifyStateChange( -1, AccessibleStateType::SELECTED );
     224             :         }
     225           0 :     }
     226             : 
     227             :     //------------------------------------------------------------------------------------------------------------------
     228           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::LayouterChanged( const ::svt::PDeckLayouter& i_rNewLayouter )
     229             :     {
     230             :         (void)i_rNewLayouter;
     231             :         // if the tool panel deck has a new layouter, then the old layouter, and thus all items it was
     232             :         // responsible for, died. So do we.
     233           0 :         dispose();
     234           0 :     }
     235             : 
     236             :     //------------------------------------------------------------------------------------------------------------------
     237           0 :     void AccessibleToolPanelDeckTabBarItem_Impl::Dying()
     238             :     {
     239             :         // if the tool panel deck is dying, then its layouter dies, so should we.
     240           0 :         dispose();
     241           0 :     }
     242             : 
     243             :     //==================================================================================================================
     244             :     //= ItemMethodGuard
     245             :     //==================================================================================================================
     246             :     class ItemMethodGuard
     247             :     {
     248             :     public:
     249           0 :         ItemMethodGuard( AccessibleToolPanelDeckTabBarItem_Impl& i_rImpl )
     250           0 :             :m_aGuard()
     251             :         {
     252           0 :             i_rImpl.checkDisposed();
     253           0 :         }
     254           0 :         ~ItemMethodGuard()
     255           0 :         {
     256           0 :         }
     257             : 
     258             :     private:
     259             :         SolarMutexGuard  m_aGuard;
     260             :     };
     261             : 
     262             :     //==================================================================================================================
     263             :     //= AccessibleToolPanelDeckTabBarItem
     264             :     //==================================================================================================================
     265             :     //------------------------------------------------------------------------------------------------------------------
     266           0 :     AccessibleToolPanelDeckTabBarItem::AccessibleToolPanelDeckTabBarItem( const Reference< XAccessible >& i_rAccessibleParent,
     267             :             ::svt::IToolPanelDeck& i_rPanelDeck, ::svt::PanelTabBar& i_rTabBar, const size_t i_nItemPos )
     268           0 :         :m_pImpl( new AccessibleToolPanelDeckTabBarItem_Impl( *this, i_rAccessibleParent, i_rPanelDeck, i_rTabBar, i_nItemPos ) )
     269             :     {
     270           0 :     }
     271             : 
     272             :     //------------------------------------------------------------------------------------------------------------------
     273           0 :     AccessibleToolPanelDeckTabBarItem::~AccessibleToolPanelDeckTabBarItem()
     274             :     {
     275           0 :     }
     276             : 
     277             :     //--------------------------------------------------------------------
     278           0 :     sal_Int32 SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleChildCount(  ) throw (RuntimeException)
     279             :     {
     280           0 :         return 0;
     281             :     }
     282             : 
     283             :     //--------------------------------------------------------------------
     284           0 :     Reference< XAccessible > SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException)
     285             :     {
     286             :         (void)i;
     287           0 :         throw IndexOutOfBoundsException( OUString(), *this );
     288             :     }
     289             : 
     290             :     //--------------------------------------------------------------------
     291           0 :     Reference< XAccessible > SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleParent(  ) throw (RuntimeException)
     292             :     {
     293           0 :         ItemMethodGuard aGuard( *m_pImpl );
     294           0 :         return m_pImpl->getAccessibleParent();
     295             :     }
     296             : 
     297             :     //--------------------------------------------------------------------
     298           0 :     sal_Int16 SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleRole(  ) throw (RuntimeException)
     299             :     {
     300           0 :         return AccessibleRole::PAGE_TAB;
     301             :     }
     302             : 
     303             :     //--------------------------------------------------------------------
     304           0 :     OUString SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleDescription(  ) throw (RuntimeException)
     305             :     {
     306           0 :         ItemMethodGuard aGuard( *m_pImpl );
     307           0 :         return m_pImpl->getPanelDisplayName();
     308             :     }
     309             : 
     310             :     //--------------------------------------------------------------------
     311           0 :     OUString SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleName(  ) throw (RuntimeException)
     312             :     {
     313           0 :         ItemMethodGuard aGuard( *m_pImpl );
     314           0 :         return m_pImpl->getPanelDisplayName();
     315             :     }
     316             : 
     317             :     //--------------------------------------------------------------------
     318           0 :     Reference< XAccessibleRelationSet > SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleRelationSet(  ) throw (RuntimeException)
     319             :     {
     320           0 :         ItemMethodGuard aGuard( *m_pImpl );
     321           0 :         ::utl::AccessibleRelationSetHelper* pRelationSet = new utl::AccessibleRelationSetHelper;
     322           0 :         return pRelationSet;
     323             :     }
     324             : 
     325             :     //--------------------------------------------------------------------
     326           0 :     Reference< XAccessibleStateSet > SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleStateSet(  ) throw (RuntimeException)
     327             :     {
     328           0 :         ItemMethodGuard aGuard( *m_pImpl );
     329             : 
     330           0 :         ::utl::AccessibleStateSetHelper* pStateSet( new ::utl::AccessibleStateSetHelper );
     331           0 :         pStateSet->AddState( AccessibleStateType::FOCUSABLE );
     332           0 :         pStateSet->AddState( AccessibleStateType::SELECTABLE );
     333           0 :         pStateSet->AddState( AccessibleStateType::ICONIFIED );
     334             : 
     335           0 :         if ( m_pImpl->getItemPos() == m_pImpl->getPanelDeck()->GetActivePanel() )
     336             :         {
     337           0 :             pStateSet->AddState( AccessibleStateType::ACTIVE );
     338           0 :             pStateSet->AddState( AccessibleStateType::SELECTED );
     339             :         }
     340             : 
     341           0 :         if ( m_pImpl->getItemPos() == m_pImpl->getTabBar()->GetFocusedPanelItem() )
     342           0 :             pStateSet->AddState( AccessibleStateType::FOCUSED );
     343             : 
     344           0 :         if ( m_pImpl->getTabBar()->IsEnabled() )
     345           0 :             pStateSet->AddState( AccessibleStateType::ENABLED );
     346             : 
     347           0 :         if ( m_pImpl->getTabBar()->IsVisible() )
     348             :         {
     349           0 :             pStateSet->AddState( AccessibleStateType::SHOWING );
     350           0 :             pStateSet->AddState( AccessibleStateType::VISIBLE );
     351             :         }
     352             : 
     353           0 :         return pStateSet;
     354             :     }
     355             : 
     356             : 
     357             :     //--------------------------------------------------------------------
     358           0 :     Reference< XAccessible > SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleAtPoint( const UnoPoint& i_rLocation ) throw (RuntimeException)
     359             :     {
     360           0 :         ItemMethodGuard aGuard( *m_pImpl );
     361             :         // we do not have children ...
     362             :         (void)i_rLocation;
     363           0 :         return NULL;
     364             :     }
     365             : 
     366             :     //--------------------------------------------------------------------
     367           0 :     void SAL_CALL AccessibleToolPanelDeckTabBarItem::grabFocus(  ) throw (RuntimeException)
     368             :     {
     369           0 :         ItemMethodGuard aGuard( *m_pImpl );
     370           0 :         m_pImpl->getTabBar()->FocusPanelItem( m_pImpl->getItemPos() );
     371           0 :     }
     372             : 
     373             :     //--------------------------------------------------------------------
     374           0 :     ::sal_Int32 SAL_CALL AccessibleToolPanelDeckTabBarItem::getForeground(  ) throw (RuntimeException)
     375             :     {
     376           0 :         ItemMethodGuard aGuard( *m_pImpl );
     377           0 :         Reference< XAccessibleComponent > xParentComponent( m_pImpl->getParentAccessibleComponent(), UNO_SET_THROW );
     378           0 :         return xParentComponent->getForeground();
     379             :     }
     380             : 
     381             :     //--------------------------------------------------------------------
     382           0 :     ::sal_Int32 SAL_CALL AccessibleToolPanelDeckTabBarItem::getBackground(  ) throw (RuntimeException)
     383             :     {
     384           0 :         ItemMethodGuard aGuard( *m_pImpl );
     385           0 :         Reference< XAccessibleComponent > xParentComponent( m_pImpl->getParentAccessibleComponent(), UNO_SET_THROW );
     386           0 :         return xParentComponent->getBackground();
     387             :     }
     388             : 
     389             :     //--------------------------------------------------------------------
     390           0 :     Reference< XFont > SAL_CALL AccessibleToolPanelDeckTabBarItem::getFont(  ) throw (RuntimeException)
     391             :     {
     392           0 :         ItemMethodGuard aGuard( *m_pImpl );
     393           0 :         Reference< XAccessibleExtendedComponent > xParentComponent( m_pImpl->getParentAccessibleComponent(), UNO_QUERY_THROW );
     394             :         // TODO: strictly, this is not correct: The TabBar implementation of the TabLayouter might use
     395             :         // a different font ...
     396           0 :         return xParentComponent->getFont();
     397             :     }
     398             : 
     399             :     //--------------------------------------------------------------------
     400           0 :     OUString SAL_CALL AccessibleToolPanelDeckTabBarItem::getTitledBorderText(  ) throw (RuntimeException)
     401             :     {
     402           0 :         ItemMethodGuard aGuard( *m_pImpl );
     403             :         // no support
     404           0 :         return OUString();
     405             :     }
     406             : 
     407             :     //--------------------------------------------------------------------
     408           0 :     OUString SAL_CALL AccessibleToolPanelDeckTabBarItem::getToolTipText(  ) throw (RuntimeException)
     409             :     {
     410           0 :         ItemMethodGuard aGuard( *m_pImpl );
     411           0 :         return m_pImpl->getPanelDisplayName();
     412             :     }
     413             : 
     414             :     //--------------------------------------------------------------------
     415           0 :     UnoRectangle SAL_CALL AccessibleToolPanelDeckTabBarItem::implGetBounds() throw (RuntimeException)
     416             :     {
     417           0 :         ItemMethodGuard aGuard( *m_pImpl );
     418             : 
     419           0 :         const ::Rectangle aItemScreenRect( m_pImpl->getTabBar()->GetItemScreenRect( m_pImpl->getItemPos() ) );
     420             : 
     421           0 :         Reference< XAccessibleComponent > xParentComponent( m_pImpl->getParentAccessibleComponent(), UNO_SET_THROW );
     422           0 :         const UnoPoint aParentLocation( xParentComponent->getLocationOnScreen() );
     423             :         return UnoRectangle(
     424           0 :             aItemScreenRect.Left() - aParentLocation.X,
     425           0 :             aItemScreenRect.Top() - aParentLocation.Y,
     426           0 :             aItemScreenRect.GetWidth(),
     427           0 :             aItemScreenRect.GetHeight()
     428           0 :         );
     429             :     }
     430             : 
     431             :     //--------------------------------------------------------------------
     432           0 :     void SAL_CALL AccessibleToolPanelDeckTabBarItem::disposing()
     433             :     {
     434           0 :         ItemMethodGuard aGuard( *m_pImpl );
     435           0 :         m_pImpl->dispose();
     436           0 :     }
     437             : 
     438             : //......................................................................................................................
     439             : } // namespace accessibility
     440             : //......................................................................................................................
     441             : 
     442             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10