Mouse improvements. Segment and snap the mouse move and scroll speed for easier match...
[enjoyable.git] / Categories / NSRunningApplication+NJPossibleNames.h
1 //
2 // NSRunningApplication+NJPossibleNames.h
3 // Enjoyable
4 //
5 // Created by Joe Wreschnig on 3/8/13.
6 //
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface NSRunningApplication (NJPossibleNames)
12
13 - (NSArray *)possibleMappingNames;
14 // Return a list of mapping names this application could match.
15
16 - (NSString *)bestMappingName;
17 // Return the best mapping name, taking into account ways in which
18 // application names are often broken.
19
20 @end