OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 AXCheckedStateChanged, | 55 AXCheckedStateChanged, |
56 AXChildrenChanged, | 56 AXChildrenChanged, |
57 AXFocusedUIElementChanged, | 57 AXFocusedUIElementChanged, |
58 AXHide, | 58 AXHide, |
59 AXInvalidStatusChanged, | 59 AXInvalidStatusChanged, |
60 AXLayoutComplete, | 60 AXLayoutComplete, |
61 AXLiveRegionChanged, | 61 AXLiveRegionChanged, |
62 AXLoadComplete, | 62 AXLoadComplete, |
63 AXLocationChanged, | 63 AXLocationChanged, |
64 AXMenuListItemSelected, | 64 AXMenuListItemSelected, |
| 65 AXMenuListItemUnselected, |
65 AXMenuListValueChanged, | 66 AXMenuListValueChanged, |
66 AXRowCollapsed, | 67 AXRowCollapsed, |
67 AXRowCountChanged, | 68 AXRowCountChanged, |
68 AXRowExpanded, | 69 AXRowExpanded, |
69 AXScrollPositionChanged, | 70 AXScrollPositionChanged, |
70 AXScrolledToAnchor, | 71 AXScrolledToAnchor, |
71 AXSelectedChildrenChanged, | 72 AXSelectedChildrenChanged, |
72 AXSelectedTextChanged, | 73 AXSelectedTextChanged, |
73 AXShow, | 74 AXShow, |
74 AXTextChanged, | 75 AXTextChanged, |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 144 |
144 private: | 145 private: |
145 Document& m_document; | 146 Document& m_document; |
146 AXObjectCache* m_cache; | 147 AXObjectCache* m_cache; |
147 bool m_isScoped; | 148 bool m_isScoped; |
148 }; | 149 }; |
149 | 150 |
150 } | 151 } |
151 | 152 |
152 #endif | 153 #endif |
OLD | NEW |