LCOV - code coverage report
Current view: top level - libreoffice/accessibility/source/extended - AccessibleGridControlTableBase.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 112 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 "accessibility/extended/AccessibleGridControlTableBase.hxx"
      21             : #include <svtools/accessibletable.hxx>
      22             : #include <tools/multisel.hxx>
      23             : #include <comphelper/sequence.hxx>
      24             : #include <comphelper/servicehelper.hxx>
      25             : 
      26             : // ============================================================================
      27             : 
      28             : using ::com::sun::star::uno::Reference;
      29             : using ::com::sun::star::uno::Sequence;
      30             : using ::com::sun::star::uno::Any;
      31             : 
      32             : using namespace ::com::sun::star;
      33             : using namespace ::com::sun::star::accessibility;
      34             : using namespace ::svt;
      35             : using namespace ::svt::table;
      36             : 
      37             : // ============================================================================
      38             : 
      39             : namespace accessibility {
      40             : 
      41             : // ============================================================================
      42             : 
      43           0 : AccessibleGridControlTableBase::AccessibleGridControlTableBase(
      44             :         const Reference< XAccessible >& rxParent,
      45             :         IAccessibleTable& rTable,
      46             :         AccessibleTableControlObjType eObjType ) :
      47           0 :     GridControlAccessibleElement( rxParent, rTable, eObjType )
      48             : {
      49           0 : }
      50             : 
      51           0 : AccessibleGridControlTableBase::~AccessibleGridControlTableBase()
      52             : {
      53           0 : }
      54             : 
      55             : // XAccessibleContext ---------------------------------------------------------
      56             : 
      57           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleChildCount()
      58             :     throw ( uno::RuntimeException )
      59             : {
      60           0 :     SolarMutexGuard aSolarGuard;
      61           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
      62           0 :     ensureIsAlive();
      63           0 :     sal_Int32 nChildren = 0;
      64           0 :     if(m_eObjType == TCTYPE_ROWHEADERBAR)
      65           0 :         nChildren = m_aTable.GetRowCount();
      66           0 :     else if(m_eObjType == TCTYPE_TABLE)
      67           0 :         nChildren = m_aTable.GetRowCount()*m_aTable.GetColumnCount();
      68           0 :     else if(m_eObjType == TCTYPE_COLUMNHEADERBAR)
      69           0 :         nChildren = m_aTable.GetColumnCount();
      70           0 :     return nChildren;
      71             : }
      72             : 
      73           0 : sal_Int16 SAL_CALL AccessibleGridControlTableBase::getAccessibleRole()
      74             :     throw ( uno::RuntimeException )
      75             : {
      76           0 :     ensureIsAlive();
      77           0 :     return AccessibleRole::TABLE;
      78             : }
      79             : 
      80             : // XAccessibleTable -----------------------------------------------------------
      81             : 
      82           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleRowCount()
      83             :     throw ( uno::RuntimeException )
      84             : {
      85           0 :     SolarMutexGuard aSolarGuard;
      86           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
      87           0 :     ensureIsAlive();
      88           0 :     return  m_aTable.GetRowCount();
      89             : }
      90             : 
      91           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleColumnCount()
      92             :     throw ( uno::RuntimeException )
      93             : {
      94           0 :     SolarMutexGuard aSolarGuard;
      95           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
      96           0 :     ensureIsAlive();
      97           0 :     return m_aTable.GetColumnCount();
      98             : }
      99             : 
     100           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleRowExtentAt(
     101             :         sal_Int32 nRow, sal_Int32 nColumn )
     102             :     throw ( lang::IndexOutOfBoundsException, uno::RuntimeException )
     103             : {
     104           0 :     SolarMutexGuard aSolarGuard;
     105           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
     106           0 :     ensureIsAlive();
     107           0 :     ensureIsValidAddress( nRow, nColumn );
     108           0 :     return 1;   // merged cells not supported
     109             : }
     110             : 
     111           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleColumnExtentAt(
     112             :         sal_Int32 nRow, sal_Int32 nColumn )
     113             :     throw ( lang::IndexOutOfBoundsException, uno::RuntimeException )
     114             : {
     115           0 :     SolarMutexGuard aSolarGuard;
     116           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
     117           0 :     ensureIsAlive();
     118           0 :     ensureIsValidAddress( nRow, nColumn );
     119           0 :     return 1;   // merged cells not supported
     120             : }
     121             : 
     122           0 : Reference< XAccessible > SAL_CALL AccessibleGridControlTableBase::getAccessibleCaption()
     123             :     throw ( uno::RuntimeException )
     124             : {
     125           0 :     ensureIsAlive();
     126           0 :     return NULL;    // not supported
     127             : }
     128             : 
     129           0 : Reference< XAccessible > SAL_CALL AccessibleGridControlTableBase::getAccessibleSummary()
     130             :     throw ( uno::RuntimeException )
     131             : {
     132           0 :     ensureIsAlive();
     133           0 :     return NULL;    // not supported
     134             : }
     135             : 
     136           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleIndex(
     137             :         sal_Int32 nRow, sal_Int32 nColumn )
     138             :     throw ( lang::IndexOutOfBoundsException, uno::RuntimeException )
     139             : {
     140           0 :     SolarMutexGuard aSolarGuard;
     141           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
     142           0 :     ensureIsAlive();
     143           0 :     ensureIsValidAddress( nRow, nColumn );
     144           0 :     return implGetChildIndex( nRow, nColumn );
     145             : }
     146             : 
     147           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleRow( sal_Int32 nChildIndex )
     148             :     throw ( lang::IndexOutOfBoundsException, uno::RuntimeException )
     149             : {
     150           0 :     SolarMutexGuard aSolarGuard;
     151           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
     152           0 :     ensureIsAlive();
     153           0 :     ensureIsValidIndex( nChildIndex );
     154           0 :     return implGetRow( nChildIndex );
     155             : }
     156             : 
     157           0 : sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleColumn( sal_Int32 nChildIndex )
     158             :     throw ( lang::IndexOutOfBoundsException, uno::RuntimeException )
     159             : {
     160           0 :     SolarMutexGuard aSolarGuard;
     161           0 :     ::osl::MutexGuard aGuard( getOslMutex() );
     162           0 :     ensureIsAlive();
     163           0 :     ensureIsValidIndex( nChildIndex );
     164           0 :     return implGetColumn( nChildIndex );
     165             : }
     166             : 
     167             : // XInterface -----------------------------------------------------------------
     168             : 
     169           0 : Any SAL_CALL AccessibleGridControlTableBase::queryInterface( const uno::Type& rType )
     170             :     throw ( uno::RuntimeException )
     171             : {
     172           0 :     Any aAny( GridControlAccessibleElement::queryInterface( rType ) );
     173           0 :     return aAny.hasValue() ?
     174           0 :         aAny : AccessibleGridControlTableImplHelper::queryInterface( rType );
     175             : }
     176             : 
     177           0 : void SAL_CALL AccessibleGridControlTableBase::acquire() throw ()
     178             : {
     179           0 :     GridControlAccessibleElement::acquire();
     180           0 : }
     181             : 
     182           0 : void SAL_CALL AccessibleGridControlTableBase::release() throw ()
     183             : {
     184           0 :     GridControlAccessibleElement::release();
     185           0 : }
     186             : 
     187             : // XTypeProvider --------------------------------------------------------------
     188             : 
     189           0 : Sequence< uno::Type > SAL_CALL AccessibleGridControlTableBase::getTypes()
     190             :     throw ( uno::RuntimeException )
     191             : {
     192             :     return ::comphelper::concatSequences(
     193             :         GridControlAccessibleElement::getTypes(),
     194           0 :         AccessibleGridControlTableImplHelper::getTypes() );
     195             : }
     196             : 
     197             : namespace
     198             : {
     199             :     class theAccessibleGridControlTableBaseImplementationId : public rtl::Static< UnoTunnelIdInit, theAccessibleGridControlTableBaseImplementationId > {};
     200             : }
     201             : 
     202           0 : Sequence< sal_Int8 > SAL_CALL AccessibleGridControlTableBase::getImplementationId()
     203             :     throw ( uno::RuntimeException )
     204             : {
     205           0 :     return theAccessibleGridControlTableBaseImplementationId::get().getSeq();
     206             : }
     207             : 
     208             : // internal helper methods ----------------------------------------------------
     209             : 
     210           0 : sal_Int32 AccessibleGridControlTableBase::implGetChildCount() const
     211             : {
     212           0 :     return m_aTable.GetRowCount()*m_aTable.GetColumnCount();
     213             : }
     214             : 
     215           0 : sal_Int32 AccessibleGridControlTableBase::implGetRow( sal_Int32 nChildIndex ) const
     216             : {
     217           0 :     sal_Int32 nColumns = m_aTable.GetColumnCount();
     218           0 :     return nColumns ? (nChildIndex / nColumns) : 0;
     219             : }
     220             : 
     221           0 : sal_Int32 AccessibleGridControlTableBase::implGetColumn( sal_Int32 nChildIndex ) const
     222             : {
     223           0 :     sal_Int32 nColumns = m_aTable.GetColumnCount();
     224           0 :     return nColumns ? (nChildIndex % nColumns) : 0;
     225             : }
     226             : 
     227           0 : sal_Int32 AccessibleGridControlTableBase::implGetChildIndex(
     228             :         sal_Int32 nRow, sal_Int32 nColumn ) const
     229             : {
     230           0 :     return nRow * m_aTable.GetColumnCount() + nColumn;
     231             : }
     232             : 
     233           0 : void AccessibleGridControlTableBase::implGetSelectedRows( Sequence< sal_Int32 >& rSeq )
     234             : {
     235           0 :     sal_Int32 const selectionCount( m_aTable.GetSelectedRowCount() );
     236           0 :     rSeq.realloc( selectionCount );
     237           0 :     for ( sal_Int32 i=0; i<selectionCount; ++i )
     238           0 :         rSeq[i] = m_aTable.GetSelectedRowIndex(i);
     239           0 : }
     240             : 
     241           0 : void AccessibleGridControlTableBase::ensureIsValidRow( sal_Int32 nRow )
     242             :     throw ( lang::IndexOutOfBoundsException )
     243             : {
     244           0 :     if( nRow >= m_aTable.GetRowCount() )
     245             :         throw lang::IndexOutOfBoundsException(
     246           0 :             OUString( "row index is invalid" ), *this );
     247           0 : }
     248             : 
     249           0 : void AccessibleGridControlTableBase::ensureIsValidColumn( sal_Int32 nColumn )
     250             :     throw ( lang::IndexOutOfBoundsException )
     251             : {
     252           0 :     if( nColumn >= m_aTable.GetColumnCount() )
     253             :         throw lang::IndexOutOfBoundsException(
     254           0 :             OUString( "column index is invalid" ), *this );
     255           0 : }
     256             : 
     257           0 : void AccessibleGridControlTableBase::ensureIsValidAddress(
     258             :         sal_Int32 nRow, sal_Int32 nColumn )
     259             :     throw ( lang::IndexOutOfBoundsException )
     260             : {
     261           0 :     ensureIsValidRow( nRow );
     262           0 :     ensureIsValidColumn( nColumn );
     263           0 : }
     264             : 
     265           0 : void AccessibleGridControlTableBase::ensureIsValidIndex( sal_Int32 nChildIndex )
     266             :     throw ( lang::IndexOutOfBoundsException )
     267             : {
     268           0 :     if( nChildIndex >= implGetChildCount() )
     269             :         throw lang::IndexOutOfBoundsException(
     270           0 :             OUString( "child index is invalid" ), *this );
     271           0 : }
     272             : 
     273             : // ============================================================================
     274             : 
     275             : } // namespace accessibility
     276             : 
     277             : // ============================================================================
     278             : 
     279             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10