// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ #pragma once #import #import "base/memory/scoped_nsobject.h" #import "content/browser/accessibility/browser_accessibility_delegate_mac.h" #include "content/browser/accessibility/browser_accessibility.h" // BrowserAccessibilityCocoa is a cocoa wrapper around the BrowserAccessibility // object. The renderer converts webkit's accessibility tree into a // WebAccessibility tree and passes it to the browser process over IPC. // This class converts it into a format Cocoa can query. @interface BrowserAccessibilityCocoa : NSObject { @private BrowserAccessibility* browserAccessibility_; scoped_nsobject children_; id delegate_; } // This creates a cocoa browser accessibility object around // the cross platform BrowserAccessibility object. The delegate is // used to communicate with the host renderer. None of these // parameters can be null. - (id)initWithObject:(BrowserAccessibility*)accessibility delegate:(id)delegate; // Invalidate children for a non-ignored ancestor (including self). - (void)childrenChanged; // Children is an array of BrowserAccessibility objects, representing // the accessibility children of this object. @property(nonatomic, readonly) NSArray* children; @property(nonatomic, readonly) NSArray* columns; @property(nonatomic, readonly) NSString* description; @property(nonatomic, readonly) NSNumber* enabled; @property(nonatomic, readonly) NSNumber* focused; @property(nonatomic, readonly) NSString* help; // isIgnored returns whether or not the accessibility object // should be ignored by the accessibility hierarchy. @property(nonatomic, readonly, getter=isIgnored) BOOL ignored; // The origin of this object in the page's document. // This is relative to webkit's top-left origin, not Cocoa's // bottom-left origin. @property(nonatomic, readonly) NSPoint origin; @property(nonatomic, readonly) NSNumber* numberOfCharacters; @property(nonatomic, readonly) id parent; @property(nonatomic, readonly) NSValue* position; // A string indicating the role of this object as far as accessibility // is concerned. @property(nonatomic, readonly) NSString* role; @property(nonatomic, readonly) NSString* roleDescription; @property(nonatomic, readonly) NSArray* rows; // The size of this object. @property(nonatomic, readonly) NSValue* size; // A string indicating the subrole of this object as far as accessibility // is concerned. @property(nonatomic, readonly) NSString* subrole; // The tabs owned by a tablist. @property(nonatomic, readonly) NSArray* tabs; @property(nonatomic, readonly) NSString* title; @property(nonatomic, readonly) NSString* url; @property(nonatomic, readonly) NSString* value; @property(nonatomic, readonly) NSValue* visibleCharacterRange; @property(nonatomic, readonly) NSNumber* visited; @property(nonatomic, readonly) id window; @end #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_