The GDAccessibilityNotification is the object passed to your selecter or notification handler from a GDAccessibilityObserver. More...
#import <GDAccessibilityNotification.h>
Public Member Functions | |
| (id) | - initWithElement:forNotification:withUserInfo: |
| Designated initializeer - inits with required parameters. | |
| (void) | - setElement: |
| Set the element that triggered the notification. | |
| (AXUIElementRef) | - element |
| Get the element. | |
| (void) | - setUserInfo: |
| Set the user info dictionary. | |
| (NSDictionary *) | - userInfo |
| Get the user info dict. | |
Protected Attributes | |
| AXUIElementRef | element |
| The AXUIElementRef that triggered the notification. | |
Properties | |
| NSString * | notification |
| The notification name that was triggered. | |
| NSDictionary * | userInfo |
| User info dictionary. | |
The GDAccessibilityNotification is the object passed to your selecter or notification handler from a GDAccessibilityObserver.
You shouldn't use this directly.
| - (id) initWithElement: | (AXUIElementRef) | element | ||
| forNotification: | (NSString *) | notification | ||
| withUserInfo: | (NSDictionary *) | userInfo | ||
Designated initializeer - inits with required parameters.
| element | An AXUIElementRef | |
| notification | The accessibility notification to subscribe to. | |
| userInfo | An optional user info dictionary that get's passed back to your handler. |
| - (void) setElement: | (AXUIElementRef) | element |
Set the element that triggered the notification.
| element | An AXUIElementRef |
| - (void) setUserInfo: | (NSDictionary *) | userInfow |
Set the user info dictionary.
| userInfow | The user info dictionary. |