10841af79SAndrew Rist /**************************************************************
2*f9006ef4Smseidel  *
30841af79SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
40841af79SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
50841af79SAndrew Rist  * distributed with this work for additional information
60841af79SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
70841af79SAndrew Rist  * to you under the Apache License, Version 2.0 (the
80841af79SAndrew Rist  * "License"); you may not use this file except in compliance
90841af79SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*f9006ef4Smseidel  *
110841af79SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*f9006ef4Smseidel  *
130841af79SAndrew Rist  * Unless required by applicable law or agreed to in writing,
140841af79SAndrew Rist  * software distributed under the License is distributed on an
150841af79SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160841af79SAndrew Rist  * KIND, either express or implied.  See the License for the
170841af79SAndrew Rist  * specific language governing permissions and limitations
180841af79SAndrew Rist  * under the License.
19*f9006ef4Smseidel  *
200841af79SAndrew Rist  *************************************************************/
210841af79SAndrew Rist 
220841af79SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_accessibility.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef ACCESSIBILITY_EXT_ACCESSIBLETABLISTBOX_HXX_
28cdf0e10cSrcweir #include "accessibility/extended/accessibletablistbox.hxx"
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir #include "accessibility/extended/accessibletablistboxtable.hxx"
31cdf0e10cSrcweir #include <svtools/svtabbx.hxx>
32cdf0e10cSrcweir #include <comphelper/sequence.hxx>
33cdf0e10cSrcweir 
34cdf0e10cSrcweir //........................................................................
35cdf0e10cSrcweir namespace accessibility
36cdf0e10cSrcweir {
37cdf0e10cSrcweir //........................................................................
38cdf0e10cSrcweir 
39cdf0e10cSrcweir 	// class TLBSolarGuard ---------------------------------------------------------
40cdf0e10cSrcweir 
4107a3d7f1SPedro Giffuni 	/** Acquire the solar mutex. */
42cdf0e10cSrcweir 	class TLBSolarGuard : public ::vos::OGuard
43cdf0e10cSrcweir 	{
44cdf0e10cSrcweir 	public:
TLBSolarGuard()45*f9006ef4Smseidel 		inline TLBSolarGuard() : ::vos::OGuard( Application::GetSolarMutex() ) {}
46cdf0e10cSrcweir 	};
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	// class AccessibleTabListBox -----------------------------------------------------
49cdf0e10cSrcweir 
50cdf0e10cSrcweir 	using namespace ::com::sun::star::accessibility;
51cdf0e10cSrcweir 	using namespace ::com::sun::star::uno;
52cdf0e10cSrcweir 	using namespace ::com::sun::star::lang;
53cdf0e10cSrcweir 	using namespace ::com::sun::star;
54cdf0e10cSrcweir 
DBG_NAME(AccessibleTabListBox)55cdf0e10cSrcweir 	DBG_NAME(AccessibleTabListBox)
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 	// -----------------------------------------------------------------------------
58cdf0e10cSrcweir 	// Ctor() and Dtor()
59cdf0e10cSrcweir 	// -----------------------------------------------------------------------------
60cdf0e10cSrcweir 	AccessibleTabListBox::AccessibleTabListBox( const Reference< XAccessible >& rxParent, SvHeaderTabListBox& rBox )
61*f9006ef4Smseidel 		:AccessibleBrowseBox( rxParent, NULL, rBox )
62*f9006ef4Smseidel 		,m_pTabListBox( &rBox )
63cdf0e10cSrcweir 
64cdf0e10cSrcweir 	{
65cdf0e10cSrcweir 		DBG_CTOR( AccessibleTabListBox, NULL );
66cdf0e10cSrcweir 
67*f9006ef4Smseidel 		osl_incrementInterlockedCount( &m_refCount );
68*f9006ef4Smseidel 		{
69*f9006ef4Smseidel 			setCreator( this );
70*f9006ef4Smseidel 		}
71*f9006ef4Smseidel 		osl_decrementInterlockedCount( &m_refCount );
72cdf0e10cSrcweir 	}
73cdf0e10cSrcweir 
74cdf0e10cSrcweir 	// -----------------------------------------------------------------------------
~AccessibleTabListBox()75cdf0e10cSrcweir 	AccessibleTabListBox::~AccessibleTabListBox()
76cdf0e10cSrcweir 	{
77cdf0e10cSrcweir 		DBG_DTOR( AccessibleTabListBox, NULL );
78cdf0e10cSrcweir 
79cdf0e10cSrcweir 		if ( isAlive() )
80cdf0e10cSrcweir 		{
81cdf0e10cSrcweir 			// increment ref count to prevent double call of Dtor
82*f9006ef4Smseidel 			osl_incrementInterlockedCount( &m_refCount );
83*f9006ef4Smseidel 			dispose();
84cdf0e10cSrcweir 		}
85cdf0e10cSrcweir 	}
86cdf0e10cSrcweir 	// -----------------------------------------------------------------------------
createAccessibleTable()87cdf0e10cSrcweir 	AccessibleBrowseBoxTable* AccessibleTabListBox::createAccessibleTable()
88cdf0e10cSrcweir 	{
89cdf0e10cSrcweir 		return new AccessibleTabListBoxTable( this, *m_pTabListBox );
90cdf0e10cSrcweir 	}
91cdf0e10cSrcweir 
92*f9006ef4Smseidel 	// XInterface -----------------------------------------------------------------
IMPLEMENT_FORWARD_XINTERFACE2(AccessibleTabListBox,AccessibleBrowseBox,AccessibleTabListBox_Base)93*f9006ef4Smseidel 	IMPLEMENT_FORWARD_XINTERFACE2( AccessibleTabListBox, AccessibleBrowseBox, AccessibleTabListBox_Base )
94cdf0e10cSrcweir 
95*f9006ef4Smseidel 	// XTypeProvider --------------------------------------------------------------
96*f9006ef4Smseidel 	IMPLEMENT_FORWARD_XTYPEPROVIDER2( AccessibleTabListBox, AccessibleBrowseBox, AccessibleTabListBox_Base )
97cdf0e10cSrcweir 
98*f9006ef4Smseidel 	// XAccessibleContext ---------------------------------------------------------
99cdf0e10cSrcweir 
100cdf0e10cSrcweir 	sal_Int32 SAL_CALL AccessibleTabListBox::getAccessibleChildCount()
101*f9006ef4Smseidel 		throw ( uno::RuntimeException )
102cdf0e10cSrcweir 	{
103*f9006ef4Smseidel 		return 2; // header and table
104cdf0e10cSrcweir 	}
105cdf0e10cSrcweir 
106*f9006ef4Smseidel 	// -----------------------------------------------------------------------------
getAccessibleContext()107*f9006ef4Smseidel 	Reference< XAccessibleContext > SAL_CALL AccessibleTabListBox::getAccessibleContext() throw ( RuntimeException )
108*f9006ef4Smseidel 	{
109*f9006ef4Smseidel 		return this;
110*f9006ef4Smseidel 	}
111cdf0e10cSrcweir 
112*f9006ef4Smseidel 	// -----------------------------------------------------------------------------
113cdf0e10cSrcweir 	Reference< XAccessible > SAL_CALL
getAccessibleChild(sal_Int32 nChildIndex)114cdf0e10cSrcweir 	AccessibleTabListBox::getAccessibleChild( sal_Int32 nChildIndex )
115*f9006ef4Smseidel 		throw ( IndexOutOfBoundsException, RuntimeException )
116cdf0e10cSrcweir 	{
117*f9006ef4Smseidel 		TLBSolarGuard aSolarGuard;
118*f9006ef4Smseidel 		::osl::MutexGuard aGuard( getOslMutex() );
119*f9006ef4Smseidel 		ensureIsAlive();
120cdf0e10cSrcweir 
121cdf0e10cSrcweir 		if ( nChildIndex < 0 || nChildIndex > 1 )
122cdf0e10cSrcweir 			throw IndexOutOfBoundsException();
123cdf0e10cSrcweir 
124*f9006ef4Smseidel 		Reference< XAccessible > xRet;
125*f9006ef4Smseidel 		if (nChildIndex == 0)
126*f9006ef4Smseidel 		{
127*f9006ef4Smseidel 			//! so far the actual implementation object only supports column headers
128*f9006ef4Smseidel 			xRet = implGetFixedChild( ::svt::BBINDEX_COLUMNHEADERBAR );
129*f9006ef4Smseidel 		}
130*f9006ef4Smseidel 		else if (nChildIndex == 1)
131*f9006ef4Smseidel 			xRet = implGetFixedChild( ::svt::BBINDEX_TABLE );
132cdf0e10cSrcweir 
133*f9006ef4Smseidel 		if ( !xRet.is() )
134*f9006ef4Smseidel 			throw RuntimeException();
135cdf0e10cSrcweir 
136cdf0e10cSrcweir 		return xRet;
137cdf0e10cSrcweir 	}
138cdf0e10cSrcweir 
139cdf0e10cSrcweir //........................................................................
140cdf0e10cSrcweir }// namespace accessibility
141cdf0e10cSrcweir //........................................................................
142