2 * Copyright (C) 2008 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "AccessibilityTableColumn.h"
32 #include "AXObjectCache.h"
33 #include "AccessibilityTableCell.h"
34 #include "HTMLNames.h"
35 #include "RenderTable.h"
36 #include "RenderTableCell.h"
37 #include "RenderTableSection.h"
43 using namespace HTMLNames
;
45 AccessibilityTableColumn::AccessibilityTableColumn()
50 AccessibilityTableColumn::~AccessibilityTableColumn()
54 PassRefPtr
<AccessibilityTableColumn
> AccessibilityTableColumn::create()
56 return adoptRef(new AccessibilityTableColumn());
59 void AccessibilityTableColumn::setParentTable(AccessibilityTable
* table
)
61 m_parentTable
= table
;
66 IntRect
AccessibilityTableColumn::elementRect() const
68 // this will be filled in when addChildren is called
72 IntSize
AccessibilityTableColumn::size() const
74 return elementRect().size();
77 const AccessibilityObject::AccessibilityChildrenVector
& AccessibilityTableColumn::children()
84 AccessibilityObject
* AccessibilityTableColumn::headerObject()
89 RenderObject
* renderer
= m_parentTable
->renderer();
93 if (m_parentTable
->isAriaTable()) {
94 AccessibilityChildrenVector rowChildren
= children();
95 unsigned childrenCount
= rowChildren
.size();
96 for (unsigned i
= 0; i
< childrenCount
; ++i
) {
97 AccessibilityObject
* cell
= rowChildren
[i
].get();
98 if (cell
->ariaRoleAttribute() == ColumnHeaderRole
)
105 if (!renderer
->isTable())
108 RenderTable
* table
= toRenderTable(renderer
);
110 AccessibilityObject
* headerObject
= 0;
112 // try the <thead> section first. this doesn't require th tags
113 headerObject
= headerObjectForSection(table
->header(), false);
118 // now try for <th> tags in the first body
119 headerObject
= headerObjectForSection(table
->firstBody(), true);
124 AccessibilityObject
* AccessibilityTableColumn::headerObjectForSection(RenderTableSection
* section
, bool thTagRequired
)
129 int numCols
= section
->numColumns();
130 if (m_columnIndex
>= numCols
)
133 RenderTableCell
* cell
= 0;
134 // also account for cells that have a span
135 for (int testCol
= m_columnIndex
; testCol
>= 0; --testCol
) {
136 RenderTableCell
* testCell
= section
->cellAt(0, testCol
).cell
;
140 // we've reached a cell that doesn't even overlap our column
141 // it can't be our header
142 if ((testCell
->col() + (testCell
->colSpan()-1)) < m_columnIndex
)
145 Node
* node
= testCell
->node();
149 if (thTagRequired
&& !node
->hasTagName(thTag
))
158 return m_parentTable
->axObjectCache()->getOrCreate(cell
);
161 void AccessibilityTableColumn::addChildren()
163 ASSERT(!m_haveChildren
);
165 m_haveChildren
= true;
169 int numRows
= m_parentTable
->rowCount();
171 for (int i
= 0; i
< numRows
; i
++) {
172 AccessibilityTableCell
* cell
= m_parentTable
->cellForColumnAndRow(m_columnIndex
, i
);
176 // make sure the last one isn't the same as this one (rowspan cells)
177 if (m_children
.size() > 0 && m_children
.last() == cell
)
180 m_children
.append(cell
);
181 m_columnRect
.unite(cell
->elementRect());
185 } // namespace WebCore