| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 AXTableRow(RenderObject*, AXObjectCacheImpl*); | 41 AXTableRow(RenderObject*, AXObjectCacheImpl*); |
| 42 | 42 |
| 43 public: | 43 public: |
| 44 static PassRefPtr<AXTableRow> create(RenderObject*, AXObjectCacheImpl*); | 44 static PassRefPtr<AXTableRow> create(RenderObject*, AXObjectCacheImpl*); |
| 45 virtual ~AXTableRow(); | 45 virtual ~AXTableRow(); |
| 46 | 46 |
| 47 virtual bool isTableRow() const override final; | 47 virtual bool isTableRow() const override final; |
| 48 | 48 |
| 49 // retrieves the "row" header (a th tag in the rightmost column) | 49 // retrieves the "row" header (a th tag in the rightmost column) |
| 50 virtual AXObject* headerObject(); | 50 virtual AXObject* headerObject(); |
| 51 // retrieves the "row" headers (th, scope) from left to right for the each r
ow. |
| 52 void headerObjectsForRow(AccessibilityChildrenVector&); |
| 51 AXObject* parentTable() const; | 53 AXObject* parentTable() const; |
| 52 | 54 |
| 53 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } | 55 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } |
| 54 int rowIndex() const { return m_rowIndex; } | 56 int rowIndex() const { return m_rowIndex; } |
| 55 | 57 |
| 56 // allows the table to add other children that may not originate | 58 // allows the table to add other children that may not originate |
| 57 // in the row, but their col/row spans overlap into it | 59 // in the row, but their col/row spans overlap into it |
| 58 void appendChild(AXObject*); | 60 void appendChild(AXObject*); |
| 59 | 61 |
| 60 protected: | 62 protected: |
| 61 virtual AccessibilityRole determineAccessibilityRole() override final; | 63 virtual AccessibilityRole determineAccessibilityRole() override final; |
| 62 | 64 |
| 63 private: | 65 private: |
| 64 int m_rowIndex; | 66 int m_rowIndex; |
| 65 | 67 |
| 66 virtual AXObject* observableObject() const override final; | 68 virtual AXObject* observableObject() const override final; |
| 67 virtual bool computeAccessibilityIsIgnored() const override final; | 69 virtual bool computeAccessibilityIsIgnored() const override final; |
| 68 }; | 70 }; |
| 69 | 71 |
| 70 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow()); | 72 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow()); |
| 71 | 73 |
| 72 } // namespace blink | 74 } // namespace blink |
| 73 | 75 |
| 74 #endif // AXTableRow_h | 76 #endif // AXTableRow_h |
| OLD | NEW |