-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSSYNoVoiceOverControls.h
32 lines (25 loc) · 1.06 KB
/
SSYNoVoiceOverControls.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#import <Foundation/Foundation.h>
/*!
@brief Image view which will be skipped over by VoiceOver
@details Be careful that you *really* want the view to be skipped over by
VoiceOver, because its meaning is conveyed in a better, non-visual way,
elsewhere. Remember that not all VoiceOver users are completely blind.
*/
@interface SSYNoVoiceOverImageView : NSImageView {}
@end
/*!
@brief Button which will be skipped over by VoiceOver
@details Be careful that you *really* want the button to be skipped over by
VoiceOver, because its meaning is conveyed in a better, non-visual way,
elsewhere. Remember that not all VoiceOver users are completely blind.
*/
@interface SSYNoVoiceOverButton : NSButton {}
@end
/*!
@brief Text field which will be skipped over by VoiceOver
@details Be careful that you *really* want the field to be skipped over by
VoiceOver, because its meaning is conveyed in a better, non-visual way,
elsewhere. Remember that not all VoiceOver users are completely blind.
*/
@interface SSYNoVoiceOverTextField : NSTextField {}
@end