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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 BLINK_EXPORT bool isAriaReadOnly() const; | 106 BLINK_EXPORT bool isAriaReadOnly() const; |
107 BLINK_EXPORT bool isButtonStateMixed() const; | 107 BLINK_EXPORT bool isButtonStateMixed() const; |
108 BLINK_EXPORT bool isChecked() const; | 108 BLINK_EXPORT bool isChecked() const; |
109 BLINK_EXPORT bool isClickable() const; | 109 BLINK_EXPORT bool isClickable() const; |
110 BLINK_EXPORT bool isCollapsed() const; | 110 BLINK_EXPORT bool isCollapsed() const; |
111 BLINK_EXPORT bool isControl() const; | 111 BLINK_EXPORT bool isControl() const; |
112 BLINK_EXPORT bool isEnabled() const; | 112 BLINK_EXPORT bool isEnabled() const; |
113 BLINK_EXPORT WebAXExpanded isExpanded() const; | 113 BLINK_EXPORT WebAXExpanded isExpanded() const; |
114 BLINK_EXPORT bool isFocused() const; | 114 BLINK_EXPORT bool isFocused() const; |
115 BLINK_EXPORT bool isHovered() const; | 115 BLINK_EXPORT bool isHovered() const; |
116 BLINK_EXPORT bool isIndeterminate() const; | |
117 BLINK_EXPORT bool isLinked() const; | 116 BLINK_EXPORT bool isLinked() const; |
118 BLINK_EXPORT bool isLoaded() const; | 117 BLINK_EXPORT bool isLoaded() const; |
119 BLINK_EXPORT bool isMultiSelectable() const; | 118 BLINK_EXPORT bool isMultiSelectable() const; |
120 BLINK_EXPORT bool isOffScreen() const; | 119 BLINK_EXPORT bool isOffScreen() const; |
121 BLINK_EXPORT bool isPasswordField() const; | 120 BLINK_EXPORT bool isPasswordField() const; |
122 BLINK_EXPORT bool isPressed() const; | 121 BLINK_EXPORT bool isPressed() const; |
123 BLINK_EXPORT bool isReadOnly() const; | 122 BLINK_EXPORT bool isReadOnly() const; |
124 BLINK_EXPORT bool isRequired() const; | 123 BLINK_EXPORT bool isRequired() const; |
125 BLINK_EXPORT bool isSelected() const; | 124 BLINK_EXPORT bool isSelected() const; |
126 BLINK_EXPORT bool isSelectedOptionActive() const; | 125 BLINK_EXPORT bool isSelectedOptionActive() const; |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 operator AXObject*() const; | 294 operator AXObject*() const; |
296 #endif | 295 #endif |
297 | 296 |
298 private: | 297 private: |
299 WebPrivatePtr<AXObject> m_private; | 298 WebPrivatePtr<AXObject> m_private; |
300 }; | 299 }; |
301 | 300 |
302 } // namespace blink | 301 } // namespace blink |
303 | 302 |
304 #endif | 303 #endif |
OLD | NEW |