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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 LayoutObject* layoutParentObject() const; | 201 LayoutObject* layoutParentObject() const; |
202 bool isSVGImage() const; | 202 bool isSVGImage() const; |
203 void detachRemoteSVGRoot(); | 203 void detachRemoteSVGRoot(); |
204 AXSVGRoot* remoteSVGRootElement() const; | 204 AXSVGRoot* remoteSVGRootElement() const; |
205 AXObject* remoteSVGElementHitTest(const IntPoint&) const; | 205 AXObject* remoteSVGElementHitTest(const IntPoint&) const; |
206 void offsetBoundingBoxForRemoteSVGElement(LayoutRect&) const; | 206 void offsetBoundingBoxForRemoteSVGElement(LayoutRect&) const; |
207 void addHiddenChildren(); | 207 void addHiddenChildren(); |
208 void addTextFieldChildren(); | 208 void addTextFieldChildren(); |
209 void addImageMapChildren(); | 209 void addImageMapChildren(); |
210 void addCanvasChildren(); | 210 void addCanvasChildren(); |
211 void addFrameChildren(); | |
212 void addPopupChildren(); | 211 void addPopupChildren(); |
213 void addRemoteSVGChildren(); | 212 void addRemoteSVGChildren(); |
214 void addInlineTextBoxChildren(bool force); | 213 void addInlineTextBoxChildren(bool force); |
215 | 214 |
216 bool elementAttributeValue(const QualifiedName&) const; | 215 bool elementAttributeValue(const QualifiedName&) const; |
217 LayoutRect computeElementRect() const; | 216 LayoutRect computeElementRect() const; |
218 AXRange textControlSelection() const; | 217 AXRange textControlSelection() const; |
219 int indexForVisiblePosition(const VisiblePosition&) const; | 218 int indexForVisiblePosition(const VisiblePosition&) const; |
220 AXLayoutObject* getUnignoredObjectFromNode(Node&) const; | 219 AXLayoutObject* getUnignoredObjectFromNode(Node&) const; |
221 }; | 220 }; |
222 | 221 |
223 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, isAXLayoutObject()); | 222 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, isAXLayoutObject()); |
224 | 223 |
225 } // namespace blink | 224 } // namespace blink |
226 | 225 |
227 #endif // AXLayoutObject_h | 226 #endif // AXLayoutObject_h |
OLD | NEW |