c067c24813
2009-09-08 11:46:26 +0200 tl r275921 : #i74816# use hi-contrast for all but for printer; namely use it for virtual devices as well 2009-08-25 10:14:46 +0200 tl r275337 : CWS-TOOLING: rebase CWS a11y32 to trunk@274622 (milestone: DEV300:m54) 2009-08-17 11:13:19 +0200 ab r275036 : #i71360# Added attribute support for misspelled 2009-07-24 14:28:11 +0200 tl r274306 : #i48354# fixed hierarchy order in SvHeaderTabListBox 2009-07-24 13:47:40 +0200 mav r274305 : #i102870# let roadmap control behave as a monolite tabstop control 2009-07-24 13:47:06 +0200 mav r274304 : #i102870# let roadmap control behave as a monolite tabstop control 2009-07-24 13:46:33 +0200 mav r274303 : #i102870# let roadmap control behave as a monolite tabstop control 2009-07-24 09:41:16 +0200 tl r274289 : #i74816# fixed evaluation of high-contrast-mode 2009-07-22 15:46:50 +0200 tl r274246 : warning-free-code fix when build with debug=t 2009-07-22 15:28:59 +0200 tl r274243 : #i74816# fixed evaluation of high-contrast-mode
149 lines
5.4 KiB
C++
149 lines
5.4 KiB
C++
/*************************************************************************
|
|
*
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: accessibletablistbox.cxx,v $
|
|
* $Revision: 1.3 $
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
* only, as published by the Free Software Foundation.
|
|
*
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License version 3 for more details
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_accessibility.hxx"
|
|
|
|
#ifndef ACCESSIBILITY_EXT_ACCESSIBLETABLISTBOX_HXX_
|
|
#include "accessibility/extended/accessibletablistbox.hxx"
|
|
#endif
|
|
#include "accessibility/extended/accessibletablistboxtable.hxx"
|
|
#include <svtools/svtabbx.hxx>
|
|
#include <comphelper/sequence.hxx>
|
|
|
|
//........................................................................
|
|
namespace accessibility
|
|
{
|
|
//........................................................................
|
|
|
|
// class TLBSolarGuard ---------------------------------------------------------
|
|
|
|
/** Aquire the solar mutex. */
|
|
class TLBSolarGuard : public ::vos::OGuard
|
|
{
|
|
public:
|
|
inline TLBSolarGuard() : ::vos::OGuard( Application::GetSolarMutex() ) {}
|
|
};
|
|
|
|
// class AccessibleTabListBox -----------------------------------------------------
|
|
|
|
using namespace ::com::sun::star::accessibility;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star;
|
|
|
|
DBG_NAME(AccessibleTabListBox)
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Ctor() and Dtor()
|
|
// -----------------------------------------------------------------------------
|
|
AccessibleTabListBox::AccessibleTabListBox( const Reference< XAccessible >& rxParent, SvHeaderTabListBox& rBox )
|
|
:AccessibleBrowseBox( rxParent, NULL, rBox )
|
|
,m_pTabListBox( &rBox )
|
|
|
|
{
|
|
DBG_CTOR( AccessibleTabListBox, NULL );
|
|
|
|
osl_incrementInterlockedCount( &m_refCount );
|
|
{
|
|
setCreator( this );
|
|
}
|
|
osl_decrementInterlockedCount( &m_refCount );
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
AccessibleTabListBox::~AccessibleTabListBox()
|
|
{
|
|
DBG_DTOR( AccessibleTabListBox, NULL );
|
|
|
|
if ( isAlive() )
|
|
{
|
|
// increment ref count to prevent double call of Dtor
|
|
osl_incrementInterlockedCount( &m_refCount );
|
|
dispose();
|
|
}
|
|
}
|
|
// -----------------------------------------------------------------------------
|
|
AccessibleBrowseBoxTable* AccessibleTabListBox::createAccessibleTable()
|
|
{
|
|
return new AccessibleTabListBoxTable( this, *m_pTabListBox );
|
|
}
|
|
|
|
// XInterface -----------------------------------------------------------------
|
|
IMPLEMENT_FORWARD_XINTERFACE2( AccessibleTabListBox, AccessibleBrowseBox, AccessibleTabListBox_Base )
|
|
|
|
// XTypeProvider --------------------------------------------------------------
|
|
IMPLEMENT_FORWARD_XTYPEPROVIDER2( AccessibleTabListBox, AccessibleBrowseBox, AccessibleTabListBox_Base )
|
|
|
|
// XAccessibleContext ---------------------------------------------------------
|
|
|
|
sal_Int32 SAL_CALL AccessibleTabListBox::getAccessibleChildCount()
|
|
throw ( uno::RuntimeException )
|
|
{
|
|
return 2; // header and table
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
Reference< XAccessibleContext > SAL_CALL AccessibleTabListBox::getAccessibleContext() throw ( RuntimeException )
|
|
{
|
|
return this;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
Reference< XAccessible > SAL_CALL
|
|
AccessibleTabListBox::getAccessibleChild( sal_Int32 nChildIndex )
|
|
throw ( IndexOutOfBoundsException, RuntimeException )
|
|
{
|
|
TLBSolarGuard aSolarGuard;
|
|
::osl::MutexGuard aGuard( getOslMutex() );
|
|
ensureIsAlive();
|
|
|
|
if ( nChildIndex < 0 || nChildIndex > 1 )
|
|
throw IndexOutOfBoundsException();
|
|
|
|
Reference< XAccessible > xRet;
|
|
if (nChildIndex == 0)
|
|
{
|
|
//! so far the actual implementation object only supports column headers
|
|
xRet = implGetFixedChild( ::svt::BBINDEX_COLUMNHEADERBAR );
|
|
}
|
|
else if (nChildIndex == 1)
|
|
xRet = implGetFixedChild( ::svt::BBINDEX_TABLE );
|
|
|
|
if ( !xRet.is() )
|
|
throw RuntimeException();
|
|
|
|
return xRet;
|
|
}
|
|
|
|
//........................................................................
|
|
}// namespace accessibility
|
|
//........................................................................
|
|
|