OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 5 #ifndef WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
6 #define WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 6 #define WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
7 | 7 |
8 #include "base/string16.h" | 8 #include "base/string16.h" |
9 | 9 |
10 namespace webkit_glue { | 10 namespace webkit_glue { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 // accessibility roles in our Glue layer (used in | 63 // accessibility roles in our Glue layer (used in |
64 // GlueAccessibilityObject::Role). Any interface using roles must provide a | 64 // GlueAccessibilityObject::Role). Any interface using roles must provide a |
65 // conversion to its own roles (see e.g. BrowserAccessibility::get_accRole and | 65 // conversion to its own roles (see e.g. BrowserAccessibility::get_accRole and |
66 // BrowserAccessibility::MSAARole). | 66 // BrowserAccessibility::MSAARole). |
67 enum Role { | 67 enum Role { |
68 ROLE_CELL, | 68 ROLE_CELL, |
69 ROLE_CHECKBUTTON, | 69 ROLE_CHECKBUTTON, |
70 ROLE_CLIENT, | 70 ROLE_CLIENT, |
71 ROLE_COLUMN, | 71 ROLE_COLUMN, |
72 ROLE_COLUMNHEADER, | 72 ROLE_COLUMNHEADER, |
| 73 ROLE_DOCUMENT, |
73 ROLE_GRAPHIC, | 74 ROLE_GRAPHIC, |
74 ROLE_GROUPING, | 75 ROLE_GROUPING, |
75 ROLE_LINK, | 76 ROLE_LINK, |
76 ROLE_LIST, | 77 ROLE_LIST, |
77 ROLE_LISTBOX, | 78 ROLE_LISTBOX, |
| 79 ROLE_MENUBAR, |
78 ROLE_MENUITEM, | 80 ROLE_MENUITEM, |
79 ROLE_MENUPOPUP, | 81 ROLE_MENUPOPUP, |
80 ROLE_OUTLINE, | 82 ROLE_OUTLINE, |
81 ROLE_PAGETABLIST, | 83 ROLE_PAGETABLIST, |
82 ROLE_PROGRESSBAR, | 84 ROLE_PROGRESSBAR, |
83 ROLE_PUSHBUTTON, | 85 ROLE_PUSHBUTTON, |
84 ROLE_RADIOBUTTON, | 86 ROLE_RADIOBUTTON, |
85 ROLE_ROW, | 87 ROLE_ROW, |
86 ROLE_ROWHEADER, | 88 ROLE_ROWHEADER, |
87 ROLE_SLIDER, | 89 ROLE_SLIDER, |
88 ROLE_STATICTEXT, | 90 ROLE_STATICTEXT, |
89 ROLE_TABLE, | 91 ROLE_TABLE, |
90 ROLE_TEXT | 92 ROLE_TEXT, |
| 93 ROLE_TOOLBAR |
91 }; | 94 }; |
92 | 95 |
93 // This defines an enumeration (in alphabetical order) of the supported | 96 // This defines an enumeration (in alphabetical order) of the supported |
94 // accessibility states in our Glue layer (used in | 97 // accessibility states in our Glue layer (used in |
95 // GlueAccessibilityObject::State). Any interface using states must provide a | 98 // GlueAccessibilityObject::State). Any interface using states must provide a |
96 // conversion to its own states (see e.g. BrowserAccessibility::get_accState | 99 // conversion to its own states (see e.g. BrowserAccessibility::get_accState |
97 // and BrowserAccessibility::MSAAState). | 100 // and BrowserAccessibility::MSAAState). |
98 enum State { | 101 enum State { |
99 STATE_CHECKED, | 102 STATE_CHECKED, |
100 STATE_FOCUSABLE, | 103 STATE_FOCUSABLE, |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 // Interface-specific error return codes (e.g. MSAA's E_POINTER, | 158 // Interface-specific error return codes (e.g. MSAA's E_POINTER, |
156 // E_INVALIDARG, E_FAIL, E_NOTIMPL) must be handled on the browser side by | 159 // E_INVALIDARG, E_FAIL, E_NOTIMPL) must be handled on the browser side by |
157 // input validation. | 160 // input validation. |
158 bool return_code; | 161 bool return_code; |
159 }; | 162 }; |
160 }; | 163 }; |
161 | 164 |
162 } // namespace webkit_glue | 165 } // namespace webkit_glue |
163 | 166 |
164 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ | 167 #endif // WEBKIT_GLUE_WEBACCESSIBILITY_H_ |
OLD | NEW |