Rubber-stamped by Brady Eidson.
[webbrowser.git] / WebCore / accessibility / AccessibilityTableColumn.cpp
blobee8531eef51c309c86d15c4a34dcc74869f7ca46
1 /*
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
6 * are met:
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.
29 #include "config.h"
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"
39 using namespace std;
41 namespace WebCore {
43 using namespace HTMLNames;
45 AccessibilityTableColumn::AccessibilityTableColumn()
46 : m_parentTable(0)
50 AccessibilityTableColumn::~AccessibilityTableColumn()
54 PassRefPtr<AccessibilityTableColumn> AccessibilityTableColumn::create()
56 return adoptRef(new AccessibilityTableColumn());
59 void AccessibilityTableColumn::setParentTable(AccessibilityTable* table)
61 m_parentTable = table;
63 clearChildren();
66 IntRect AccessibilityTableColumn::elementRect() const
68 // this will be filled in when addChildren is called
69 return m_columnRect;
72 IntSize AccessibilityTableColumn::size() const
74 return elementRect().size();
77 const AccessibilityObject::AccessibilityChildrenVector& AccessibilityTableColumn::children()
79 if (!m_haveChildren)
80 addChildren();
81 return m_children;
84 AccessibilityObject* AccessibilityTableColumn::headerObject()
86 if (!m_parentTable)
87 return 0;
89 RenderObject* renderer = m_parentTable->renderer();
90 if (!renderer)
91 return 0;
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)
99 return cell;
102 return 0;
105 if (!renderer->isTable())
106 return 0;
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);
115 if (headerObject)
116 return headerObject;
118 // now try for <th> tags in the first body
119 headerObject = headerObjectForSection(table->firstBody(), true);
121 return headerObject;
124 AccessibilityObject* AccessibilityTableColumn::headerObjectForSection(RenderTableSection* section, bool thTagRequired)
126 if (!section)
127 return 0;
129 int numCols = section->numColumns();
130 if (m_columnIndex >= numCols)
131 return 0;
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;
137 if (!testCell)
138 continue;
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)
143 break;
145 Node* node = testCell->node();
146 if (!node)
147 continue;
149 if (thTagRequired && !node->hasTagName(thTag))
150 continue;
152 cell = testCell;
155 if (!cell)
156 return 0;
158 return m_parentTable->axObjectCache()->getOrCreate(cell);
161 void AccessibilityTableColumn::addChildren()
163 ASSERT(!m_haveChildren);
165 m_haveChildren = true;
166 if (!m_parentTable)
167 return;
169 int numRows = m_parentTable->rowCount();
171 for (int i = 0; i < numRows; i++) {
172 AccessibilityTableCell* cell = m_parentTable->cellForColumnAndRow(m_columnIndex, i);
173 if (!cell)
174 continue;
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)
178 continue;
180 m_children.append(cell);
181 m_columnRect.unite(cell->elementRect());
185 } // namespace WebCore