LCOV - code coverage report
Current view: top level - svx/source/accessibility - charmapacc.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 411 0.0 %
Date: 2014-04-14 Functions: 0 93 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 <unotools/accessiblestatesethelper.hxx>
      21             : #include <vcl/svapp.hxx>
      22             : #include <stdio.h>
      23             : #include <svx/charmap.hxx>
      24             : #include "charmapacc.hxx"
      25             : #include <com/sun/star/accessibility/AccessibleRole.hpp>
      26             : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
      27             : #include <toolkit/helper/externallock.hxx>
      28             : #include <toolkit/helper/convert.hxx>
      29             : #include <osl/interlck.h>
      30             : #include <svx/dialmgr.hxx>
      31             : #include "accessibility.hrc"
      32             : #include <comphelper/types.hxx>
      33             : 
      34             : namespace svx
      35             : {
      36             :     using namespace comphelper;
      37             :     using namespace ::com::sun::star;
      38             :     using namespace ::com::sun::star::uno;
      39             :     using namespace ::com::sun::star::lang;
      40             :     using namespace ::com::sun::star::accessibility;
      41             : 
      42             : 
      43             : // - SvxShowCharSetVirtualAcc -
      44             : 
      45           0 : SvxShowCharSetVirtualAcc::SvxShowCharSetVirtualAcc( SvxShowCharSet* pParent ) : OAccessibleComponentHelper(new VCLExternalSolarLock())
      46             : ,mpParent( pParent )
      47           0 : ,m_pTable(NULL)
      48             : {
      49           0 :     osl_atomic_increment(&m_refCount);
      50             :     {
      51           0 :         lateInit(this);
      52             :     }
      53           0 :     osl_atomic_decrement(&m_refCount);
      54           0 : }
      55             : 
      56             : 
      57             : 
      58           0 : SvxShowCharSetVirtualAcc::~SvxShowCharSetVirtualAcc()
      59             : {
      60           0 :     ensureDisposed();
      61           0 :     delete getExternalLock();
      62           0 : }
      63             : 
      64           0 : IMPLEMENT_FORWARD_XINTERFACE2( SvxShowCharSetVirtualAcc, OAccessibleComponentHelper, OAccessibleHelper_Base_2 )
      65           0 : IMPLEMENT_FORWARD_XTYPEPROVIDER2( SvxShowCharSetVirtualAcc, OAccessibleComponentHelper, OAccessibleHelper_Base_2 )
      66             : 
      67           0 : void SAL_CALL SvxShowCharSetVirtualAcc::fireEvent(
      68             :                     const sal_Int16 _nEventId,
      69             :                     const ::com::sun::star::uno::Any& _rOldValue,
      70             :                     const ::com::sun::star::uno::Any& _rNewValue
      71             :                 )
      72             : {
      73           0 :     if ( m_pTable )
      74           0 :         m_pTable->fireEvent(_nEventId,_rOldValue,_rNewValue);
      75           0 : }
      76             : 
      77           0 : sal_Int32 SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleChildCount(  ) throw (RuntimeException, std::exception)
      78             : {
      79           0 :     OExternalLockGuard aGuard( this );
      80           0 :     ensureAlive();
      81           0 :     return ( mpParent->getScrollBar()->IsVisible() ) ? 2 : 1;
      82             : }
      83             : 
      84           0 : uno::Reference< css::accessibility::XAccessible > SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleAtPoint( const awt::Point& aPoint )
      85             :     throw (uno::RuntimeException, std::exception)
      86             : {
      87           0 :     OExternalLockGuard aGuard( this );
      88           0 :     ensureAlive();
      89             : 
      90           0 :     uno::Reference< css::accessibility::XAccessible >    xRet;
      91           0 :     const sal_uInt16 nItemId = sal::static_int_cast<sal_uInt16>(mpParent->PixelToMapIndex( Point( aPoint.X, aPoint.Y ) ));
      92             : 
      93           0 :     if( sal_uInt16(-1) != nItemId )
      94             :     {
      95           0 :         if ( !m_pTable )
      96           0 :             m_pTable = new SvxShowCharSetAcc(this);
      97           0 :         xRet = m_pTable;
      98             :     }
      99           0 :     else if ( mpParent->getScrollBar()->IsVisible() )
     100             :     {
     101           0 :         const Point aOutPos( mpParent->getScrollBar()->GetPosPixel() );
     102           0 :         const Size  aScrollBar = mpParent->getScrollBar()->GetOutputSizePixel();
     103           0 :         Rectangle aRect(aOutPos,aScrollBar);
     104             : 
     105           0 :         if ( aRect.IsInside(VCLPoint(aPoint)) )
     106           0 :             xRet = mpParent->getScrollBar()->GetAccessible();
     107             :     }
     108           0 :     return xRet;
     109             : }
     110             : 
     111           0 : uno::Any SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleKeyBinding()
     112             :     throw (uno::RuntimeException)
     113             : {
     114           0 :     return uno::Any();
     115             : }
     116             : 
     117           0 : void SAL_CALL SvxShowCharSetVirtualAcc::grabFocus()
     118             :     throw (uno::RuntimeException, std::exception)
     119             : {
     120           0 :     OExternalLockGuard aGuard( this );
     121           0 :     ensureAlive();
     122           0 :     mpParent->GrabFocus();
     123           0 : }
     124             : 
     125             : 
     126             : 
     127           0 : Reference< XAccessible > SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     128             : {
     129           0 :     OExternalLockGuard aGuard( this );
     130           0 :     ensureAlive();
     131           0 :     if ( mpParent->getScrollBar()->IsVisible() && i == 0 )
     132           0 :         return mpParent->getScrollBar()->GetAccessible();
     133           0 :     else if ( i == 1 )
     134             :     {
     135           0 :         if ( !m_xAcc.is() )
     136             :         {
     137           0 :             m_pTable = new SvxShowCharSetAcc(this);
     138           0 :             m_xAcc = m_pTable;
     139             :         }
     140             :     }
     141             :     else
     142           0 :         throw IndexOutOfBoundsException();
     143           0 :     return m_xAcc;
     144             : }
     145             : 
     146           0 : Reference< XAccessible > SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleParent(  ) throw (RuntimeException, std::exception)
     147             : {
     148           0 :     OExternalLockGuard aGuard( this );
     149           0 :     ensureAlive();
     150           0 :     Window*                                         pParent = mpParent->GetParent();
     151           0 :     uno::Reference< css::accessibility::XAccessible >    xRet;
     152             : 
     153           0 :     if ( pParent )
     154           0 :         xRet = pParent->GetAccessible();
     155             : 
     156           0 :     return xRet;
     157             : }
     158             : 
     159           0 : ::com::sun::star::awt::Rectangle SvxShowCharSetVirtualAcc::implGetBounds(  ) throw (RuntimeException)
     160             : {
     161           0 :     ::com::sun::star::awt::Rectangle aBounds ( 0, 0, 0, 0 );
     162           0 :     Window* pWindow = mpParent;
     163           0 :     if ( pWindow )
     164             :     {
     165           0 :         Rectangle aRect = pWindow->GetWindowExtentsRelative( NULL );
     166           0 :         aBounds = AWTRectangle( aRect );
     167           0 :         Window* pParent = pWindow->GetAccessibleParentWindow();
     168           0 :         if ( pParent )
     169             :         {
     170           0 :             Rectangle aParentRect = pParent->GetWindowExtentsRelative( NULL );
     171           0 :             ::com::sun::star::awt::Point aParentScreenLoc = AWTPoint( aParentRect.TopLeft() );
     172           0 :             aBounds.X -= aParentScreenLoc.X;
     173           0 :             aBounds.Y -= aParentScreenLoc.Y;
     174             :         }
     175             :     }
     176           0 :     return aBounds;
     177             : }
     178             : 
     179           0 : sal_Int16 SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleRole(  ) throw (RuntimeException, std::exception)
     180             : {
     181           0 :     return css::accessibility::AccessibleRole::SCROLL_PANE;
     182             : }
     183             : 
     184           0 : OUString SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleDescription(  ) throw (RuntimeException, std::exception)
     185             : {
     186           0 :     OExternalLockGuard aGuard( this );
     187           0 :     return SVX_RESSTR( RID_SVXSTR_CHARACTER_SELECTION);
     188             : }
     189             : 
     190           0 : OUString SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleName(  ) throw (RuntimeException, std::exception)
     191             : {
     192           0 :     OExternalLockGuard aGuard( this );
     193           0 :     return SVX_RESSTR( RID_SVXSTR_CHAR_SEL_DESC);
     194             : }
     195             : 
     196           0 : Reference< XAccessibleRelationSet > SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleRelationSet(  ) throw (RuntimeException, std::exception)
     197             : {
     198           0 :     return Reference< XAccessibleRelationSet >();
     199             : }
     200             : 
     201           0 : Reference< XAccessibleStateSet > SAL_CALL SvxShowCharSetVirtualAcc::getAccessibleStateSet(  ) throw (RuntimeException, std::exception)
     202             : {
     203           0 :     OExternalLockGuard aGuard( this );
     204             : 
     205           0 :     ::utl::AccessibleStateSetHelper*    pStateSet = new ::utl::AccessibleStateSetHelper;
     206             : 
     207           0 :     if( mpParent )
     208             :     {
     209             :         // SELECTABLE
     210           0 :         pStateSet->AddState( AccessibleStateType::FOCUSABLE );
     211           0 :         if ( mpParent->HasFocus() )
     212           0 :             pStateSet->AddState( AccessibleStateType::FOCUSED );
     213           0 :         if ( mpParent->IsActive() )
     214           0 :             pStateSet->AddState( AccessibleStateType::ACTIVE );
     215           0 :         if ( mpParent->IsEnabled() )
     216             :         {
     217           0 :             pStateSet->AddState( AccessibleStateType::ENABLED );
     218           0 :             pStateSet->AddState( AccessibleStateType::SENSITIVE );
     219             :         }
     220           0 :         if ( mpParent->IsReallyVisible() )
     221           0 :             pStateSet->AddState( AccessibleStateType::VISIBLE );
     222             :     }
     223             : 
     224           0 :     return pStateSet;
     225             : }
     226             : 
     227           0 : void SAL_CALL SvxShowCharSetVirtualAcc::disposing()
     228             : {
     229           0 :     OAccessibleContextHelper::disposing();
     230           0 :     if ( m_pTable )
     231           0 :         m_pTable->dispose();
     232           0 :     m_pTable = NULL;
     233           0 : }
     234             : 
     235             : 
     236             : // - SvxShowCharSetItem -
     237             : 
     238             : 
     239           0 : SvxShowCharSetItem::SvxShowCharSetItem( SvxShowCharSet& rParent,SvxShowCharSetAcc*  _pParent,sal_uInt16 _nPos ) :
     240             :     mrParent( rParent )
     241             :     ,mnId( _nPos )
     242             :     ,m_pItem(NULL)
     243           0 :     ,m_pParent(_pParent)
     244             : {
     245           0 : }
     246             : 
     247             : 
     248           0 : SvxShowCharSetItem::~SvxShowCharSetItem()
     249             : {
     250           0 :     if ( m_xAcc.is() )
     251             :     {
     252           0 :         m_pItem->ParentDestroyed();
     253           0 :         ClearAccessible();
     254             :     }
     255           0 : }
     256             : 
     257             : 
     258             : 
     259           0 : uno::Reference< css::accessibility::XAccessible > SvxShowCharSetItem::GetAccessible()
     260             : {
     261           0 :     if( !m_xAcc.is() )
     262             :     {
     263           0 :         m_pItem = new SvxShowCharSetItemAcc( this );
     264           0 :         m_xAcc = m_pItem;
     265             :     }
     266             : 
     267           0 :     return m_xAcc;
     268             : }
     269             : 
     270             : 
     271             : 
     272           0 : void SvxShowCharSetItem::ClearAccessible()
     273             : {
     274           0 :     if ( m_xAcc.is() )
     275             :     {
     276           0 :         m_pItem = NULL;
     277           0 :         m_xAcc  = NULL;
     278             :     }
     279           0 : }
     280             : 
     281             : 
     282             : 
     283             : // - SvxShowCharSetAcc -
     284             : 
     285             : 
     286           0 : SvxShowCharSetAcc::SvxShowCharSetAcc( SvxShowCharSetVirtualAcc* _pParent ) : OAccessibleSelectionHelper(new VCLExternalSolarLock())
     287           0 :   ,m_pParent( _pParent )
     288             : {
     289           0 :     osl_atomic_increment(&m_refCount);
     290             :     {
     291           0 :         lateInit(this);
     292             :     }
     293           0 :     osl_atomic_decrement(&m_refCount);
     294           0 : }
     295             : 
     296             : 
     297             : 
     298           0 : SvxShowCharSetAcc::~SvxShowCharSetAcc()
     299             : {
     300           0 :     ensureDisposed();
     301           0 :     delete getExternalLock();
     302           0 : }
     303             : 
     304           0 : void SAL_CALL SvxShowCharSetAcc::disposing()
     305             : {
     306           0 :     OAccessibleSelectionHelper::disposing();
     307           0 :     ::std::vector< Reference< XAccessible > >::iterator aIter = m_aChildren.begin();
     308           0 :     ::std::vector< Reference< XAccessible > >::iterator aEnd  = m_aChildren.end();
     309           0 :     for (;aIter != aEnd ; ++aIter)
     310           0 :         ::comphelper::disposeComponent(*aIter);
     311             : 
     312           0 :     m_aChildren.clear();
     313           0 :     m_pParent = NULL;
     314           0 : }
     315             : 
     316             : 
     317           0 : IMPLEMENT_FORWARD_XINTERFACE2( SvxShowCharSetAcc, OAccessibleSelectionHelper, OAccessibleHelper_Base )
     318           0 : IMPLEMENT_FORWARD_XTYPEPROVIDER2( SvxShowCharSetAcc, OAccessibleSelectionHelper, OAccessibleHelper_Base )
     319             : 
     320           0 : bool SvxShowCharSetAcc::implIsSelected( sal_Int32 nAccessibleChildIndex ) throw (RuntimeException)
     321             : {
     322           0 :     return m_pParent && m_pParent->getCharSetControl()->IsSelected(
     323           0 :         sal::static_int_cast<sal_uInt16>(nAccessibleChildIndex));
     324             : }
     325             : 
     326             :         // select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx)
     327           0 : void SvxShowCharSetAcc::implSelect( sal_Int32 nAccessibleChildIndex, sal_Bool bSelect ) throw (IndexOutOfBoundsException, RuntimeException)
     328             : {
     329           0 :     if ( m_pParent )
     330             :     {
     331           0 :         if ( bSelect )
     332           0 :             m_pParent->getCharSetControl()->SelectIndex(nAccessibleChildIndex, true);
     333             :         else
     334           0 :             m_pParent->getCharSetControl()->DeSelect();
     335             :     }
     336           0 : }
     337             : 
     338           0 : ::com::sun::star::awt::Rectangle SvxShowCharSetAcc::implGetBounds(  ) throw (RuntimeException)
     339             : {
     340           0 :     const Point   aOutPos;//( m_pParent->getCharSetControl()->GetPosPixel() );
     341           0 :     Size          aOutSize( m_pParent->getCharSetControl()->GetOutputSizePixel());
     342           0 :     if ( m_pParent->getCharSetControl()->getScrollBar()->IsVisible() )
     343             :     {
     344           0 :         const Size aScrollBar = m_pParent->getCharSetControl()->getScrollBar()->GetOutputSizePixel();
     345           0 :         aOutSize.Width() -= aScrollBar.Width();
     346             :     }
     347             : 
     348           0 :     awt::Rectangle aRet;
     349             : 
     350           0 :     aRet.X = aOutPos.X();
     351           0 :     aRet.Y = aOutPos.Y();
     352           0 :     aRet.Width = aOutSize.Width();
     353           0 :     aRet.Height = aOutSize.Height();
     354             : 
     355           0 :     return aRet;
     356             : }
     357             : 
     358           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleChildCount()
     359             :     throw (uno::RuntimeException, std::exception)
     360             : {
     361           0 :     OExternalLockGuard aGuard( this );
     362           0 :     ensureAlive();
     363           0 :     return m_pParent->getCharSetControl()->getMaxCharCount();
     364             : }
     365             : 
     366             : 
     367             : 
     368           0 : uno::Reference< css::accessibility::XAccessible > SAL_CALL SvxShowCharSetAcc::getAccessibleChild( sal_Int32 i )
     369             :     throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
     370             : {
     371           0 :     OExternalLockGuard aGuard( this );
     372           0 :     ensureAlive();
     373           0 :     uno::Reference< css::accessibility::XAccessible >    xRet;
     374           0 :     SvxShowCharSetItem* pItem = m_pParent->getCharSetControl()->ImplGetItem( static_cast< sal_uInt16 >( i ) );
     375             : 
     376           0 :     if( pItem )
     377             :     {
     378           0 :         pItem->m_pParent = this;
     379           0 :         xRet = pItem->GetAccessible();
     380           0 :         m_aChildren.push_back(xRet);
     381             :     }
     382             :     else
     383           0 :         throw lang::IndexOutOfBoundsException();
     384             : 
     385           0 :     return xRet;
     386             : }
     387             : 
     388             : 
     389             : 
     390           0 : uno::Reference< css::accessibility::XAccessible > SAL_CALL SvxShowCharSetAcc::getAccessibleParent()
     391             :     throw (uno::RuntimeException, std::exception)
     392             : {
     393           0 :     OExternalLockGuard aGuard( this );
     394           0 :     ensureAlive();
     395           0 :     return m_pParent;
     396             : }
     397             : 
     398             : 
     399             : 
     400           0 : sal_Int16 SAL_CALL SvxShowCharSetAcc::getAccessibleRole()
     401             :     throw (uno::RuntimeException, std::exception)
     402             : {
     403           0 :     return css::accessibility::AccessibleRole::TABLE;
     404             : }
     405             : 
     406             : 
     407             : 
     408           0 : OUString SAL_CALL SvxShowCharSetAcc::getAccessibleDescription()
     409             :     throw (uno::RuntimeException, std::exception)
     410             : {
     411           0 :     OExternalLockGuard aGuard( this );
     412           0 :     return SVX_RESSTR( RID_SVXSTR_CHARACTER_SELECTION );
     413             : }
     414             : 
     415             : 
     416             : 
     417           0 : OUString SAL_CALL SvxShowCharSetAcc::getAccessibleName()
     418             :     throw (uno::RuntimeException, std::exception)
     419             : {
     420           0 :     OExternalLockGuard aGuard( this );
     421           0 :     ensureAlive();
     422           0 :     return SVX_RESSTR( RID_SVXSTR_CHAR_SEL_DESC );
     423             : }
     424             : 
     425             : 
     426             : 
     427           0 : uno::Reference< css::accessibility::XAccessibleRelationSet > SAL_CALL SvxShowCharSetAcc::getAccessibleRelationSet()
     428             :     throw (uno::RuntimeException, std::exception)
     429             : {
     430           0 :     return uno::Reference< css::accessibility::XAccessibleRelationSet >();
     431             : }
     432             : 
     433             : 
     434             : 
     435           0 : uno::Reference< css::accessibility::XAccessibleStateSet > SAL_CALL SvxShowCharSetAcc::getAccessibleStateSet()
     436             :     throw (uno::RuntimeException, std::exception)
     437             : {
     438           0 :     OExternalLockGuard aGuard( this );
     439             : 
     440           0 :     ::utl::AccessibleStateSetHelper*    pStateSet = new ::utl::AccessibleStateSetHelper;
     441             : 
     442           0 :     if( m_pParent->getCharSetControl() )
     443             :     {
     444             :         // SELECTABLE
     445           0 :         pStateSet->AddState( AccessibleStateType::FOCUSABLE );
     446           0 :         if ( m_pParent->getCharSetControl()->HasFocus() )
     447           0 :             pStateSet->AddState( AccessibleStateType::FOCUSED );
     448           0 :         if ( m_pParent->getCharSetControl()->IsActive() )
     449           0 :             pStateSet->AddState( AccessibleStateType::ACTIVE );
     450           0 :         if ( m_pParent->getCharSetControl()->IsEnabled() )
     451             :         {
     452           0 :             pStateSet->AddState( AccessibleStateType::ENABLED );
     453           0 :             pStateSet->AddState( AccessibleStateType::SENSITIVE );
     454             :         }
     455           0 :         if ( m_pParent->getCharSetControl()->IsReallyVisible() )
     456           0 :             pStateSet->AddState( AccessibleStateType::VISIBLE );
     457             : 
     458           0 :         pStateSet->AddState( AccessibleStateType::MANAGES_DESCENDANTS );
     459             :     }
     460             : 
     461           0 :     return pStateSet;
     462             : }
     463             : 
     464             : 
     465           0 : uno::Reference< css::accessibility::XAccessible > SAL_CALL SvxShowCharSetAcc::getAccessibleAtPoint( const awt::Point& aPoint )
     466             :     throw (uno::RuntimeException, std::exception)
     467             : {
     468           0 :     OExternalLockGuard aGuard( this );
     469           0 :     ensureAlive();
     470             : 
     471           0 :     uno::Reference< css::accessibility::XAccessible >    xRet;
     472             :     const sal_uInt16 nItemId = sal::static_int_cast<sal_uInt16>(
     473           0 :         m_pParent->getCharSetControl()->PixelToMapIndex( Point( aPoint.X, aPoint.Y ) ));
     474             : 
     475           0 :     if( sal_uInt16(-1) != nItemId )
     476             :     {
     477           0 :         SvxShowCharSetItem* pItem = m_pParent->getCharSetControl()->ImplGetItem( nItemId );
     478           0 :         xRet = pItem->GetAccessible();
     479             :     }
     480           0 :     return xRet;
     481             : }
     482             : 
     483             : 
     484             : 
     485             : 
     486           0 : void SAL_CALL SvxShowCharSetAcc::grabFocus()
     487             :     throw (uno::RuntimeException, std::exception)
     488             : {
     489           0 :     OExternalLockGuard aGuard( this );
     490           0 :     ensureAlive();
     491           0 :     m_pParent->getCharSetControl()->GrabFocus();
     492           0 : }
     493             : 
     494             : 
     495             : 
     496           0 : uno::Any SAL_CALL SvxShowCharSetAcc::getAccessibleKeyBinding()
     497             :     throw (uno::RuntimeException)
     498             : {
     499           0 :     return uno::Any();
     500             : }
     501             : 
     502           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleRowCount(  ) throw (RuntimeException, std::exception)
     503             : {
     504           0 :     return ((getAccessibleChildCount()-1) / COLUMN_COUNT) + 1;
     505             : }
     506             : 
     507           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleColumnCount(  ) throw (RuntimeException, std::exception)
     508             : {
     509           0 :     return COLUMN_COUNT;
     510             : }
     511             : 
     512           0 : OUString SAL_CALL SvxShowCharSetAcc::getAccessibleRowDescription( sal_Int32 /*nRow*/ ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     513             : {
     514           0 :     return OUString();
     515             : }
     516             : 
     517           0 : OUString SAL_CALL SvxShowCharSetAcc::getAccessibleColumnDescription( sal_Int32 /*nColumn*/ ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     518             : {
     519           0 :     return OUString();
     520             : }
     521             : 
     522           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleRowExtentAt( sal_Int32 /*nRow*/, sal_Int32 /*nColumn*/ ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     523             : {
     524           0 :     return 1;
     525             : }
     526             : 
     527           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleColumnExtentAt( sal_Int32 /*nRow*/, sal_Int32 /*nColumn*/ ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     528             : {
     529           0 :     return 1;
     530             : }
     531             : 
     532           0 : Reference< XAccessibleTable > SAL_CALL SvxShowCharSetAcc::getAccessibleRowHeaders(  ) throw (RuntimeException, std::exception)
     533             : {
     534           0 :     return Reference< XAccessibleTable >();
     535             : }
     536             : 
     537           0 : Reference< XAccessibleTable > SAL_CALL SvxShowCharSetAcc::getAccessibleColumnHeaders(  ) throw (RuntimeException, std::exception)
     538             : {
     539           0 :     return Reference< XAccessibleTable >();
     540             : }
     541             : 
     542           0 : Sequence< sal_Int32 > SAL_CALL SvxShowCharSetAcc::getSelectedAccessibleRows(  ) throw (RuntimeException, std::exception)
     543             : {
     544           0 :     OExternalLockGuard aGuard( this );
     545           0 :     ensureAlive();
     546           0 :     Sequence< sal_Int32 > aSel(1);
     547           0 :     aSel[0] = m_pParent->getCharSetControl()->GetRowPos(m_pParent->getCharSetControl()->GetSelectIndexId());
     548           0 :     return aSel;
     549             : }
     550             : 
     551           0 : Sequence< sal_Int32 > SAL_CALL SvxShowCharSetAcc::getSelectedAccessibleColumns(  ) throw (RuntimeException, std::exception)
     552             : {
     553           0 :     OExternalLockGuard aGuard( this );
     554           0 :     ensureAlive();
     555           0 :     Sequence< sal_Int32 > aSel(1);
     556           0 :     aSel[0] = m_pParent->getCharSetControl()->GetColumnPos(m_pParent->getCharSetControl()->GetSelectIndexId());
     557           0 :     return aSel;
     558             : }
     559             : 
     560           0 : sal_Bool SAL_CALL SvxShowCharSetAcc::isAccessibleRowSelected( sal_Int32 nRow ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     561             : {
     562           0 :     OExternalLockGuard aGuard( this );
     563           0 :     ensureAlive();
     564           0 :     return m_pParent->getCharSetControl()->GetRowPos(m_pParent->getCharSetControl()->GetSelectIndexId()) == nRow;
     565             : }
     566             : 
     567           0 : sal_Bool SAL_CALL SvxShowCharSetAcc::isAccessibleColumnSelected( sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     568             : {
     569           0 :     OExternalLockGuard aGuard( this );
     570           0 :     ensureAlive();
     571           0 :     return m_pParent->getCharSetControl()->GetColumnPos(m_pParent->getCharSetControl()->GetSelectIndexId()) == nColumn;
     572             : }
     573             : 
     574           0 : Reference< XAccessible > SAL_CALL SvxShowCharSetAcc::getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     575             : {
     576           0 :     OExternalLockGuard aGuard( this );
     577           0 :     ensureAlive();
     578             :     ::svx::SvxShowCharSetItem* pItem = m_pParent->getCharSetControl()->ImplGetItem(
     579           0 :         sal::static_int_cast<sal_uInt16>(getAccessibleIndex(nRow,nColumn) ));
     580           0 :     if ( !pItem  )
     581           0 :         throw IndexOutOfBoundsException();
     582           0 :     return pItem->GetAccessible();
     583             : }
     584             : 
     585           0 : Reference< XAccessible > SAL_CALL SvxShowCharSetAcc::getAccessibleCaption(  ) throw (RuntimeException, std::exception)
     586             : {
     587           0 :     return Reference< XAccessible >();
     588             : }
     589             : 
     590           0 : Reference< XAccessible > SAL_CALL SvxShowCharSetAcc::getAccessibleSummary(  ) throw (RuntimeException, std::exception)
     591             : {
     592           0 :     return Reference< XAccessible >();
     593             : }
     594             : 
     595           0 : sal_Bool SAL_CALL SvxShowCharSetAcc::isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     596             : {
     597           0 :     OExternalLockGuard aGuard( this );
     598           0 :     ensureAlive();
     599           0 :     return m_pParent->getCharSetControl()->GetSelectIndexId() == getAccessibleIndex(nRow,nColumn);
     600             : }
     601             : 
     602           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleIndex( sal_Int32 nRow, sal_Int32 nColumn ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     603             : {
     604           0 :     return (nRow*COLUMN_COUNT) + nColumn;
     605             : }
     606             : 
     607           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleRow( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     608             : {
     609           0 :     OExternalLockGuard aGuard( this );
     610           0 :     ensureAlive();
     611           0 :     return m_pParent->getCharSetControl()->GetRowPos(sal::static_int_cast<sal_uInt16>(nChildIndex));
     612             : }
     613             : 
     614           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getAccessibleColumn( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
     615             : {
     616           0 :     OExternalLockGuard aGuard( this );
     617           0 :     ensureAlive();
     618           0 :     return m_pParent->getCharSetControl()->GetColumnPos(sal::static_int_cast<sal_uInt16>(nChildIndex));
     619             : }
     620             : 
     621             : 
     622             : 
     623             : 
     624             : // - SvxShowCharSetItemAcc -
     625             : 
     626             : 
     627           0 : SvxShowCharSetItemAcc::SvxShowCharSetItemAcc( SvxShowCharSetItem* pParent ) : OAccessibleComponentHelper(new VCLExternalSolarLock())
     628           0 : ,mpParent( pParent )
     629             : {
     630             :     OSL_ENSURE(pParent,"NO parent supplied!");
     631           0 :     osl_atomic_increment(&m_refCount);
     632             :     { // #b6211265 #
     633           0 :         lateInit(this);
     634             :     }
     635           0 :     osl_atomic_decrement(&m_refCount);
     636           0 : }
     637             : 
     638             : 
     639             : 
     640           0 : SvxShowCharSetItemAcc::~SvxShowCharSetItemAcc()
     641             : {
     642           0 :     ensureDisposed();
     643           0 :     delete getExternalLock();
     644           0 : }
     645             : 
     646           0 : IMPLEMENT_FORWARD_XINTERFACE2( SvxShowCharSetItemAcc, OAccessibleComponentHelper, OAccessibleHelper_Base_2 )
     647           0 : IMPLEMENT_FORWARD_XTYPEPROVIDER2( SvxShowCharSetItemAcc, OAccessibleComponentHelper, OAccessibleHelper_Base_2 )
     648             : 
     649             : 
     650           0 : void SvxShowCharSetItemAcc::ParentDestroyed()
     651             : {
     652           0 :     const ::osl::MutexGuard aGuard( GetMutex() );
     653           0 :     mpParent = NULL;
     654           0 : }
     655             : 
     656             : 
     657             : 
     658           0 : sal_Int32 SAL_CALL SvxShowCharSetItemAcc::getAccessibleChildCount()
     659             :     throw (uno::RuntimeException, std::exception)
     660             : {
     661           0 :     return 0;
     662             : }
     663             : 
     664             : 
     665             : 
     666           0 : uno::Reference< css::accessibility::XAccessible > SAL_CALL SvxShowCharSetItemAcc::getAccessibleChild( sal_Int32 /*i*/ )
     667             :     throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
     668             : {
     669           0 :     throw lang::IndexOutOfBoundsException();
     670             : }
     671             : 
     672             : 
     673             : 
     674           0 : uno::Reference< css::accessibility::XAccessible > SAL_CALL SvxShowCharSetItemAcc::getAccessibleParent()
     675             :     throw (uno::RuntimeException, std::exception)
     676             : {
     677           0 :     OExternalLockGuard aGuard( this );
     678           0 :     ensureAlive();
     679           0 :     return mpParent->m_pParent;
     680             : }
     681             : 
     682             : 
     683             : 
     684           0 : sal_Int16 SAL_CALL SvxShowCharSetItemAcc::getAccessibleRole()
     685             :     throw (uno::RuntimeException, std::exception)
     686             : {
     687           0 :     return css::accessibility::AccessibleRole::TABLE_CELL;
     688             : }
     689             : 
     690             : 
     691             : 
     692           0 : OUString SAL_CALL SvxShowCharSetItemAcc::getAccessibleDescription()
     693             :     throw (uno::RuntimeException, std::exception)
     694             : {
     695           0 :     OExternalLockGuard aGuard( this );
     696           0 :     ensureAlive();
     697           0 :     OUString sDescription = SVX_RESSTR( RID_SVXSTR_CHARACTER_CODE );
     698             : 
     699           0 :     const OUString aCharStr( mpParent->maText);
     700           0 :     sal_Int32 nStrIndex = 0;
     701           0 :     const sal_UCS4 c = aCharStr.iterateCodePoints( &nStrIndex );
     702           0 :     const int tmp_len = (c < 0x10000) ? 4 : 6;
     703           0 :     char buf[16] = "0x0000";
     704           0 :     sal_UCS4 c_Shifted = c;
     705           0 :     for( int i = 0; i < tmp_len; ++i )
     706             :     {
     707           0 :         char h = (char)(c_Shifted & 0x0F);
     708           0 :         buf[tmp_len+1-i] = (h > 9) ? (h - 10 + 'A') : (h + '0');
     709           0 :         c_Shifted >>= 4;
     710             :     }
     711           0 :     if( c < 256 )
     712           0 :         snprintf( buf+6, 10, " (%" SAL_PRIuUINT32 ")", c );
     713           0 :     sDescription += " " + OUString(buf, strlen(buf), RTL_TEXTENCODING_ASCII_US);
     714             : 
     715           0 :     return sDescription;
     716             : }
     717             : 
     718             : 
     719             : 
     720           0 : OUString SAL_CALL SvxShowCharSetItemAcc::getAccessibleName()
     721             :     throw (uno::RuntimeException, std::exception)
     722             : {
     723           0 :     OExternalLockGuard aGuard( this );
     724           0 :     ensureAlive();
     725           0 :     OUString aRet;
     726             : 
     727           0 :     if( mpParent )
     728             :     {
     729           0 :         aRet = mpParent->maText;
     730             : 
     731           0 :         if (aRet.isEmpty())
     732           0 :             aRet = getAccessibleDescription();
     733             :     }
     734             : 
     735           0 :     return aRet;
     736             : }
     737             : 
     738             : 
     739             : 
     740           0 : uno::Reference< css::accessibility::XAccessibleRelationSet > SAL_CALL SvxShowCharSetItemAcc::getAccessibleRelationSet()
     741             :     throw (uno::RuntimeException, std::exception)
     742             : {
     743           0 :     return uno::Reference< css::accessibility::XAccessibleRelationSet >();
     744             : }
     745             : 
     746             : 
     747             : 
     748           0 : uno::Reference< css::accessibility::XAccessibleStateSet > SAL_CALL SvxShowCharSetItemAcc::getAccessibleStateSet()
     749             :     throw (uno::RuntimeException, std::exception)
     750             : {
     751           0 :     OExternalLockGuard aGuard( this );
     752           0 :     ensureAlive();
     753             : 
     754           0 :     ::utl::AccessibleStateSetHelper*    pStateSet = new ::utl::AccessibleStateSetHelper;
     755             : 
     756           0 :     if( mpParent )
     757             :     {
     758           0 :         if (mpParent->mrParent.IsEnabled())
     759             :         {
     760           0 :             pStateSet->AddState( css::accessibility::AccessibleStateType::ENABLED );
     761             :             // SELECTABLE
     762           0 :             pStateSet->AddState( css::accessibility::AccessibleStateType::SELECTABLE );
     763           0 :             pStateSet->AddState( css::accessibility::AccessibleStateType::FOCUSABLE );
     764             :         }
     765             : 
     766             :         // SELECTED
     767           0 :         if( mpParent->mrParent.GetSelectIndexId() == mpParent->mnId )
     768             :         {
     769           0 :             pStateSet->AddState( css::accessibility::AccessibleStateType::SELECTED );
     770           0 :                pStateSet->AddState( css::accessibility::AccessibleStateType::FOCUSED );
     771             :         }
     772           0 :         if ( mpParent->mnId >= mpParent->mrParent.FirstInView() && mpParent->mnId <= mpParent->mrParent.LastInView() )
     773             :         {
     774           0 :             pStateSet->AddState( AccessibleStateType::VISIBLE );
     775           0 :             pStateSet->AddState( AccessibleStateType::SHOWING );
     776             :         }
     777           0 :         pStateSet->AddState( AccessibleStateType::TRANSIENT );
     778             :     }
     779             : 
     780           0 :     return pStateSet;
     781             : }
     782             : 
     783             : 
     784           0 : void SAL_CALL SvxShowCharSetItemAcc::grabFocus()
     785             :     throw (uno::RuntimeException, std::exception)
     786             : {
     787             :     // nothing to do
     788           0 : }
     789             : 
     790             : 
     791             : 
     792           0 : uno::Any SAL_CALL SvxShowCharSetItemAcc::getAccessibleKeyBinding()
     793             :     throw (uno::RuntimeException)
     794             : {
     795           0 :     return uno::Any();
     796             : }
     797             : 
     798           0 : awt::Rectangle SvxShowCharSetItemAcc::implGetBounds(  ) throw (RuntimeException)
     799             : {
     800           0 :     awt::Rectangle      aRet;
     801             : 
     802           0 :     if( mpParent )
     803             :     {
     804           0 :         Rectangle   aRect( mpParent->maRect );
     805           0 :         Point       aOrigin;
     806           0 :         Rectangle   aParentRect( aOrigin, mpParent->mrParent.GetOutputSizePixel() );
     807             : 
     808           0 :         aRect.Intersection( aParentRect );
     809             : 
     810           0 :         aRet.X = aRect.Left();
     811           0 :         aRet.Y = aRect.Top();
     812           0 :         aRet.Width = aRect.GetWidth();
     813           0 :         aRet.Height = aRect.GetHeight();
     814             :     }
     815             : 
     816           0 :     return aRet;
     817             : }
     818             : 
     819           0 : uno::Reference< css::accessibility::XAccessible > SAL_CALL SvxShowCharSetItemAcc::getAccessibleAtPoint( const awt::Point& /*aPoint*/ )
     820             :     throw (uno::RuntimeException, std::exception)
     821             : {
     822           0 :     return uno::Reference< css::accessibility::XAccessible >();
     823             : }
     824             : 
     825           0 : sal_Int32 SAL_CALL SvxShowCharSetVirtualAcc::getForeground(  ) throw (RuntimeException, std::exception)
     826             : {
     827           0 :     OExternalLockGuard aGuard( this );
     828             : 
     829           0 :     sal_Int32 nColor = 0;
     830           0 :     if ( mpParent )
     831             :     {
     832           0 :         if ( mpParent->IsControlForeground() )
     833           0 :             nColor = mpParent->GetControlForeground().GetColor();
     834             :         else
     835             :         {
     836           0 :             Font aFont;
     837           0 :             if ( mpParent->IsControlFont() )
     838           0 :                 aFont = mpParent->GetControlFont();
     839             :             else
     840           0 :                 aFont = mpParent->GetFont();
     841           0 :             nColor = aFont.GetColor().GetColor();
     842             :         }
     843             :     }
     844             : 
     845           0 :     return nColor;
     846             : }
     847             : 
     848           0 : sal_Int32 SAL_CALL SvxShowCharSetVirtualAcc::getBackground(  ) throw (RuntimeException, std::exception)
     849             : {
     850           0 :     OExternalLockGuard aGuard( this  );
     851           0 :     sal_Int32 nColor = 0;
     852           0 :     if ( mpParent )
     853             :     {
     854           0 :         if ( mpParent->IsControlBackground() )
     855           0 :             nColor = mpParent->GetControlBackground().GetColor();
     856             :         else
     857           0 :             nColor = mpParent->GetBackground().GetColor().GetColor();
     858             :     }
     859             : 
     860           0 :     return nColor;
     861             : }
     862             : 
     863           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getForeground(  ) throw (RuntimeException, std::exception)
     864             : {
     865           0 :     OExternalLockGuard aGuard( this );
     866             : 
     867           0 :     sal_Int32 nColor = 0;
     868           0 :     if ( m_pParent )
     869           0 :         nColor = m_pParent->getForeground();
     870           0 :     return nColor;
     871             : }
     872             : 
     873           0 : sal_Int32 SAL_CALL SvxShowCharSetAcc::getBackground(  ) throw (RuntimeException, std::exception)
     874             : {
     875           0 :     OExternalLockGuard aGuard( this  );
     876           0 :     sal_Int32 nColor = 0;
     877           0 :     if ( m_pParent )
     878           0 :         nColor = m_pParent->getBackground();
     879           0 :     return nColor;
     880             : }
     881             : 
     882             : 
     883             : 
     884             : } // namespace svx
     885             : 
     886             : 
     887             : 
     888             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10