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 <osl/mutex.hxx>
21 : #include <rtl/ustrbuf.hxx>
22 :
23 : #include <algorithm>
24 : #include <list>
25 : #include <set>
26 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
27 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
28 : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
29 : #include <com/sun/star/accessibility/AccessibleTableModelChange.hpp>
30 : #include <com/sun/star/accessibility/AccessibleTableModelChangeType.hpp>
31 : #include <unotools/accessiblestatesethelper.hxx>
32 : #include <vcl/svapp.hxx>
33 : #include <frmfmt.hxx>
34 : #include <tabfrm.hxx>
35 : #include <rowfrm.hxx>
36 : #include <cellfrm.hxx>
37 : #include <swtable.hxx>
38 : #include <crsrsh.hxx>
39 : #include <viscrs.hxx>
40 : #include <hints.hxx>
41 : #include <fesh.hxx>
42 : #include <accfrmobjslist.hxx>
43 : #include <accmap.hxx>
44 : #include <access.hrc>
45 : #include <acctable.hxx>
46 :
47 : #include <layfrm.hxx>
48 : #include <com/sun/star/accessibility/XAccessibleText.hpp>
49 :
50 : #include <editeng/brushitem.hxx>
51 : #include <swatrset.hxx>
52 : #include <frmatr.hxx>
53 :
54 : #include <comphelper/servicehelper.hxx>
55 : #include <cppuhelper/supportsservice.hxx>
56 :
57 : using namespace ::com::sun::star;
58 : using namespace ::com::sun::star::accessibility;
59 : using namespace ::sw::access;
60 :
61 : typedef ::std::less < sal_Int32 > Int32Less_Impl;
62 : typedef ::std::set < sal_Int32, Int32Less_Impl > Int32Set_Impl;
63 :
64 : typedef ::std::pair < sal_Int32, sal_Int32 > Int32Pair_Impl;
65 : typedef ::std::list < Int32Pair_Impl > Int32PairList_Impl;
66 :
67 : const unsigned int SELECTION_WITH_NUM = 10;
68 :
69 0 : class SwAccTableSelHander_Impl
70 : {
71 : public:
72 : virtual void Unselect( sal_Int32 nRowOrCol, sal_Int32 nExt ) = 0;
73 :
74 : protected:
75 0 : ~SwAccTableSelHander_Impl() {}
76 : };
77 :
78 2 : class SwAccessibleTableData_Impl
79 : {
80 : SwAccessibleMap& mrAccMap;
81 : Int32Set_Impl maRows;
82 : Int32Set_Impl maColumns;
83 : Int32PairList_Impl maExtents; // cell extends for event processing only
84 : Point maTabFrmPos;
85 : const SwTabFrm *mpTabFrm;
86 : bool mbIsInPagePreview;
87 : bool mbOnlyTableColumnHeader;
88 :
89 : void CollectData( const SwFrm *pFrm );
90 : void CollectColumnHeaderData( const SwFrm *pFrm );
91 : void CollectRowHeaderData( const SwFrm *pFrm );
92 : void CollectExtents( const SwFrm *pFrm );
93 :
94 : bool FindCell( const Point& rPos, const SwFrm *pFrm ,
95 : bool bExact, const SwFrm *& rFrm ) const;
96 :
97 : void GetSelection( const Point& rTabPos, const SwRect& rArea,
98 : const SwSelBoxes& rSelBoxes, const SwFrm *pFrm,
99 : SwAccTableSelHander_Impl& rSelHdl,
100 : bool bColumns ) const;
101 :
102 : // #i77106#
103 44 : inline bool IncludeRow( const SwFrm& rFrm ) const
104 : {
105 44 : return !mbOnlyTableColumnHeader ||
106 44 : mpTabFrm->IsInHeadline( rFrm );
107 : }
108 : public:
109 : // #i77106# - add third optional parameter <bOnlyTableColumnHeader>, default value <false>
110 : SwAccessibleTableData_Impl( SwAccessibleMap& rAccMap,
111 : const SwTabFrm *pTabFrm,
112 : bool bIsInPagePreview,
113 : bool bOnlyTableColumnHeader = false );
114 :
115 0 : const Int32Set_Impl& GetRows() const { return maRows; }
116 0 : const Int32Set_Impl& GetColumns() const { return maColumns; }
117 :
118 : inline Int32Set_Impl::const_iterator GetRowIter( sal_Int32 nRow ) const;
119 : inline Int32Set_Impl::const_iterator GetColumnIter( sal_Int32 nCol ) const;
120 :
121 : const SwFrm *GetCell( sal_Int32 nRow, sal_Int32 nColumn, bool bExact,
122 : SwAccessibleTable *pThis ) const
123 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception);
124 : const SwFrm *GetCellAtPos( sal_Int32 nLeft, sal_Int32 nTop,
125 : bool bExact ) const;
126 : inline sal_Int32 GetRowCount() const;
127 : inline sal_Int32 GetColumnCount() const;
128 : bool CompareExtents( const SwAccessibleTableData_Impl& r ) const;
129 :
130 : void GetSelection( sal_Int32 nStart, sal_Int32 nEnd,
131 : const SwSelBoxes& rSelBoxes,
132 : SwAccTableSelHander_Impl& rSelHdl,
133 : bool bColumns ) const;
134 :
135 : void CheckRowAndCol( sal_Int32 nRow, sal_Int32 nCol,
136 : SwAccessibleTable *pThis ) const
137 : throw(lang::IndexOutOfBoundsException );
138 :
139 : void GetRowColumnAndExtent( const SwRect& rBox,
140 : sal_Int32& rRow, sal_Int32& rColumn,
141 : sal_Int32& rRowExtent,
142 : sal_Int32& rColumnExtent ) const;
143 :
144 : const Point& GetTablePos() const { return maTabFrmPos; }
145 9 : void SetTablePos( const Point& rPos ) { maTabFrmPos = rPos; }
146 : };
147 :
148 33 : void SwAccessibleTableData_Impl::CollectData( const SwFrm *pFrm )
149 : {
150 33 : const SwAccessibleChildSList aList( *pFrm, mrAccMap );
151 33 : SwAccessibleChildSList::const_iterator aIter( aList.begin() );
152 66 : SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
153 132 : while( aIter != aEndIter )
154 : {
155 66 : const SwAccessibleChild& rLower = *aIter;
156 66 : const SwFrm *pLower = rLower.GetSwFrm();
157 66 : if( pLower )
158 : {
159 66 : if( pLower->IsRowFrm() )
160 : {
161 : // #i77106#
162 22 : if ( IncludeRow( *pLower ) )
163 : {
164 22 : maRows.insert( pLower->Frm().Top() - maTabFrmPos.getY() );
165 22 : CollectData( pLower );
166 : }
167 : }
168 88 : else if( pLower->IsCellFrm() &&
169 44 : rLower.IsAccessible( mbIsInPagePreview ) )
170 : {
171 44 : maColumns.insert( pLower->Frm().Left() - maTabFrmPos.getX() );
172 : }
173 : else
174 : {
175 0 : CollectData( pLower );
176 : }
177 : }
178 66 : ++aIter;
179 33 : }
180 33 : }
181 :
182 0 : void SwAccessibleTableData_Impl::CollectRowHeaderData( const SwFrm *pFrm )
183 : {
184 0 : const SwAccessibleChildSList aList( *pFrm, mrAccMap );
185 0 : SwAccessibleChildSList::const_iterator aIter( aList.begin() );
186 0 : SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
187 0 : while( aIter != aEndIter )
188 : {
189 0 : const SwAccessibleChild& rLower = *aIter;
190 0 : const SwFrm *pLower = rLower.GetSwFrm();
191 0 : if( pLower )
192 : {
193 0 : if( pLower->IsRowFrm() )
194 : {
195 :
196 0 : const SwTableLine* pLine = static_cast<const SwRowFrm*>(pLower)->GetTabLine();
197 0 : while( pLine->GetUpper() )
198 0 : pLine = pLine->GetUpper()->GetUpper();
199 :
200 : // Headerline?
201 : //if(mpTabFrm->GetTable()->GetTabLines()[ 0 ] != pLine)
202 : //return ;
203 :
204 0 : maRows.insert( pLower->Frm().Top() - maTabFrmPos.Y() );
205 :
206 0 : CollectRowHeaderData( pLower );
207 :
208 : }
209 0 : else if( pLower->IsCellFrm() &&
210 0 : rLower.IsAccessible( mbIsInPagePreview ) )
211 : {
212 : //Added by yanjun. Can't find the "GetRowHeaderFlag" function(Need vefiry).
213 : //if(static_cast<SwCellFrm*>(pLower)->GetRowHeaderFlag())
214 : // maColumns.insert( pLower->Frm().Left() - maTabFrmPos.X() );
215 : }
216 : else
217 : {
218 0 : CollectRowHeaderData( pLower );
219 : }
220 : }
221 0 : ++aIter;
222 0 : }
223 0 : }
224 :
225 0 : void SwAccessibleTableData_Impl::CollectColumnHeaderData( const SwFrm *pFrm )
226 : {
227 0 : const SwAccessibleChildSList aList( *pFrm, mrAccMap );
228 0 : SwAccessibleChildSList::const_iterator aIter( aList.begin() );
229 0 : SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
230 0 : while( aIter != aEndIter )
231 : {
232 0 : const SwAccessibleChild& rLower = *aIter;
233 0 : const SwFrm *pLower = rLower.GetSwFrm();
234 0 : if( pLower )
235 : {
236 0 : if( pLower->IsRowFrm() )
237 : {
238 :
239 0 : const SwTableLine* pLine = static_cast<const SwRowFrm*>(pLower)->GetTabLine();
240 0 : while( pLine->GetUpper() )
241 0 : pLine = pLine->GetUpper()->GetUpper();
242 :
243 : // Headerline?
244 : //if(mpTabFrm->GetTable()->GetTabLines()[ 0 ] != pLine)
245 : //return ;
246 :
247 : //if the current line is now header line, then return ;
248 0 : sal_Int16 iCurrentRowIndex = mpTabFrm->GetTable()->GetTabLines().GetPos( pLine);
249 0 : if(iCurrentRowIndex >= mpTabFrm->GetTable()->_GetRowsToRepeat())
250 0 : return ;
251 :
252 0 : maRows.insert( pLower->Frm().Top() - maTabFrmPos.Y() );
253 :
254 0 : CollectColumnHeaderData( pLower );
255 :
256 : }
257 0 : else if( pLower->IsCellFrm() &&
258 0 : rLower.IsAccessible( mbIsInPagePreview ) )
259 : {
260 0 : maColumns.insert( pLower->Frm().Left() - maTabFrmPos.X() );
261 : }
262 : else
263 : {
264 0 : CollectColumnHeaderData( pLower );
265 : }
266 : }
267 0 : ++aIter;
268 0 : }
269 : }
270 :
271 33 : void SwAccessibleTableData_Impl::CollectExtents( const SwFrm *pFrm )
272 : {
273 33 : const SwAccessibleChildSList aList( *pFrm, mrAccMap );
274 33 : SwAccessibleChildSList::const_iterator aIter( aList.begin() );
275 66 : SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
276 132 : while( aIter != aEndIter )
277 : {
278 66 : const SwAccessibleChild& rLower = *aIter;
279 66 : const SwFrm *pLower = rLower.GetSwFrm();
280 66 : if( pLower )
281 : {
282 110 : if( pLower->IsCellFrm() &&
283 44 : rLower.IsAccessible( mbIsInPagePreview ) )
284 : {
285 : sal_Int32 nRow, nCol;
286 44 : Int32Pair_Impl aCellExtents;
287 44 : GetRowColumnAndExtent( pLower->Frm(), nRow, nCol,
288 : aCellExtents.first,
289 44 : aCellExtents.second );
290 :
291 44 : maExtents.push_back( aCellExtents );
292 : }
293 : else
294 : {
295 : // #i77106#
296 44 : if ( !pLower->IsRowFrm() ||
297 22 : IncludeRow( *pLower ) )
298 : {
299 22 : CollectExtents( pLower );
300 : }
301 : }
302 : }
303 66 : ++aIter;
304 33 : }
305 33 : }
306 :
307 0 : bool SwAccessibleTableData_Impl::FindCell(
308 : const Point& rPos, const SwFrm *pFrm, bool bExact,
309 : const SwFrm *& rRet ) const
310 : {
311 0 : bool bFound = false;
312 :
313 0 : const SwAccessibleChildSList aList( *pFrm, mrAccMap );
314 0 : SwAccessibleChildSList::const_iterator aIter( aList.begin() );
315 0 : SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
316 0 : while( !bFound && aIter != aEndIter )
317 : {
318 0 : const SwAccessibleChild& rLower = *aIter;
319 0 : const SwFrm *pLower = rLower.GetSwFrm();
320 : OSL_ENSURE( pLower, "child should be a frame" );
321 0 : if( pLower )
322 : {
323 0 : if( rLower.IsAccessible( mbIsInPagePreview ) )
324 : {
325 : OSL_ENSURE( pLower->IsCellFrm(), "lower is not a cell frame" );
326 0 : const SwRect& rFrm = pLower->Frm();
327 0 : if( rFrm.Right() >= rPos.X() && rFrm.Bottom() >= rPos.Y() )
328 : {
329 : // We have found the cell
330 : OSL_ENSURE( rFrm.Left() <= rPos.X() && rFrm.Top() <= rPos.Y(),
331 : "find frame moved to far!" );
332 0 : bFound = true;
333 0 : if( !bExact ||
334 0 : (rFrm.Top() == rPos.Y() && rFrm.Left() == rPos.Y() ) )
335 : {
336 0 : rRet = pLower;
337 : }
338 : }
339 : }
340 : else
341 : {
342 : // #i77106#
343 0 : if ( !pLower->IsRowFrm() ||
344 0 : IncludeRow( *pLower ) )
345 : {
346 0 : bFound = FindCell( rPos, pLower, bExact, rRet );
347 : }
348 : }
349 : }
350 0 : ++aIter;
351 : }
352 :
353 0 : return bFound;
354 : }
355 :
356 0 : void SwAccessibleTableData_Impl::GetSelection(
357 : const Point& rTabPos,
358 : const SwRect& rArea,
359 : const SwSelBoxes& rSelBoxes,
360 : const SwFrm *pFrm,
361 : SwAccTableSelHander_Impl& rSelHdl,
362 : bool bColumns ) const
363 : {
364 0 : const SwAccessibleChildSList aList( *pFrm, mrAccMap );
365 0 : SwAccessibleChildSList::const_iterator aIter( aList.begin() );
366 0 : SwAccessibleChildSList::const_iterator aEndIter( aList.end() );
367 0 : while( aIter != aEndIter )
368 : {
369 0 : const SwAccessibleChild& rLower = *aIter;
370 0 : const SwFrm *pLower = rLower.GetSwFrm();
371 : OSL_ENSURE( pLower, "child should be a frame" );
372 0 : const SwRect& rBox = rLower.GetBox( mrAccMap );
373 0 : if( pLower && rBox.IsOver( rArea ) )
374 : {
375 0 : if( rLower.IsAccessible( mbIsInPagePreview ) )
376 : {
377 : OSL_ENSURE( pLower->IsCellFrm(), "lower is not a cell frame" );
378 : const SwCellFrm *pCFrm =
379 0 : static_cast < const SwCellFrm * >( pLower );
380 : SwTableBox *pBox =
381 0 : const_cast< SwTableBox *>( pCFrm->GetTabBox() );
382 0 : if( rSelBoxes.find( pBox ) == rSelBoxes.end() )
383 : {
384 : const Int32Set_Impl rRowsOrCols =
385 0 : bColumns ? maColumns : maRows;
386 :
387 0 : sal_Int32 nPos = bColumns ? (rBox.Left() - rTabPos.X())
388 0 : : (rBox.Top() - rTabPos.Y());
389 : Int32Set_Impl::const_iterator aSttRowOrCol(
390 0 : rRowsOrCols.lower_bound( nPos ) );
391 : sal_Int32 nRowOrCol =
392 : static_cast< sal_Int32 >( ::std::distance(
393 0 : rRowsOrCols.begin(), aSttRowOrCol ) );
394 :
395 0 : nPos = bColumns ? (rBox.Right() - rTabPos.X())
396 0 : : (rBox.Bottom() - rTabPos.Y());
397 : Int32Set_Impl::const_iterator aEndRowOrCol(
398 0 : rRowsOrCols.upper_bound( nPos ) );
399 : sal_Int32 nExt =
400 : static_cast< sal_Int32 >( ::std::distance(
401 0 : aSttRowOrCol, aEndRowOrCol ) );
402 :
403 0 : rSelHdl.Unselect( nRowOrCol, nExt );
404 : }
405 : }
406 : else
407 : {
408 : // #i77106#
409 0 : if ( !pLower->IsRowFrm() ||
410 0 : IncludeRow( *pLower ) )
411 : {
412 : GetSelection( rTabPos, rArea, rSelBoxes, pLower, rSelHdl,
413 0 : bColumns );
414 : }
415 : }
416 : }
417 0 : ++aIter;
418 0 : }
419 0 : }
420 :
421 0 : const SwFrm *SwAccessibleTableData_Impl::GetCell(
422 : sal_Int32 nRow, sal_Int32 nColumn, bool,
423 : SwAccessibleTable *pThis ) const
424 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
425 : {
426 0 : CheckRowAndCol( nRow, nColumn, pThis );
427 :
428 0 : Int32Set_Impl::const_iterator aSttCol( GetColumnIter( nColumn ) );
429 0 : Int32Set_Impl::const_iterator aSttRow( GetRowIter( nRow ) );
430 0 : const SwFrm *pCellFrm = GetCellAtPos( *aSttCol, *aSttRow, false );
431 :
432 0 : return pCellFrm;
433 : }
434 :
435 0 : void SwAccessibleTableData_Impl::GetSelection(
436 : sal_Int32 nStart, sal_Int32 nEnd,
437 : const SwSelBoxes& rSelBoxes,
438 : SwAccTableSelHander_Impl& rSelHdl,
439 : bool bColumns ) const
440 : {
441 0 : SwRect aArea( mpTabFrm->Frm() );
442 0 : Point aPos( aArea.Pos() );
443 :
444 0 : const Int32Set_Impl& rRowsOrColumns = bColumns ? maColumns : maRows;
445 0 : if( nStart > 0 )
446 : {
447 0 : Int32Set_Impl::const_iterator aStt( rRowsOrColumns.begin() );
448 : ::std::advance( aStt,
449 0 : static_cast< Int32Set_Impl::difference_type >( nStart ) );
450 0 : if( bColumns )
451 0 : aArea.Left( *aStt + aPos.getX() );
452 : else
453 0 : aArea.Top( *aStt + aPos.getY() );
454 : }
455 0 : if( nEnd < static_cast< sal_Int32 >( rRowsOrColumns.size() ) )
456 : {
457 0 : Int32Set_Impl::const_iterator aEnd( rRowsOrColumns.begin() );
458 : ::std::advance( aEnd,
459 0 : static_cast< Int32Set_Impl::difference_type >( nEnd ) );
460 0 : if( bColumns )
461 0 : aArea.Right( *aEnd + aPos.getX() - 1 );
462 : else
463 0 : aArea.Bottom( *aEnd + aPos.getY() - 1 );
464 : }
465 :
466 0 : GetSelection( aPos, aArea, rSelBoxes, mpTabFrm, rSelHdl, bColumns );
467 0 : }
468 :
469 0 : const SwFrm *SwAccessibleTableData_Impl::GetCellAtPos(
470 : sal_Int32 nLeft, sal_Int32 nTop, bool bExact ) const
471 : {
472 0 : Point aPos( mpTabFrm->Frm().Pos() );
473 0 : aPos.Move( nLeft, nTop );
474 0 : const SwFrm *pRet = 0;
475 0 : FindCell( aPos, mpTabFrm, bExact, pRet );
476 :
477 0 : return pRet;
478 : }
479 :
480 2 : inline sal_Int32 SwAccessibleTableData_Impl::GetRowCount() const
481 : {
482 2 : sal_Int32 count = static_cast< sal_Int32 >( maRows.size() ) ;
483 2 : count = (count <=0)? 1:count;
484 2 : return count;
485 : }
486 :
487 2 : inline sal_Int32 SwAccessibleTableData_Impl::GetColumnCount() const
488 : {
489 2 : return static_cast< sal_Int32 >( maColumns.size() );
490 : }
491 :
492 9 : bool SwAccessibleTableData_Impl::CompareExtents(
493 : const SwAccessibleTableData_Impl& rCmp ) const
494 : {
495 9 : if( maExtents.size() != rCmp.maExtents.size() )
496 0 : return false;
497 :
498 9 : return ::std::equal(maExtents.begin(), maExtents.end(), rCmp.maExtents.begin());
499 : }
500 :
501 11 : SwAccessibleTableData_Impl::SwAccessibleTableData_Impl( SwAccessibleMap& rAccMap,
502 : const SwTabFrm *pTabFrm,
503 : bool bIsInPagePreview,
504 : bool bOnlyTableColumnHeader )
505 : : mrAccMap( rAccMap )
506 11 : , maTabFrmPos( pTabFrm->Frm().Pos() )
507 : , mpTabFrm( pTabFrm )
508 : , mbIsInPagePreview( bIsInPagePreview )
509 22 : , mbOnlyTableColumnHeader( bOnlyTableColumnHeader )
510 : {
511 11 : CollectData( mpTabFrm );
512 11 : CollectExtents( mpTabFrm );
513 11 : }
514 :
515 0 : inline Int32Set_Impl::const_iterator SwAccessibleTableData_Impl::GetRowIter(
516 : sal_Int32 nRow ) const
517 : {
518 0 : Int32Set_Impl::const_iterator aCol( GetRows().begin() );
519 0 : if( nRow > 0 )
520 : {
521 : ::std::advance( aCol,
522 0 : static_cast< Int32Set_Impl::difference_type >( nRow ) );
523 : }
524 0 : return aCol;
525 : }
526 :
527 0 : inline Int32Set_Impl::const_iterator SwAccessibleTableData_Impl::GetColumnIter(
528 : sal_Int32 nColumn ) const
529 : {
530 0 : Int32Set_Impl::const_iterator aCol = GetColumns().begin();
531 0 : if( nColumn > 0 )
532 : {
533 : ::std::advance( aCol,
534 0 : static_cast< Int32Set_Impl::difference_type >( nColumn ) );
535 : }
536 0 : return aCol;
537 : }
538 :
539 0 : void SwAccessibleTableData_Impl::CheckRowAndCol(
540 : sal_Int32 nRow, sal_Int32 nCol, SwAccessibleTable *pThis ) const
541 : throw(lang::IndexOutOfBoundsException )
542 : {
543 0 : if( ( nRow < 0 || nRow >= static_cast< sal_Int32 >( maRows.size() ) ) ||
544 0 : ( nCol < 0 || nCol >= static_cast< sal_Int32 >( maColumns.size() ) ) )
545 : {
546 0 : uno::Reference < XAccessibleTable > xThis( pThis );
547 : lang::IndexOutOfBoundsException aExcept(
548 : OUString( "row or column index out of range" ),
549 0 : xThis );
550 0 : throw aExcept;
551 : }
552 0 : }
553 :
554 44 : void SwAccessibleTableData_Impl::GetRowColumnAndExtent(
555 : const SwRect& rBox,
556 : sal_Int32& rRow, sal_Int32& rColumn,
557 : sal_Int32& rRowExtent, sal_Int32& rColumnExtent ) const
558 : {
559 : Int32Set_Impl::const_iterator aStt(
560 44 : maRows.lower_bound( rBox.Top() - maTabFrmPos.Y() ) );
561 : Int32Set_Impl::const_iterator aEnd(
562 44 : maRows.upper_bound( rBox.Bottom() - maTabFrmPos.Y() ) );
563 : rRow =
564 44 : static_cast< sal_Int32 >( ::std::distance( maRows.begin(), aStt ) );
565 : rRowExtent =
566 44 : static_cast< sal_Int32 >( ::std::distance( aStt, aEnd ) );
567 :
568 44 : aStt = maColumns.lower_bound( rBox.Left() - maTabFrmPos.X() );
569 44 : aEnd = maColumns.upper_bound( rBox.Right() - maTabFrmPos.X() );
570 : rColumn =
571 44 : static_cast< sal_Int32 >( ::std::distance( maColumns.begin(), aStt ) );
572 : rColumnExtent =
573 44 : static_cast< sal_Int32 >( ::std::distance( aStt, aEnd ) );
574 44 : }
575 :
576 : class SwAccSingleTableSelHander_Impl : public SwAccTableSelHander_Impl
577 : {
578 : bool bSelected;
579 :
580 : public:
581 :
582 : inline SwAccSingleTableSelHander_Impl();
583 :
584 0 : virtual ~SwAccSingleTableSelHander_Impl() {}
585 :
586 0 : inline bool IsSelected() const { return bSelected; }
587 :
588 : virtual void Unselect( sal_Int32, sal_Int32 ) SAL_OVERRIDE;
589 : };
590 :
591 0 : inline SwAccSingleTableSelHander_Impl::SwAccSingleTableSelHander_Impl() :
592 0 : bSelected( true )
593 : {
594 0 : }
595 :
596 0 : void SwAccSingleTableSelHander_Impl::Unselect( sal_Int32, sal_Int32 )
597 : {
598 0 : bSelected = false;
599 0 : }
600 :
601 : class SwAccAllTableSelHander_Impl : public SwAccTableSelHander_Impl
602 :
603 : {
604 : ::std::vector< bool > aSelected;
605 : sal_Int32 nCount;
606 :
607 : public:
608 0 : explicit SwAccAllTableSelHander_Impl(sal_Int32 nSize)
609 : : aSelected(nSize, true)
610 0 : , nCount(nSize)
611 : {
612 0 : }
613 :
614 : uno::Sequence < sal_Int32 > GetSelSequence();
615 :
616 : virtual void Unselect( sal_Int32 nRowOrCol, sal_Int32 nExt ) SAL_OVERRIDE;
617 : virtual ~SwAccAllTableSelHander_Impl();
618 : };
619 :
620 0 : SwAccAllTableSelHander_Impl::~SwAccAllTableSelHander_Impl()
621 : {
622 0 : }
623 :
624 0 : uno::Sequence < sal_Int32 > SwAccAllTableSelHander_Impl::GetSelSequence()
625 : {
626 : OSL_ENSURE( nCount >= 0, "underflow" );
627 0 : uno::Sequence < sal_Int32 > aRet( nCount );
628 0 : sal_Int32 *pRet = aRet.getArray();
629 0 : sal_Int32 nPos = 0;
630 0 : size_t nSize = aSelected.size();
631 0 : for( size_t i=0; i < nSize && nPos < nCount; i++ )
632 : {
633 0 : if( aSelected[i] )
634 : {
635 0 : *pRet++ = i;
636 0 : nPos++;
637 : }
638 : }
639 :
640 : OSL_ENSURE( nPos == nCount, "count is wrong" );
641 :
642 0 : return aRet;
643 : }
644 :
645 0 : void SwAccAllTableSelHander_Impl::Unselect( sal_Int32 nRowOrCol,
646 : sal_Int32 nExt )
647 : {
648 : OSL_ENSURE( static_cast< size_t >( nRowOrCol ) < aSelected.size(),
649 : "index to large" );
650 : OSL_ENSURE( static_cast< size_t >( nRowOrCol+nExt ) <= aSelected.size(),
651 : "extent to large" );
652 0 : while( nExt )
653 : {
654 0 : if( aSelected[static_cast< size_t >( nRowOrCol )] )
655 : {
656 0 : aSelected[static_cast< size_t >( nRowOrCol )] = false;
657 0 : nCount--;
658 : }
659 0 : nExt--;
660 0 : nRowOrCol++;
661 : }
662 0 : }
663 :
664 4 : const SwSelBoxes *SwAccessibleTable::GetSelBoxes() const
665 : {
666 4 : const SwSelBoxes *pSelBoxes = 0;
667 4 : const SwCrsrShell *pCSh = GetCrsrShell();
668 4 : if( (pCSh != NULL) && pCSh->IsTableMode() )
669 : {
670 2 : pSelBoxes = &pCSh->GetTableCrsr()->GetSelectedBoxes();
671 : }
672 :
673 4 : return pSelBoxes;
674 : }
675 :
676 2 : void SwAccessibleTable::FireTableChangeEvent(
677 : const SwAccessibleTableData_Impl& rTableData )
678 : {
679 2 : AccessibleTableModelChange aModelChange;
680 2 : aModelChange.Type = AccessibleTableModelChangeType::UPDATE;
681 2 : aModelChange.FirstRow = 0;
682 2 : aModelChange.LastRow = rTableData.GetRowCount() - 1;
683 2 : aModelChange.FirstColumn = 0;
684 2 : aModelChange.LastColumn = rTableData.GetColumnCount() - 1;
685 :
686 2 : AccessibleEventObject aEvent;
687 2 : aEvent.EventId = AccessibleEventId::TABLE_MODEL_CHANGED;
688 2 : aEvent.NewValue <<= aModelChange;
689 :
690 2 : FireAccessibleEvent( aEvent );
691 2 : }
692 :
693 6 : const SwTableBox* SwAccessibleTable::GetTableBox( sal_Int32 nChildIndex ) const
694 : {
695 : OSL_ENSURE( nChildIndex >= 0, "Illegal child index." );
696 : OSL_ENSURE( nChildIndex < const_cast<SwAccessibleTable*>(this)->getAccessibleChildCount(), "Illegal child index." ); // #i77106#
697 :
698 6 : const SwTableBox* pBox = NULL;
699 :
700 : // get table box for 'our' table cell
701 6 : SwAccessibleChild aCell( GetChild( *(const_cast<SwAccessibleMap*>(GetMap())), nChildIndex ) );
702 6 : if( aCell.GetSwFrm() )
703 : {
704 6 : const SwFrm* pChildFrm = aCell.GetSwFrm();
705 6 : if( (pChildFrm != NULL) && pChildFrm->IsCellFrm() )
706 : {
707 : const SwCellFrm* pCellFrm =
708 6 : static_cast<const SwCellFrm*>( pChildFrm );
709 6 : pBox = pCellFrm->GetTabBox();
710 : }
711 : }
712 :
713 : OSL_ENSURE( pBox != NULL, "We need the table box." );
714 6 : return pBox;
715 : }
716 :
717 4 : bool SwAccessibleTable::IsChildSelected( sal_Int32 nChildIndex ) const
718 : {
719 4 : bool bRet = false;
720 4 : const SwSelBoxes* pSelBoxes = GetSelBoxes();
721 4 : if( pSelBoxes )
722 : {
723 2 : const SwTableBox* pBox = GetTableBox( nChildIndex );
724 : OSL_ENSURE( pBox != NULL, "We need the table box." );
725 2 : bRet = pSelBoxes->find( const_cast<SwTableBox*>( pBox ) ) != pSelBoxes->end();
726 : }
727 :
728 4 : return bRet;
729 : }
730 :
731 0 : sal_Int32 SwAccessibleTable::GetIndexOfSelectedChild(
732 : sal_Int32 nSelectedChildIndex ) const
733 : {
734 : // iterate over all children to n-th isAccessibleChildSelected()
735 0 : sal_Int32 nChildren = const_cast<SwAccessibleTable*>(this)->getAccessibleChildCount(); // #i77106#
736 0 : if( nSelectedChildIndex >= nChildren )
737 0 : return -1L;
738 :
739 0 : sal_Int32 n = 0;
740 0 : while( n < nChildren )
741 : {
742 0 : if( IsChildSelected( n ) )
743 : {
744 0 : if( 0 == nSelectedChildIndex )
745 0 : break;
746 : else
747 0 : --nSelectedChildIndex;
748 : }
749 0 : ++n;
750 : }
751 :
752 0 : return n < nChildren ? n : -1L;
753 : }
754 :
755 2 : void SwAccessibleTable::GetStates(
756 : ::utl::AccessibleStateSetHelper& rStateSet )
757 : {
758 2 : SwAccessibleContext::GetStates( rStateSet );
759 : //Add resizable state to table
760 2 : rStateSet.AddState( AccessibleStateType::RESIZABLE );
761 : // MULTISELECTABLE
762 2 : rStateSet.AddState( AccessibleStateType::MULTI_SELECTABLE );
763 2 : SwCrsrShell* pCrsrShell = GetCrsrShell();
764 2 : if( pCrsrShell )
765 2 : rStateSet.AddState( AccessibleStateType::MULTI_SELECTABLE );
766 2 : }
767 :
768 2 : SwAccessibleTable::SwAccessibleTable(
769 : SwAccessibleMap* pInitMap,
770 : const SwTabFrm* pTabFrm ) :
771 : SwAccessibleContext( pInitMap, AccessibleRole::TABLE, pTabFrm ),
772 2 : mpTableData( 0 )
773 : {
774 2 : SolarMutexGuard aGuard;
775 :
776 2 : const SwFrameFormat *pFrameFormat = pTabFrm->GetFormat();
777 2 : const_cast< SwFrameFormat * >( pFrameFormat )->Add( this );
778 :
779 2 : SetName( pFrameFormat->GetName() + "-" + OUString::number( pTabFrm->GetPhyPageNum() ) );
780 :
781 4 : const OUString sArg1( static_cast< const SwTabFrm * >( GetFrm() )->GetFormat()->GetName() );
782 4 : const OUString sArg2( GetFormattedPageNumber() );
783 :
784 2 : sDesc = GetResource( STR_ACCESS_TABLE_DESC, &sArg1, &sArg2 );
785 4 : UpdateTableData();
786 2 : }
787 :
788 6 : SwAccessibleTable::~SwAccessibleTable()
789 : {
790 2 : SolarMutexGuard aGuard;
791 :
792 2 : delete mpTableData;
793 4 : }
794 :
795 0 : void SwAccessibleTable::Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew)
796 : {
797 0 : sal_uInt16 nWhich = pOld ? pOld->Which() : pNew ? pNew->Which() : 0 ;
798 0 : const SwTabFrm *pTabFrm = static_cast< const SwTabFrm * >( GetFrm() );
799 0 : switch( nWhich )
800 : {
801 : case RES_NAME_CHANGED:
802 0 : if( pTabFrm )
803 : {
804 0 : const SwFrameFormat *pFrameFormat = pTabFrm->GetFormat();
805 : OSL_ENSURE( pFrameFormat == GetRegisteredIn(), "invalid frame" );
806 :
807 0 : const OUString sOldName( GetName() );
808 0 : const OUString sNewTabName = pFrameFormat->GetName();
809 :
810 0 : SetName( sNewTabName + "-" + OUString::number( pTabFrm->GetPhyPageNum() ) );
811 :
812 0 : if( sOldName != GetName() )
813 : {
814 0 : AccessibleEventObject aEvent;
815 0 : aEvent.EventId = AccessibleEventId::NAME_CHANGED;
816 0 : aEvent.OldValue <<= sOldName;
817 0 : aEvent.NewValue <<= GetName();
818 0 : FireAccessibleEvent( aEvent );
819 : }
820 :
821 0 : const OUString sOldDesc( sDesc );
822 0 : const OUString sArg2( GetFormattedPageNumber() );
823 :
824 0 : sDesc = GetResource( STR_ACCESS_TABLE_DESC, &sNewTabName, &sArg2 );
825 0 : if( sDesc != sOldDesc )
826 : {
827 0 : AccessibleEventObject aEvent;
828 0 : aEvent.EventId = AccessibleEventId::DESCRIPTION_CHANGED;
829 0 : aEvent.OldValue <<= sOldDesc;
830 0 : aEvent.NewValue <<= sDesc;
831 0 : FireAccessibleEvent( aEvent );
832 0 : }
833 : }
834 0 : break;
835 :
836 : case RES_OBJECTDYING:
837 : // mba: it seems that this class intentionally does not call code in base class SwClient
838 0 : if( pOld && ( GetRegisteredIn() == static_cast< SwModify *>( static_cast< const SwPtrMsgPoolItem * >( pOld )->pObject ) ) )
839 0 : GetRegisteredInNonConst()->Remove( this );
840 0 : break;
841 :
842 : default:
843 : // mba: former call to base class method removed as it is meant to handle only RES_OBJECTDYING
844 0 : break;
845 : }
846 0 : }
847 :
848 107 : uno::Any SwAccessibleTable::queryInterface( const uno::Type& rType )
849 : throw (uno::RuntimeException, std::exception)
850 : {
851 107 : uno::Any aRet;
852 107 : if ( rType == cppu::UnoType<XAccessibleTable>::get() )
853 : {
854 0 : uno::Reference<XAccessibleTable> xThis( this );
855 0 : aRet <<= xThis;
856 : }
857 107 : else if ( rType == cppu::UnoType<XAccessibleSelection>::get() )
858 : {
859 2 : uno::Reference<XAccessibleSelection> xSelection( this );
860 2 : aRet <<= xSelection;
861 : }
862 105 : else if ( rType == cppu::UnoType<XAccessibleTableSelection>::get() )
863 : {
864 0 : uno::Reference<XAccessibleTableSelection> xTableExtent( this );
865 0 : aRet <<= xTableExtent;
866 : }
867 : else
868 : {
869 105 : aRet = SwAccessibleContext::queryInterface(rType);
870 : }
871 :
872 107 : return aRet;
873 : }
874 :
875 : // XTypeProvider
876 0 : uno::Sequence< uno::Type > SAL_CALL SwAccessibleTable::getTypes()
877 : throw(uno::RuntimeException, std::exception)
878 : {
879 0 : uno::Sequence< uno::Type > aTypes( SwAccessibleContext::getTypes() );
880 :
881 0 : sal_Int32 nIndex = aTypes.getLength();
882 0 : aTypes.realloc( nIndex + 2 );
883 :
884 0 : uno::Type* pTypes = aTypes.getArray();
885 0 : pTypes[nIndex++] = cppu::UnoType<XAccessibleSelection>::get();
886 0 : pTypes[nIndex++] = cppu::UnoType<XAccessibleTable>::get();
887 :
888 0 : return aTypes;
889 : }
890 :
891 0 : uno::Sequence< sal_Int8 > SAL_CALL SwAccessibleTable::getImplementationId()
892 : throw(uno::RuntimeException, std::exception)
893 : {
894 0 : return css::uno::Sequence<sal_Int8>();
895 : }
896 :
897 : // #i77106#
898 11 : SwAccessibleTableData_Impl* SwAccessibleTable::CreateNewTableData()
899 : {
900 11 : const SwTabFrm* pTabFrm = static_cast<const SwTabFrm*>( GetFrm() );
901 11 : return new SwAccessibleTableData_Impl( *GetMap(), pTabFrm, IsInPagePreview() );
902 : }
903 :
904 2 : void SwAccessibleTable::UpdateTableData()
905 : {
906 : // #i77106# - usage of new method <CreateNewTableData()>
907 2 : delete mpTableData;
908 2 : mpTableData = CreateNewTableData();
909 2 : }
910 :
911 2 : void SwAccessibleTable::ClearTableData()
912 : {
913 2 : delete mpTableData;
914 2 : mpTableData = 0;
915 2 : }
916 :
917 6 : OUString SAL_CALL SwAccessibleTable::getAccessibleDescription()
918 : throw (uno::RuntimeException, std::exception)
919 : {
920 6 : SolarMutexGuard aGuard;
921 :
922 6 : CHECK_FOR_DEFUNC( XAccessibleContext )
923 :
924 6 : return sDesc;
925 : }
926 :
927 0 : sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleRowCount()
928 : throw (uno::RuntimeException, std::exception)
929 : {
930 0 : SolarMutexGuard aGuard;
931 :
932 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
933 :
934 0 : return GetTableData().GetRowCount();
935 : }
936 :
937 0 : sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleColumnCount( )
938 : throw (uno::RuntimeException, std::exception)
939 : {
940 0 : SolarMutexGuard aGuard;
941 :
942 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
943 :
944 0 : return GetTableData().GetColumnCount();
945 : }
946 :
947 0 : OUString SAL_CALL SwAccessibleTable::getAccessibleRowDescription(
948 : sal_Int32 nRow )
949 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
950 : {
951 : // #i87532# - determine table cell in <nRow>th row and
952 : // in first column of row header table and return its text content.
953 0 : OUString sRowDesc;
954 :
955 0 : GetTableData().CheckRowAndCol(nRow, 0, this);
956 :
957 0 : uno::Reference< XAccessibleTable > xTableRowHeader = getAccessibleRowHeaders();
958 0 : if ( xTableRowHeader.is() )
959 : {
960 : uno::Reference< XAccessible > xRowHeaderCell =
961 0 : xTableRowHeader->getAccessibleCellAt( nRow, 0 );
962 : OSL_ENSURE( xRowHeaderCell.is(),
963 : "<SwAccessibleTable::getAccessibleRowDescription(..)> - missing row header cell -> serious issue." );
964 : uno::Reference< XAccessibleContext > xRowHeaderCellContext =
965 0 : xRowHeaderCell->getAccessibleContext();
966 0 : const sal_Int32 nCellChildCount( xRowHeaderCellContext->getAccessibleChildCount() );
967 0 : for ( sal_Int32 nChildIndex = 0; nChildIndex < nCellChildCount; ++nChildIndex )
968 : {
969 0 : uno::Reference< XAccessible > xChild = xRowHeaderCellContext->getAccessibleChild( nChildIndex );
970 0 : uno::Reference< XAccessibleText > xChildText( xChild, uno::UNO_QUERY );
971 0 : if ( xChildText.is() )
972 : {
973 0 : sRowDesc = sRowDesc + xChildText->getText();
974 : }
975 0 : }
976 : }
977 :
978 0 : return sRowDesc;
979 : }
980 :
981 0 : OUString SAL_CALL SwAccessibleTable::getAccessibleColumnDescription(
982 : sal_Int32 nColumn )
983 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
984 : {
985 : // #i87532# - determine table cell in first row and
986 : // in <nColumn>th column of column header table and return its text content.
987 0 : OUString sColumnDesc;
988 :
989 0 : GetTableData().CheckRowAndCol(0, nColumn, this);
990 :
991 0 : uno::Reference< XAccessibleTable > xTableColumnHeader = getAccessibleColumnHeaders();
992 0 : if ( xTableColumnHeader.is() )
993 : {
994 : uno::Reference< XAccessible > xColumnHeaderCell =
995 0 : xTableColumnHeader->getAccessibleCellAt( 0, nColumn );
996 : OSL_ENSURE( xColumnHeaderCell.is(),
997 : "<SwAccessibleTable::getAccessibleColumnDescription(..)> - missing column header cell -> serious issue." );
998 : uno::Reference< XAccessibleContext > xColumnHeaderCellContext =
999 0 : xColumnHeaderCell->getAccessibleContext();
1000 0 : const sal_Int32 nCellChildCount( xColumnHeaderCellContext->getAccessibleChildCount() );
1001 0 : for ( sal_Int32 nChildIndex = 0; nChildIndex < nCellChildCount; ++nChildIndex )
1002 : {
1003 0 : uno::Reference< XAccessible > xChild = xColumnHeaderCellContext->getAccessibleChild( nChildIndex );
1004 0 : uno::Reference< XAccessibleText > xChildText( xChild, uno::UNO_QUERY );
1005 0 : if ( xChildText.is() )
1006 : {
1007 0 : sColumnDesc = sColumnDesc + xChildText->getText();
1008 : }
1009 0 : }
1010 : }
1011 :
1012 0 : return sColumnDesc;
1013 : }
1014 :
1015 0 : sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleRowExtentAt(
1016 : sal_Int32 nRow, sal_Int32 nColumn )
1017 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1018 : {
1019 0 : sal_Int32 nExtend = -1;
1020 :
1021 0 : SolarMutexGuard aGuard;
1022 :
1023 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1024 :
1025 0 : UpdateTableData();
1026 0 : GetTableData().CheckRowAndCol( nRow, nColumn, this );
1027 :
1028 : Int32Set_Impl::const_iterator aSttCol(
1029 0 : GetTableData().GetColumnIter( nColumn ) );
1030 : Int32Set_Impl::const_iterator aSttRow(
1031 0 : GetTableData().GetRowIter( nRow ) );
1032 0 : const SwFrm *pCellFrm = GetTableData().GetCellAtPos( *aSttCol, *aSttRow,
1033 0 : false );
1034 0 : if( pCellFrm )
1035 : {
1036 0 : sal_Int32 nBottom = pCellFrm->Frm().Bottom();
1037 0 : nBottom -= GetFrm()->Frm().Top();
1038 : Int32Set_Impl::const_iterator aEndRow(
1039 0 : GetTableData().GetRows().upper_bound( nBottom ) );
1040 : nExtend =
1041 0 : static_cast< sal_Int32 >( ::std::distance( aSttRow, aEndRow ) );
1042 : }
1043 :
1044 0 : return nExtend;
1045 : }
1046 :
1047 0 : sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleColumnExtentAt(
1048 : sal_Int32 nRow, sal_Int32 nColumn )
1049 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1050 : {
1051 0 : sal_Int32 nExtend = -1;
1052 :
1053 0 : SolarMutexGuard aGuard;
1054 :
1055 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1056 0 : UpdateTableData();
1057 :
1058 0 : GetTableData().CheckRowAndCol( nRow, nColumn, this );
1059 :
1060 : Int32Set_Impl::const_iterator aSttCol(
1061 0 : GetTableData().GetColumnIter( nColumn ) );
1062 : Int32Set_Impl::const_iterator aSttRow(
1063 0 : GetTableData().GetRowIter( nRow ) );
1064 0 : const SwFrm *pCellFrm = GetTableData().GetCellAtPos( *aSttCol, *aSttRow,
1065 0 : false );
1066 0 : if( pCellFrm )
1067 : {
1068 0 : sal_Int32 nRight = pCellFrm->Frm().Right();
1069 0 : nRight -= GetFrm()->Frm().Left();
1070 : Int32Set_Impl::const_iterator aEndCol(
1071 0 : GetTableData().GetColumns().upper_bound( nRight ) );
1072 : nExtend =
1073 0 : static_cast< sal_Int32 >( ::std::distance( aSttCol, aEndCol ) );
1074 : }
1075 :
1076 0 : return nExtend;
1077 : }
1078 :
1079 : uno::Reference< XAccessibleTable > SAL_CALL
1080 0 : SwAccessibleTable::getAccessibleRowHeaders( )
1081 : throw (uno::RuntimeException, std::exception)
1082 : {
1083 : // Row headers aren't supported
1084 0 : return uno::Reference< XAccessibleTable >();
1085 : }
1086 :
1087 : uno::Reference< XAccessibleTable > SAL_CALL
1088 0 : SwAccessibleTable::getAccessibleColumnHeaders( )
1089 : throw (uno::RuntimeException, std::exception)
1090 : {
1091 : // #i87532# - assure that return accessible object is empty,
1092 : // if no column header exists.
1093 : SwAccessibleTableColHeaders* pTableColHeaders =
1094 0 : new SwAccessibleTableColHeaders( GetMap(), static_cast< const SwTabFrm *>( GetFrm() ) );
1095 0 : uno::Reference< XAccessibleTable > xTableColumnHeaders( pTableColHeaders );
1096 0 : if ( pTableColHeaders->getAccessibleChildCount() <= 0 )
1097 : {
1098 0 : return uno::Reference< XAccessibleTable >();
1099 : }
1100 :
1101 0 : return xTableColumnHeaders;
1102 : }
1103 :
1104 0 : uno::Sequence< sal_Int32 > SAL_CALL SwAccessibleTable::getSelectedAccessibleRows()
1105 : throw (uno::RuntimeException, std::exception)
1106 : {
1107 0 : SolarMutexGuard aGuard;
1108 :
1109 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1110 :
1111 0 : const SwSelBoxes *pSelBoxes = GetSelBoxes();
1112 0 : if( pSelBoxes )
1113 : {
1114 0 : sal_Int32 nRows = GetTableData().GetRowCount();
1115 0 : SwAccAllTableSelHander_Impl aSelRows( nRows );
1116 :
1117 0 : GetTableData().GetSelection( 0, nRows, *pSelBoxes, aSelRows,
1118 0 : false );
1119 :
1120 0 : return aSelRows.GetSelSequence();
1121 : }
1122 : else
1123 : {
1124 0 : return uno::Sequence< sal_Int32 >( 0 );
1125 0 : }
1126 : }
1127 :
1128 0 : uno::Sequence< sal_Int32 > SAL_CALL SwAccessibleTable::getSelectedAccessibleColumns()
1129 : throw (uno::RuntimeException, std::exception)
1130 : {
1131 0 : SolarMutexGuard aGuard;
1132 :
1133 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1134 :
1135 0 : const SwSelBoxes *pSelBoxes = GetSelBoxes();
1136 0 : if( pSelBoxes )
1137 : {
1138 0 : sal_Int32 nCols = GetTableData().GetColumnCount();
1139 0 : SwAccAllTableSelHander_Impl aSelCols( nCols );
1140 :
1141 0 : GetTableData().GetSelection( 0, nCols, *pSelBoxes, aSelCols, true );
1142 :
1143 0 : return aSelCols.GetSelSequence();
1144 : }
1145 : else
1146 : {
1147 0 : return uno::Sequence< sal_Int32 >( 0 );
1148 0 : }
1149 : }
1150 :
1151 0 : sal_Bool SAL_CALL SwAccessibleTable::isAccessibleRowSelected( sal_Int32 nRow )
1152 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1153 : {
1154 0 : SolarMutexGuard aGuard;
1155 :
1156 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1157 :
1158 0 : GetTableData().CheckRowAndCol( nRow, 0, this );
1159 :
1160 : bool bRet;
1161 0 : const SwSelBoxes *pSelBoxes = GetSelBoxes();
1162 0 : if( pSelBoxes )
1163 : {
1164 0 : SwAccSingleTableSelHander_Impl aSelRow;
1165 0 : GetTableData().GetSelection( nRow, nRow+1, *pSelBoxes, aSelRow,
1166 0 : false );
1167 0 : bRet = aSelRow.IsSelected();
1168 : }
1169 : else
1170 : {
1171 0 : bRet = false;
1172 : }
1173 :
1174 0 : return bRet;
1175 : }
1176 :
1177 0 : sal_Bool SAL_CALL SwAccessibleTable::isAccessibleColumnSelected(
1178 : sal_Int32 nColumn )
1179 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1180 : {
1181 0 : SolarMutexGuard aGuard;
1182 :
1183 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1184 :
1185 0 : GetTableData().CheckRowAndCol( 0, nColumn, this );
1186 :
1187 : bool bRet;
1188 0 : const SwSelBoxes *pSelBoxes = GetSelBoxes();
1189 0 : if( pSelBoxes )
1190 : {
1191 0 : SwAccSingleTableSelHander_Impl aSelCol;
1192 :
1193 0 : GetTableData().GetSelection( nColumn, nColumn+1, *pSelBoxes, aSelCol,
1194 0 : true );
1195 0 : bRet = aSelCol.IsSelected();
1196 : }
1197 : else
1198 : {
1199 0 : bRet = false;
1200 : }
1201 :
1202 0 : return bRet;
1203 : }
1204 :
1205 0 : uno::Reference< XAccessible > SAL_CALL SwAccessibleTable::getAccessibleCellAt(
1206 : sal_Int32 nRow, sal_Int32 nColumn )
1207 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1208 : {
1209 0 : uno::Reference< XAccessible > xRet;
1210 :
1211 0 : SolarMutexGuard aGuard;
1212 :
1213 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1214 :
1215 : const SwFrm *pCellFrm =
1216 0 : GetTableData().GetCell( nRow, nColumn, false, this );
1217 0 : if( pCellFrm )
1218 0 : xRet = GetMap()->GetContext( pCellFrm, true );
1219 :
1220 0 : return xRet;
1221 : }
1222 :
1223 0 : uno::Reference< XAccessible > SAL_CALL SwAccessibleTable::getAccessibleCaption()
1224 : throw (uno::RuntimeException, std::exception)
1225 : {
1226 : // captions aren't supported
1227 0 : return uno::Reference< XAccessible >();
1228 : }
1229 :
1230 0 : uno::Reference< XAccessible > SAL_CALL SwAccessibleTable::getAccessibleSummary()
1231 : throw (uno::RuntimeException, std::exception)
1232 : {
1233 : // summaries aren't supported
1234 0 : return uno::Reference< XAccessible >();
1235 : }
1236 :
1237 0 : sal_Bool SAL_CALL SwAccessibleTable::isAccessibleSelected(
1238 : sal_Int32 nRow, sal_Int32 nColumn )
1239 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1240 : {
1241 0 : bool bRet = false;
1242 :
1243 0 : SolarMutexGuard aGuard;
1244 :
1245 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1246 :
1247 : const SwFrm *pFrm =
1248 0 : GetTableData().GetCell( nRow, nColumn, false, this );
1249 0 : if( pFrm && pFrm->IsCellFrm() )
1250 : {
1251 0 : const SwSelBoxes *pSelBoxes = GetSelBoxes();
1252 0 : if( pSelBoxes )
1253 : {
1254 0 : const SwCellFrm *pCFrm = static_cast < const SwCellFrm * >( pFrm );
1255 : SwTableBox *pBox =
1256 0 : const_cast< SwTableBox *>( pCFrm->GetTabBox() );
1257 0 : bRet = pSelBoxes->find( pBox ) != pSelBoxes->end();
1258 : }
1259 : }
1260 :
1261 0 : return bRet;
1262 : }
1263 :
1264 0 : sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleIndex(
1265 : sal_Int32 nRow, sal_Int32 nColumn )
1266 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1267 : {
1268 0 : sal_Int32 nRet = -1;
1269 :
1270 0 : SolarMutexGuard aGuard;
1271 :
1272 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1273 :
1274 0 : SwAccessibleChild aCell( GetTableData().GetCell( nRow, nColumn, false, this ));
1275 0 : if ( aCell.IsValid() )
1276 : {
1277 0 : nRet = GetChildIndex( *(GetMap()), aCell );
1278 : }
1279 :
1280 0 : return nRet;
1281 : }
1282 :
1283 0 : sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleRow( sal_Int32 nChildIndex )
1284 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1285 : {
1286 0 : sal_Int32 nRet = -1;
1287 :
1288 0 : SolarMutexGuard aGuard;
1289 :
1290 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1291 :
1292 : // #i77106#
1293 0 : if ( ( nChildIndex < 0 ) ||
1294 0 : ( nChildIndex >= getAccessibleChildCount() ) )
1295 : {
1296 0 : throw lang::IndexOutOfBoundsException();
1297 : }
1298 :
1299 0 : SwAccessibleChild aCell( GetChild( *(GetMap()), nChildIndex ) );
1300 0 : if ( aCell.GetSwFrm() )
1301 : {
1302 0 : sal_Int32 nTop = aCell.GetSwFrm()->Frm().Top();
1303 0 : nTop -= GetFrm()->Frm().Top();
1304 : Int32Set_Impl::const_iterator aRow(
1305 0 : GetTableData().GetRows().lower_bound( nTop ) );
1306 : nRet = static_cast< sal_Int32 >( ::std::distance(
1307 0 : GetTableData().GetRows().begin(), aRow ) );
1308 : }
1309 : else
1310 : {
1311 : OSL_ENSURE( !aCell.IsValid(), "SwAccessibleTable::getAccessibleColumn:"
1312 : "aCell not expected to be valid.");
1313 :
1314 0 : throw lang::IndexOutOfBoundsException();
1315 : }
1316 :
1317 0 : return nRet;
1318 : }
1319 :
1320 0 : sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleColumn(
1321 : sal_Int32 nChildIndex )
1322 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1323 : {
1324 0 : sal_Int32 nRet = -1;
1325 :
1326 0 : SolarMutexGuard aGuard;
1327 :
1328 0 : CHECK_FOR_DEFUNC( XAccessibleTable )
1329 :
1330 : // #i77106#
1331 0 : if ( ( nChildIndex < 0 ) ||
1332 0 : ( nChildIndex >= getAccessibleChildCount() ) )
1333 : {
1334 0 : throw lang::IndexOutOfBoundsException();
1335 : }
1336 :
1337 0 : SwAccessibleChild aCell( GetChild( *(GetMap()), nChildIndex ) );
1338 0 : if ( aCell.GetSwFrm() )
1339 : {
1340 0 : sal_Int32 nLeft = aCell.GetSwFrm()->Frm().Left();
1341 0 : nLeft -= GetFrm()->Frm().Left();
1342 : Int32Set_Impl::const_iterator aCol(
1343 0 : GetTableData().GetColumns().lower_bound( nLeft ) );
1344 : nRet = static_cast< sal_Int32 >( ::std::distance(
1345 0 : GetTableData().GetColumns().begin(), aCol ) );
1346 : }
1347 : else
1348 : {
1349 : OSL_ENSURE( !aCell.IsValid(), "SwAccessibleTable::getAccessibleColumn:"
1350 : "aCell not expected to be valid.");
1351 :
1352 0 : throw lang::IndexOutOfBoundsException();
1353 : }
1354 :
1355 0 : return nRet;
1356 : }
1357 :
1358 0 : OUString SAL_CALL SwAccessibleTable::getImplementationName()
1359 : throw( uno::RuntimeException, std::exception )
1360 : {
1361 0 : return OUString("com.sun.star.comp.Writer.SwAccessibleTableView");
1362 : }
1363 :
1364 0 : sal_Bool SAL_CALL SwAccessibleTable::supportsService(
1365 : const OUString& sTestServiceName)
1366 : throw (uno::RuntimeException, std::exception)
1367 : {
1368 0 : return cppu::supportsService(this, sTestServiceName);
1369 : }
1370 :
1371 0 : uno::Sequence< OUString > SAL_CALL SwAccessibleTable::getSupportedServiceNames()
1372 : throw( uno::RuntimeException, std::exception )
1373 : {
1374 0 : uno::Sequence< OUString > aRet(2);
1375 0 : OUString* pArray = aRet.getArray();
1376 0 : pArray[0] = "com.sun.star.table.AccessibleTableView";
1377 0 : pArray[1] = sAccessibleServiceName;
1378 0 : return aRet;
1379 : }
1380 :
1381 9 : void SwAccessibleTable::InvalidatePosOrSize( const SwRect& rOldBox )
1382 : {
1383 9 : SolarMutexGuard aGuard;
1384 :
1385 : //need to update children
1386 9 : SwAccessibleTableData_Impl *pNewTableData = CreateNewTableData();
1387 9 : if( !pNewTableData->CompareExtents( GetTableData() ) )
1388 : {
1389 0 : delete mpTableData;
1390 0 : mpTableData = pNewTableData;
1391 0 : FireTableChangeEvent(*mpTableData);
1392 : }
1393 9 : if( HasTableData() )
1394 9 : GetTableData().SetTablePos( GetFrm()->Frm().Pos() );
1395 :
1396 9 : SwAccessibleContext::InvalidatePosOrSize( rOldBox );
1397 9 : }
1398 :
1399 2 : void SwAccessibleTable::Dispose( bool bRecursive )
1400 : {
1401 2 : SolarMutexGuard aGuard;
1402 :
1403 2 : if( GetRegisteredIn() )
1404 2 : GetRegisteredInNonConst()->Remove( this );
1405 :
1406 2 : SwAccessibleContext::Dispose( bRecursive );
1407 2 : }
1408 :
1409 2 : void SwAccessibleTable::DisposeChild( const SwAccessibleChild& rChildFrmOrObj,
1410 : bool bRecursive )
1411 : {
1412 2 : SolarMutexGuard aGuard;
1413 :
1414 2 : const SwFrm *pFrm = rChildFrmOrObj.GetSwFrm();
1415 : OSL_ENSURE( pFrm, "frame expected" );
1416 2 : if( HasTableData() )
1417 : {
1418 2 : FireTableChangeEvent( GetTableData() );
1419 2 : ClearTableData();
1420 : }
1421 :
1422 : // There are two reason why this method has been called. The first one
1423 : // is there is no context for pFrm. The method is then called by
1424 : // the map, and we have to call our superclass.
1425 : // The other situation is that we have been call by a call to get notified
1426 : // about its change. We then must not call the superclass
1427 4 : uno::Reference< XAccessible > xAcc( GetMap()->GetContext( pFrm, false ) );
1428 2 : if( !xAcc.is() )
1429 2 : SwAccessibleContext::DisposeChild( rChildFrmOrObj, bRecursive );
1430 2 : }
1431 :
1432 0 : void SwAccessibleTable::InvalidateChildPosOrSize( const SwAccessibleChild& rChildFrmOrObj,
1433 : const SwRect& rOldBox )
1434 : {
1435 0 : SolarMutexGuard aGuard;
1436 :
1437 0 : if( HasTableData() )
1438 : {
1439 : SAL_WARN_IF( HasTableData() &&
1440 : GetFrm()->Frm().Pos() != GetTableData().GetTablePos(), "sw.core",
1441 : "table has invalid position" );
1442 0 : if( HasTableData() )
1443 : {
1444 0 : SwAccessibleTableData_Impl *pNewTableData = CreateNewTableData(); // #i77106#
1445 0 : if( !pNewTableData->CompareExtents( GetTableData() ) )
1446 : {
1447 0 : if (pNewTableData->GetRowCount() != mpTableData->GetRowCount()
1448 0 : && 1 < GetTableData().GetRowCount())
1449 : {
1450 0 : Int32Set_Impl::const_iterator aSttCol( GetTableData().GetColumnIter( 0 ) );
1451 0 : Int32Set_Impl::const_iterator aSttRow( GetTableData().GetRowIter( 1 ) );
1452 0 : const SwFrm *pCellFrm = GetTableData().GetCellAtPos( *aSttCol, *aSttRow, false );
1453 0 : Int32Set_Impl::const_iterator aSttCol2( pNewTableData->GetColumnIter( 0 ) );
1454 0 : Int32Set_Impl::const_iterator aSttRow2( pNewTableData->GetRowIter( 0 ) );
1455 0 : const SwFrm *pCellFrm2 = pNewTableData->GetCellAtPos( *aSttCol2, *aSttRow2, false );
1456 :
1457 0 : if(pCellFrm == pCellFrm2)
1458 : {
1459 0 : AccessibleTableModelChange aModelChange;
1460 0 : aModelChange.Type = AccessibleTableModelChangeType::UPDATE;
1461 0 : aModelChange.FirstRow = 0;
1462 0 : aModelChange.LastRow = mpTableData->GetRowCount() - 1;
1463 0 : aModelChange.FirstColumn = 0;
1464 0 : aModelChange.LastColumn = mpTableData->GetColumnCount() - 1;
1465 :
1466 0 : AccessibleEventObject aEvent;
1467 0 : aEvent.EventId = AccessibleEventId::TABLE_COLUMN_HEADER_CHANGED;
1468 0 : aEvent.NewValue <<= aModelChange;
1469 :
1470 0 : FireAccessibleEvent( aEvent );
1471 : }
1472 : }
1473 : else
1474 0 : FireTableChangeEvent( GetTableData() );
1475 0 : ClearTableData();
1476 0 : mpTableData = pNewTableData;
1477 : }
1478 : else
1479 : {
1480 0 : delete pNewTableData;
1481 : }
1482 : }
1483 : }
1484 :
1485 : // #i013961# - always call super class method
1486 0 : SwAccessibleContext::InvalidateChildPosOrSize( rChildFrmOrObj, rOldBox );
1487 0 : }
1488 :
1489 : // XAccessibleSelection
1490 :
1491 4 : void SAL_CALL SwAccessibleTable::selectAccessibleChild(
1492 : sal_Int32 nChildIndex )
1493 : throw ( lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception )
1494 : {
1495 4 : SolarMutexGuard aGuard;
1496 4 : CHECK_FOR_DEFUNC( XAccessibleTable );
1497 :
1498 4 : if( (nChildIndex < 0) || (nChildIndex >= getAccessibleChildCount()) ) // #i77106#
1499 0 : throw lang::IndexOutOfBoundsException();
1500 :
1501 : // preliminaries: get 'our' table box, and get the cursor shell
1502 4 : const SwTableBox* pBox = GetTableBox( nChildIndex );
1503 : OSL_ENSURE( pBox != NULL, "We need the table box." );
1504 :
1505 4 : SwCrsrShell* pCrsrShell = GetCrsrShell();
1506 4 : if( pCrsrShell == NULL )
1507 0 : return;
1508 :
1509 : // assure, that child, identified by the given index, isn't already selected.
1510 4 : if ( IsChildSelected( nChildIndex ) )
1511 : {
1512 0 : return;
1513 : }
1514 :
1515 : // now we can start to do the work: check whether we already have
1516 : // a table selection (in 'our' table). If so, extend the
1517 : // selection, else select the current cell.
1518 :
1519 : // if we have a selection in a table, check if it's in the
1520 : // same table that we're trying to select in
1521 4 : const SwTableNode* pSelectedTable = pCrsrShell->IsCrsrInTable();
1522 4 : if( pSelectedTable != NULL )
1523 : {
1524 : // get top-most table line
1525 3 : const SwTableLine* pUpper = pBox->GetUpper();
1526 6 : while( pUpper->GetUpper() != NULL )
1527 0 : pUpper = pUpper->GetUpper()->GetUpper();
1528 : sal_uInt16 nPos =
1529 3 : pSelectedTable->GetTable().GetTabLines().GetPos( pUpper );
1530 3 : if( nPos == USHRT_MAX )
1531 0 : pSelectedTable = NULL;
1532 : }
1533 :
1534 : // create the new selection
1535 4 : const SwStartNode* pStartNode = pBox->GetSttNd();
1536 4 : if( pSelectedTable == NULL || !pCrsrShell->GetTableCrs() )
1537 : {
1538 2 : pCrsrShell->StartAction();
1539 : // Set cursor into current cell. This deletes any table cursor.
1540 2 : SwPaM aPaM( *pStartNode );
1541 2 : aPaM.Move( fnMoveForward, fnGoNode );
1542 2 : Select( aPaM );
1543 : // Move cursor to the end of the table creating a selection and a table
1544 : // cursor.
1545 2 : pCrsrShell->SetMark();
1546 2 : pCrsrShell->MoveTable( fnTableCurr, fnTableEnd );
1547 : // now set the cursor into the cell again.
1548 2 : SwPaM *pPaM = pCrsrShell->GetTableCrs() ? pCrsrShell->GetTableCrs()
1549 2 : : pCrsrShell->GetCrsr();
1550 2 : *pPaM->GetPoint() = *pPaM->GetMark();
1551 2 : pCrsrShell->EndAction();
1552 : // we now have one cell selected!
1553 : }
1554 : else
1555 : {
1556 : // if the cursor is already in this table,
1557 : // expand the current selection (i.e., set
1558 : // point to new position; keep mark)
1559 2 : SwPaM aPaM( *pStartNode );
1560 2 : aPaM.Move( fnMoveForward, fnGoNode );
1561 2 : aPaM.SetMark();
1562 2 : const SwPaM *pPaM = pCrsrShell->GetTableCrs() ? pCrsrShell->GetTableCrs()
1563 2 : : pCrsrShell->GetCrsr();
1564 2 : *(aPaM.GetMark()) = *pPaM->GetMark();
1565 2 : Select( aPaM );
1566 :
1567 4 : }
1568 : }
1569 :
1570 0 : sal_Bool SAL_CALL SwAccessibleTable::isAccessibleChildSelected(
1571 : sal_Int32 nChildIndex )
1572 : throw ( lang::IndexOutOfBoundsException,
1573 : uno::RuntimeException, std::exception )
1574 : {
1575 0 : SolarMutexGuard aGuard;
1576 0 : CHECK_FOR_DEFUNC( XAccessibleTable );
1577 :
1578 0 : if( (nChildIndex < 0) || (nChildIndex >= getAccessibleChildCount()) ) // #i77106#
1579 0 : throw lang::IndexOutOfBoundsException();
1580 :
1581 0 : return IsChildSelected( nChildIndex );
1582 : }
1583 :
1584 2 : void SAL_CALL SwAccessibleTable::clearAccessibleSelection( )
1585 : throw ( uno::RuntimeException, std::exception )
1586 : {
1587 2 : SolarMutexGuard aGuard;
1588 :
1589 2 : CHECK_FOR_DEFUNC( XAccessibleTable );
1590 :
1591 2 : SwCrsrShell* pCrsrShell = GetCrsrShell();
1592 2 : if( pCrsrShell != NULL )
1593 : {
1594 2 : pCrsrShell->StartAction();
1595 2 : pCrsrShell->ClearMark();
1596 2 : pCrsrShell->EndAction();
1597 2 : }
1598 2 : }
1599 :
1600 2 : void SAL_CALL SwAccessibleTable::selectAllAccessibleChildren( )
1601 : throw ( uno::RuntimeException, std::exception )
1602 : {
1603 : // first clear selection, then select first and last child
1604 2 : clearAccessibleSelection();
1605 2 : selectAccessibleChild( 0 );
1606 2 : selectAccessibleChild( getAccessibleChildCount()-1 ); // #i77106#
1607 2 : }
1608 :
1609 0 : sal_Int32 SAL_CALL SwAccessibleTable::getSelectedAccessibleChildCount( )
1610 : throw ( uno::RuntimeException, std::exception )
1611 : {
1612 0 : SolarMutexGuard aGuard;
1613 0 : CHECK_FOR_DEFUNC( XAccessibleTable );
1614 :
1615 : // iterate over all children and count isAccessibleChildSelected()
1616 0 : sal_Int32 nCount = 0;
1617 :
1618 0 : sal_Int32 nChildren = getAccessibleChildCount(); // #i71106#
1619 0 : for( sal_Int32 n = 0; n < nChildren; n++ )
1620 0 : if( IsChildSelected( n ) )
1621 0 : nCount++;
1622 :
1623 0 : return nCount;
1624 : }
1625 :
1626 0 : uno::Reference<XAccessible> SAL_CALL SwAccessibleTable::getSelectedAccessibleChild(
1627 : sal_Int32 nSelectedChildIndex )
1628 : throw ( lang::IndexOutOfBoundsException,
1629 : uno::RuntimeException, std::exception)
1630 : {
1631 0 : SolarMutexGuard aGuard;
1632 0 : CHECK_FOR_DEFUNC( XAccessibleTable );
1633 :
1634 : // parameter checking (part 1): index lower 0
1635 0 : if( nSelectedChildIndex < 0 )
1636 0 : throw lang::IndexOutOfBoundsException();
1637 :
1638 0 : sal_Int32 nChildIndex = GetIndexOfSelectedChild( nSelectedChildIndex );
1639 :
1640 : // parameter checking (part 2): index higher than selected children?
1641 0 : if( nChildIndex < 0 )
1642 0 : throw lang::IndexOutOfBoundsException();
1643 :
1644 : // #i77106#
1645 0 : if ( nChildIndex >= getAccessibleChildCount() )
1646 : {
1647 0 : throw lang::IndexOutOfBoundsException();
1648 : }
1649 :
1650 0 : return getAccessibleChild( nChildIndex );
1651 : }
1652 :
1653 : // index has to be treated as global child index.
1654 0 : void SAL_CALL SwAccessibleTable::deselectAccessibleChild(
1655 : sal_Int32 nChildIndex )
1656 : throw ( lang::IndexOutOfBoundsException,
1657 : uno::RuntimeException, std::exception )
1658 : {
1659 0 : SolarMutexGuard aGuard;
1660 0 : CHECK_FOR_DEFUNC( XAccessibleTable );
1661 :
1662 0 : SwCrsrShell* pCrsrShell = GetCrsrShell();
1663 :
1664 : // index has to be treated as global child index
1665 0 : if ( !pCrsrShell )
1666 0 : throw lang::IndexOutOfBoundsException();
1667 :
1668 : // assure, that given child index is in bounds.
1669 0 : if ( nChildIndex < 0 || nChildIndex >= getAccessibleChildCount() ) // #i77106#
1670 0 : throw lang::IndexOutOfBoundsException();
1671 :
1672 : // assure, that child, identified by the given index, is selected.
1673 0 : if ( !IsChildSelected( nChildIndex ) )
1674 0 : return;
1675 :
1676 0 : const SwTableBox* pBox = GetTableBox( nChildIndex );
1677 : OSL_ENSURE( pBox != NULL, "We need the table box." );
1678 :
1679 : // If we unselect point, then set cursor to mark. If we clear another
1680 : // selected box, then set cursor to point.
1681 : // reduce selection to mark.
1682 0 : SwPaM *pPaM = pCrsrShell->GetTableCrs() ? pCrsrShell->GetTableCrs()
1683 0 : : pCrsrShell->GetCrsr();
1684 : bool bDeselectPoint =
1685 0 : pBox->GetSttNd() ==
1686 0 : pPaM->GetPoint()->nNode.GetNode().FindTableBoxStartNode();
1687 :
1688 0 : SwPaM aPaM( bDeselectPoint ? *pPaM->GetMark() : *pPaM->GetPoint() );
1689 :
1690 0 : pCrsrShell->StartAction();
1691 :
1692 : // Set cursor into either point or mark
1693 0 : Select( aPaM );
1694 : // Move cursor to the end of the table creating a selection and a table
1695 : // cursor.
1696 0 : pCrsrShell->SetMark();
1697 0 : pCrsrShell->MoveTable( fnTableCurr, fnTableEnd );
1698 : // now set the cursor into the cell again.
1699 0 : pPaM = pCrsrShell->GetTableCrs() ? pCrsrShell->GetTableCrs()
1700 0 : : pCrsrShell->GetCrsr();
1701 0 : *pPaM->GetPoint() = *pPaM->GetMark();
1702 0 : pCrsrShell->EndAction();
1703 : }
1704 :
1705 1 : sal_Int32 SAL_CALL SwAccessibleTable::getBackground()
1706 : throw (::com::sun::star::uno::RuntimeException, std::exception)
1707 : {
1708 1 : const SvxBrushItem &rBack = GetFrm()->GetAttrSet()->GetBackground();
1709 1 : sal_uInt32 crBack = rBack.GetColor().GetColor();
1710 :
1711 1 : if (COL_AUTO == crBack)
1712 : {
1713 1 : uno::Reference<XAccessible> xAccDoc = getAccessibleParent();
1714 1 : if (xAccDoc.is())
1715 : {
1716 1 : uno::Reference<XAccessibleComponent> xCompoentDoc(xAccDoc,uno::UNO_QUERY);
1717 1 : if (xCompoentDoc.is())
1718 : {
1719 1 : crBack = (sal_uInt32)xCompoentDoc->getBackground();
1720 1 : }
1721 1 : }
1722 : }
1723 1 : return crBack;
1724 : }
1725 :
1726 10 : void SwAccessibleTable::FireSelectionEvent( )
1727 : {
1728 10 : AccessibleEventObject aEvent;
1729 :
1730 10 : aEvent.EventId = AccessibleEventId::SELECTION_CHANGED_REMOVE;
1731 :
1732 63 : for (Cells_t::iterator vi = m_vecCellRemove.begin();
1733 42 : vi != m_vecCellRemove.end(); ++vi)
1734 : {
1735 : // fdo#57197: check if the object is still alive
1736 11 : uno::Reference<XAccessible> const xAcc(vi->second);
1737 11 : if (xAcc.is())
1738 : {
1739 11 : SwAccessibleContext *const pAccCell(vi->first);
1740 : assert(pAccCell);
1741 11 : pAccCell->FireAccessibleEvent(aEvent);
1742 : }
1743 11 : }
1744 :
1745 10 : if (m_vecCellAdd.size() <= SELECTION_WITH_NUM)
1746 : {
1747 10 : aEvent.EventId = AccessibleEventId::SELECTION_CHANGED_ADD;
1748 87 : for (Cells_t::iterator vi = m_vecCellAdd.begin();
1749 58 : vi != m_vecCellAdd.end(); ++vi)
1750 : {
1751 : // fdo#57197: check if the object is still alive
1752 19 : uno::Reference<XAccessible> const xAcc(vi->second);
1753 19 : if (xAcc.is())
1754 : {
1755 19 : SwAccessibleContext *const pAccCell(vi->first);
1756 : assert(pAccCell);
1757 19 : pAccCell->FireAccessibleEvent(aEvent);
1758 : }
1759 19 : }
1760 20 : return ;
1761 : }
1762 : else
1763 : {
1764 0 : aEvent.EventId = AccessibleEventId::SELECTION_CHANGED_WITHIN;
1765 0 : FireAccessibleEvent(aEvent);
1766 0 : }
1767 : }
1768 :
1769 5 : void SwAccessibleTable::AddSelectionCell(
1770 : SwAccessibleContext *const pAccCell, bool const bAddOrRemove)
1771 : {
1772 5 : uno::Reference<XAccessible> const xTmp(pAccCell);
1773 5 : if (bAddOrRemove)
1774 : {
1775 3 : m_vecCellAdd.push_back(std::make_pair(pAccCell, xTmp));
1776 : }
1777 : else
1778 : {
1779 2 : m_vecCellRemove.push_back(std::make_pair(pAccCell, xTmp));
1780 5 : }
1781 5 : }
1782 :
1783 : // XAccessibleTableSelection
1784 0 : sal_Bool SAL_CALL SwAccessibleTable::selectRow( sal_Int32 row )
1785 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1786 : {
1787 0 : SolarMutexGuard g;
1788 :
1789 0 : if( isAccessibleColumnSelected( row ) )
1790 0 : return sal_True;
1791 :
1792 0 : long lColumnCount = getAccessibleColumnCount();
1793 0 : for(long lCol = 0; lCol < lColumnCount; lCol ++)
1794 : {
1795 0 : long lChildIndex = getAccessibleIndex(row, lCol);
1796 0 : selectAccessibleChild(lChildIndex);
1797 : }
1798 :
1799 0 : return sal_True;
1800 : }
1801 0 : sal_Bool SAL_CALL SwAccessibleTable::selectColumn( sal_Int32 column )
1802 : throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
1803 : {
1804 0 : SolarMutexGuard g;
1805 :
1806 0 : if( isAccessibleColumnSelected( column ) )
1807 0 : return sal_True;
1808 :
1809 0 : long lRowCount = getAccessibleRowCount();
1810 :
1811 0 : for(long lRow = 0; lRow < lRowCount; lRow ++)
1812 : {
1813 0 : long lChildIndex = getAccessibleIndex(lRow, column);
1814 0 : selectAccessibleChild(lChildIndex);
1815 : }
1816 0 : return sal_True;
1817 : }
1818 :
1819 0 : sal_Bool SAL_CALL SwAccessibleTable::unselectRow( sal_Int32 row )
1820 : throw (lang::IndexOutOfBoundsException,
1821 : uno::RuntimeException,
1822 : std::exception)
1823 : {
1824 0 : SolarMutexGuard g;
1825 :
1826 0 : if( isAccessibleSelected( row , 0 ) && isAccessibleSelected( row , getAccessibleColumnCount()-1 ) )
1827 : {
1828 0 : SwCrsrShell* pCrsrShell = GetCrsrShell();
1829 0 : if( pCrsrShell != NULL )
1830 : {
1831 0 : pCrsrShell->StartAction();
1832 0 : pCrsrShell->ClearMark();
1833 0 : pCrsrShell->EndAction();
1834 0 : return sal_True;
1835 : }
1836 : }
1837 0 : return sal_True;
1838 : }
1839 :
1840 0 : sal_Bool SAL_CALL SwAccessibleTable::unselectColumn( sal_Int32 column )
1841 : throw (lang::IndexOutOfBoundsException,
1842 : uno::RuntimeException,
1843 : std::exception)
1844 : {
1845 0 : SolarMutexGuard g;
1846 :
1847 0 : if( isAccessibleSelected( 0 , column ) && isAccessibleSelected( getAccessibleRowCount()-1,column))
1848 : {
1849 0 : SwCrsrShell* pCrsrShell = GetCrsrShell();
1850 0 : if( pCrsrShell != NULL )
1851 : {
1852 0 : pCrsrShell->StartAction();
1853 0 : pCrsrShell->ClearMark();
1854 0 : pCrsrShell->EndAction();
1855 0 : return sal_True;
1856 : }
1857 : }
1858 0 : return sal_True;
1859 : }
1860 :
1861 : // #i77106# - implementation of class <SwAccessibleTableColHeaders>
1862 0 : SwAccessibleTableColHeaders::SwAccessibleTableColHeaders( SwAccessibleMap *pMap2,
1863 : const SwTabFrm *pTabFrm )
1864 0 : : SwAccessibleTable( pMap2, pTabFrm )
1865 : {
1866 0 : SolarMutexGuard aGuard;
1867 :
1868 0 : const SwFrameFormat *pFrameFormat = pTabFrm->GetFormat();
1869 0 : const_cast< SwFrameFormat * >( pFrameFormat )->Add( this );
1870 0 : const OUString aName = pFrameFormat->GetName() + "-ColumnHeaders";
1871 :
1872 0 : SetName( aName + "-" + OUString::number( pTabFrm->GetPhyPageNum() ) );
1873 :
1874 0 : const OUString sArg2( GetFormattedPageNumber() );
1875 :
1876 0 : SetDesc( GetResource( STR_ACCESS_TABLE_DESC, &aName, &sArg2 ) );
1877 :
1878 0 : NotRegisteredAtAccessibleMap(); // #i85634#
1879 0 : }
1880 :
1881 0 : SwAccessibleTableData_Impl* SwAccessibleTableColHeaders::CreateNewTableData()
1882 : {
1883 0 : const SwTabFrm* pTabFrm = static_cast<const SwTabFrm*>( GetFrm() );
1884 0 : return new SwAccessibleTableData_Impl( *(GetMap()), pTabFrm, IsInPagePreview(), true );
1885 : }
1886 :
1887 0 : void SwAccessibleTableColHeaders::Modify( const SfxPoolItem * /*pOld*/, const SfxPoolItem * /*pNew*/ )
1888 : {
1889 0 : }
1890 :
1891 : // XInterface
1892 0 : uno::Any SAL_CALL SwAccessibleTableColHeaders::queryInterface( const uno::Type& aType )
1893 : throw (uno::RuntimeException, std::exception)
1894 : {
1895 0 : return SwAccessibleTable::queryInterface( aType );
1896 : }
1897 :
1898 : // XAccessibleContext
1899 0 : sal_Int32 SAL_CALL SwAccessibleTableColHeaders::getAccessibleChildCount()
1900 : throw (uno::RuntimeException, std::exception)
1901 : {
1902 0 : SolarMutexGuard aGuard;
1903 :
1904 0 : CHECK_FOR_DEFUNC( XAccessibleContext )
1905 :
1906 0 : sal_Int32 nCount = 0;
1907 :
1908 0 : const SwTabFrm* pTabFrm = static_cast<const SwTabFrm*>( GetFrm() );
1909 0 : const SwAccessibleChildSList aVisList( GetVisArea(), *pTabFrm, *(GetMap()) );
1910 0 : SwAccessibleChildSList::const_iterator aIter( aVisList.begin() );
1911 0 : while( aIter != aVisList.end() )
1912 : {
1913 0 : const SwAccessibleChild& rLower = *aIter;
1914 0 : if( rLower.IsAccessible( IsInPagePreview() ) )
1915 : {
1916 0 : nCount++;
1917 : }
1918 0 : else if( rLower.GetSwFrm() )
1919 : {
1920 : // There are no unaccessible SdrObjects that count
1921 0 : if ( !rLower.GetSwFrm()->IsRowFrm() ||
1922 0 : pTabFrm->IsInHeadline( *(rLower.GetSwFrm()) ) )
1923 : {
1924 0 : nCount += SwAccessibleFrame::GetChildCount( *(GetMap()),
1925 0 : GetVisArea(),
1926 : rLower.GetSwFrm(),
1927 0 : IsInPagePreview() );
1928 : }
1929 : }
1930 0 : ++aIter;
1931 : }
1932 :
1933 0 : return nCount;
1934 : }
1935 :
1936 : uno::Reference< XAccessible> SAL_CALL
1937 0 : SwAccessibleTableColHeaders::getAccessibleChild (sal_Int32 nIndex)
1938 : throw (uno::RuntimeException, lang::IndexOutOfBoundsException, std::exception)
1939 : {
1940 0 : if ( nIndex < 0 || nIndex >= getAccessibleChildCount() )
1941 : {
1942 0 : throw lang::IndexOutOfBoundsException();
1943 : }
1944 :
1945 0 : return SwAccessibleTable::getAccessibleChild( nIndex );
1946 : }
1947 :
1948 : // XAccessibleTable
1949 : uno::Reference< XAccessibleTable >
1950 0 : SAL_CALL SwAccessibleTableColHeaders::getAccessibleRowHeaders()
1951 : throw (uno::RuntimeException, std::exception)
1952 : {
1953 0 : return uno::Reference< XAccessibleTable >();
1954 : }
1955 :
1956 : uno::Reference< XAccessibleTable >
1957 0 : SAL_CALL SwAccessibleTableColHeaders::getAccessibleColumnHeaders()
1958 : throw (uno::RuntimeException, std::exception)
1959 : {
1960 0 : return uno::Reference< XAccessibleTable >();
1961 : }
1962 :
1963 : // XServiceInfo
1964 :
1965 0 : OUString SAL_CALL SwAccessibleTableColHeaders::getImplementationName()
1966 : throw (uno::RuntimeException, std::exception)
1967 : {
1968 : static const sal_Char sImplName[] = "com.sun.star.comp.Writer.SwAccessibleTableColumnHeadersView";
1969 0 : return OUString(sImplName);
1970 177 : }
1971 :
1972 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|