00001
00002
00003 #import <Cocoa/Cocoa.h>
00004
00019 @interface GDAccessibilityNotification : NSObject {
00020
00021 NSString * notification;
00022
00026 AXUIElementRef element;
00027
00031 NSDictionary * userInfo;
00032 }
00033
00037 @property (copy) NSString * notification;
00038
00042 @property (nonatomic,retain) NSDictionary * userInfo;
00043
00051 - (id) initWithElement:(AXUIElementRef) element forNotification:(NSString *) notification withUserInfo:(NSDictionary *) userInfo;
00052
00058 - (void) setElement:(AXUIElementRef) element;
00059
00063 - (AXUIElementRef) element;
00064
00070 - (void) setUserInfo:(NSDictionary *) userInfow;
00071
00075 - (NSDictionary *) userInfo;
00076
00077 @end