OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 BLINK_EXPORT WebAXObject ParentObject() const; | 120 BLINK_EXPORT WebAXObject ParentObject() const; |
121 | 121 |
122 // Retrieve accessibility attributes that apply to only a small | 122 // Retrieve accessibility attributes that apply to only a small |
123 // fraction of WebAXObjects by passing an implementation of | 123 // fraction of WebAXObjects by passing an implementation of |
124 // WebAXSparseAttributeClient, which will be called with only the attributes | 124 // WebAXSparseAttributeClient, which will be called with only the attributes |
125 // that apply to this object. | 125 // that apply to this object. |
126 BLINK_EXPORT void GetSparseAXAttributes(WebAXSparseAttributeClient&) const; | 126 BLINK_EXPORT void GetSparseAXAttributes(WebAXSparseAttributeClient&) const; |
127 | 127 |
128 BLINK_EXPORT bool IsAnchor() const; | 128 BLINK_EXPORT bool IsAnchor() const; |
129 BLINK_EXPORT bool IsAriaReadOnly() const; | 129 BLINK_EXPORT bool IsAriaReadOnly() const; |
130 BLINK_EXPORT bool IsButtonStateMixed() const; | 130 BLINK_EXPORT WebAXCheckedState CheckedState() const; |
131 BLINK_EXPORT bool IsChecked() const; | 131 BLINK_EXPORT bool IsCheckable() const; |
132 BLINK_EXPORT bool IsClickable() const; | 132 BLINK_EXPORT bool IsClickable() const; |
133 BLINK_EXPORT bool IsCollapsed() const; | 133 BLINK_EXPORT bool IsCollapsed() const; |
134 BLINK_EXPORT bool IsControl() const; | 134 BLINK_EXPORT bool IsControl() const; |
135 BLINK_EXPORT bool IsEnabled() const; | 135 BLINK_EXPORT bool IsEnabled() const; |
136 BLINK_EXPORT WebAXExpanded IsExpanded() const; | 136 BLINK_EXPORT WebAXExpanded IsExpanded() const; |
137 BLINK_EXPORT bool IsFocused() const; | 137 BLINK_EXPORT bool IsFocused() const; |
138 BLINK_EXPORT bool IsHovered() const; | 138 BLINK_EXPORT bool IsHovered() const; |
139 BLINK_EXPORT bool IsLinked() const; | 139 BLINK_EXPORT bool IsLinked() const; |
140 BLINK_EXPORT bool IsLoaded() const; | 140 BLINK_EXPORT bool IsLoaded() const; |
141 BLINK_EXPORT bool IsModal() const; | 141 BLINK_EXPORT bool IsModal() const; |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 operator AXObject*() const; | 358 operator AXObject*() const; |
359 #endif | 359 #endif |
360 | 360 |
361 private: | 361 private: |
362 WebPrivatePtr<AXObject> private_; | 362 WebPrivatePtr<AXObject> private_; |
363 }; | 363 }; |
364 | 364 |
365 } // namespace blink | 365 } // namespace blink |
366 | 366 |
367 #endif | 367 #endif |
OLD | NEW |